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

UberBot plugins not loading

baddasz

Member
Joined
Mar 18, 2013
Messages
32
Reaction score
0
So I have installed UberBot ( here is the link to the exact page i am getting the.zip file from https://www.thebuddyforum.com/demon...y-profiles/179300-uber-bot-organs-farmer.html) and after following the instruction and Severall re-installs of both HB and UberBot the plugin will not load or be recognized ( clarification there is no option to enable the plugin once you start the bot) after several days of trying to figure this out i could really use some help.

Here is what happens when i try to run the bot without the plugin

Game joined, Resetting profile caches.
Loaded profile UberBot - Get Machines
[QuestTools][TownRunTag] TrinityTownRun, freeBagSlots=10 minDurabilityPercent=90
[Trinity] Starting up Generic Cache Manage thread
[Trinity] Starting up Generic Blacklist Manager thread
[QuestTools][<TownRun>d__3] Skipping TownRun
[QuestTools][<GetItemFromStashRoutine>d__16] Already have 5 items in our backpack (GameBalanceId=0 ActorSNO=366946 GreaterRiftKey=False)
[QuestTools][<GetItemFromStashRoutine>d__16] Already have 5 items in our backpack (GameBalanceId=0 ActorSNO=366947 GreaterRiftKey=False)
[QuestTools][<GetItemFromStashRoutine>d__16] Already have 5 items in our backpack (GameBalanceId=0 ActorSNO=366948 GreaterRiftKey=False)
[QuestTools][<GetItemFromStashRoutine>d__16] Already have 5 items in our backpack (GameBalanceId=0 ActorSNO=366949 GreaterRiftKey=False)
Loaded profile UberBot - Loader
[QuestTools][TownRunTag] TrinityTownRun, freeBagSlots=10 minDurabilityPercent=90
[QuestTools][<TownRun>d__3] Skipping TownRun
Profile completed
Number of games completed: 1

[QuestTools][<TownRun>d__3] Skipping TownRun
[QuestTools][<TownRun>d__3] Skipping TownRun
[QuestTools][<TownRun>d__3] Skipping TownRun
[QuestTools][<TownRun>d__3] Skipping TownRun
[QuestTools][<TownRun>d__3] Skipping TownRun
[QuestTools][<TownRun>d__3] Skipping TownRun
[QuestTools][<TownRun>d__3] Skipping TownRun
[QuestTools][<TownRun>d__3] Skipping TownRun
[QuestTools][<TownRun>d__3] Skipping TownRun
[QuestTools][<TownRun>d__3] Skipping TownRun
[QuestTools][<TownRun>d__3] Skipping TownRun
[QuestTools][<TownRun>d__3] Skipping TownRun
[QuestTools][<TownRun>d__3] Skipping TownRun
 

The plugin has not been updated in a while. Buddyme may update but when the next patch comes out as to keys are no longer needed to make machines The machine just has a% to drop The plugin Adventerer when released * soon
Will fix your problem.

UUn till then on page 12 of your plugin some one posted

I managed to fix the current version in latest DemonBuddy beta version. I'd recommend waiting for BuddyMe to update the Plugin himself, but if you're as impatient as I am, the fix is to simply typecast the 'ItemStackQuantity'. The following will fix the Plugin:

Plugins/UberBot/Classes/InfernalMachines.cs
Edit Line :73 from:
Code:
.ForEach(i => AddToInfernalMachinesCount(i.ActorSNO, i.ItemStackQuantity));
To
Code:
.ForEach(i => AddToInfernalMachinesCount(i.ActorSNO, (int)i.ItemStackQuantity));
Plugins/UberBot/Classes/UberOrgans.cs
Edit Line :184 and :188 from:
Code:
.ForEach(i => AddToOrgansCount(i.ActorSNO, i.ItemStackQuantity));
To
Code:
.ForEach(i => AddToOrgansCount(i.ActorSNO, (int)i.ItemStackQuan

Did you try that. Other then this suggestion. Tony will take it from here.
 
I have not as i am still learning basic code ( and recently enrolled in Game 101 at my uni, a class to learn how to do this stuff, but my attempts to self teach have failed miserably so i will try your solution will +1 if it works =) i will also reply saying it worked so tony knows.

Will be back soon
 
Last edited:
Back
Top