What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Getmail method for Daily Labor stipend

deathisual

New Member
Joined
Jun 28, 2016
Messages
16
Reaction score
0
Hello im using Out's script for get mails,everything works fine except one thing.
it isn't taking any my daily labor pots.
I'm trying other codes but i think script cant open daily labor stipend mail so its not on the mail.getItems() list.
Any body can help me?
using System;
using System.Windows.Forms;
using System.Threading;
using System.Collections.Generic;
using ArcheBuddy.Bot.Classes;

namespace DefaultNamespace{
public class DefaultClass : Core
{
public void PluginRun()
{
RequestMailList();
foreach (var mail in getMails())
{
mail.OpenMail();
if (!mail.isSent)
{
mail.ReceiveGoldFromMail();
foreach (var item in mail.getItems())
mail.ReceiveItemFromMail(item);
mail.DeleteMail();
}
Thread.Sleep(1000);
}
}
}
}
 
Hi, try new function:
mail.ReceiveAllItemsAndGold()
i will add this after NA maintenanse with latest AB build
 
Hi, try new function:
mail.ReceiveAllItemsAndGold()
i will add this after NA maintenanse with latest AB build

Very much thanks Out, i tried and i sent a pm to you about my investigations:)
 
Last edited:
Back
Top