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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Mail Anywhere?

imapedarsag

New Member
Joined
Mar 27, 2015
Messages
19
Is such a program possible where you access the character's mail without an owl ie anywhere?
 
yes, its possible. I've got one that someone gave me the dll to (named MailPro). I don't have the actual code, and its not usually a good idea to just run dll files. Maybe someone else can figure it out.
 
here my friend
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);
}
}
}
}
 
How about a code to send mail

Could someone share such code with us ?
Something basic that you need to edit and compile to change receiver and items would be fine

ty
 
Back
Top