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

Calling 'Empty Bags' method

arczi19

New Member
Joined
Mar 2, 2010
Messages
156
Reaction score
5
Hello
I've been trying to make a plugin that would work the same way as pressing the 'Empty Bags' button in Gatherbuddy2 settings, however, I seem to be stuck :<

How do I do it to make it work? Essentially what I need is a method that will tell my bot to go and send mails to an alt if something happens.


I've looked through all Gatherbuddy2 classes and all I could find was only a MailToAlt bool settings, but that's not a invokable method :(
 
Last edited:
how about using ProfessionBuddy for this?

Code:
while (true)[INDENT] if (Me.FreeNormalBagSlots <= 1 )
[/INDENT][INDENT][INDENT] Fly to: location x y z
[/INDENT][/INDENT][INDENT][INDENT] interact with mailbox
[/INDENT][INDENT] mail whites
[/INDENT][INDENT] mail greens
[/INDENT][INDENT] fly to: location x y z 
[/INDENT][INDENT] interact with vendor
[/INDENT][INDENT] sell greys
[/INDENT][INDENT] fly to location x y z
[/INDENT][INDENT] continue farming ?[/INDENT][/INDENT]
 
Last edited:
Thing is I'm making a separate plugin and I need that specific method to be called :(
 
In the case where ProfessionBuddy allows you to do that, you can analyse how ProfessionBuddy works to see which functions you need to use. :)
 
Back
Top