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?
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);
}
}
}
}