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!

[Plugin] Mr.GearBuyer

Love the plugin so far, any plans for Dungeonbuddy incorporation or compatibility with some other type of dungeon spam bot? I really can't be bothered to farm JP and the new Honor - JP conversion rates make spamming BG's for JP pretty inefficient.
 
This is a pvp plugin..

I realize this is in the pvp plugin section, but the initial post seemed to indicate it would also buy Heirlooms for JP from the appropriately marked vendor. I've been looking over previous posts, and I'm just curious if this plugin has that intent or might have it in the future. I haven't had any issues grinding JP, and the log out functionality works, but doesn't seem to desire purchasing Justice Heirlooms. I watched it walk up to the vendor, open the vendors menu, and then just sit there. I did manage to get it to purchase one item when farming honor, maybe I just need to let it run longer. Good work on the plugin. Cheers!
 
Just updated to Honorbuddy v2.5.9652.723 and Getting the following errors while trying to load the plugin.

Compiler Error: c:\Users\Stuart\Documents\Honorbuddy\Plugins\MrGearBuyer\MrGearBuyer.cs(146,36) : error CS0117: 'Styx.CommonBot.InactivityDetector' does not contain a definition for 'ForceLogout'
Compiler Error: c:\Users\Stuart\Documents\Honorbuddy\Plugins\MrGearBuyer\MrGearBuyer.cs(152,36) : error CS0117: 'Styx.CommonBot.InactivityDetector' does not contain a definition for 'ForceLogout'
Compiler Error: c:\Users\Stuart\Documents\Honorbuddy\Plugins\MrGearBuyer\MrGearBuyer.cs(158,36) : error CS0117: 'Styx.CommonBot.InactivityDetector' does not contain a definition for 'ForceLogout'
 
Ya go into the MrGearBuyer.cs and put a // before the 3 lines that are " InactivityDetector.ForceLogout(true);"
 
Keep in mind that commenting that out will disable all automatic logging out.

If you want to keep the logout functionality, try the following quick fix:
Open up 'MrGearBuyer.cs' in any text editor(notepad will do fine), replace ALL occurrences of
Code:
InactivityDetector.ForceLogout(true);
With the following:
Code:
Lua.DoString("ForceQuit()");
Remember to check in for official updates from the OP regularly, and update to an official release when its avaliable :)
 
my problem:

Compiler Error: c:\Users\tonyc_000\Documents\Honorbuddy 2.5.9468.722\Plugins\MrGearBuyer\MrGearBuyer.cs(146,36) : error CS0117: 'Styx.CommonBot.InactivityDetector' non contiene una definizione per 'ForceLogout'.
Compiler Error: c:\Users\tonyc_000\Documents\Honorbuddy 2.5.9468.722\Plugins\MrGearBuyer\MrGearBuyer.cs(152,36) : error CS0117: 'Styx.CommonBot.InactivityDetector' non contiene una definizione per 'ForceLogout'.
Compiler Error: c:\Users\tonyc_000\Documents\Honorbuddy 2.5.9468.722\Plugins\MrGearBuyer\MrGearBuyer.cs(158,36) : error CS0117: 'Styx.CommonBot.InactivityDetector' non contiene una definizione per 'ForceLogout'.
 
Go into the MrGearBuyer.cs and put a // before the 3 lines that are " InactivityDetector.ForceLogout(true);" see a couple posts back from your question.

Adding the // will get rid of the errors. But even better, is to replace the

Code:
InactivityDetector.ForceLogout(true);

with

Code:
Lua.DoString("ForceQuit()");
 
Back
Top