If someone has developped a mailbox plugin (which able to send things to another character when bags are full)
Can he post his code here ? i would like to analyze it![]()
If someone has developped a mailbox plugin (which able to send things to another character when bags are full)
Can he post his code here ? i would like to analyze it![]()
already in wowrobot. but only with item quality option
There is some ability to send mail from the bot, but if you have the interest to do it better yourself, here is how you interact with a mailbox via a plugin...
ulong GuidMailBox = API.WowObject.GetNodeByName("Mailbox");
API.ControlPlayer.InteractByGUID(GuidMailBox);
API.Other.Wait(1000);
API.ControlPlayer.SendToChat("/click PostalOpenAllButton");
If you are close enough to a mailbox, and have the Postal addon installed, this code will click the "Open All" button.
Use a different addon like Bulkmail where you set up what and who you want to send to, modify the last line and you can quite easily automate sending mail.
tG