anyone else having a problem with the uberbot plugin not showing up under the plugin tab?
I did before and redid it again and that solved it. Weird but thanks..Make sure after downloading you are putting the folders in the appropriate directories (the file inside Profiles to your profiles, and the file inside Plugins to your DB plugins folder).
same here. that last update...something wrong with the plugin? newest db beta, newest trinity 2.9.1 and quest tool, the uber plugin doesnt load up, or is it just me?
i am also getting the same thing, i cant find a uber farm profile anywhere"Skipping Townrun" spam - ugh
Plugins/UberBot/Classes/InfernalMachines.cs
Edit Line :73 from:
ToCode:.ForEach(i => AddToInfernalMachinesCount(i.ActorSNO, i.ItemStackQuantity));
Code:.ForEach(i => AddToInfernalMachinesCount(i.ActorSNO, (int)i.ItemStackQuantity));
Plugins/UberBot/Classes/UberOrgans.cs
Edit Line :184 and :188 from:
ToCode:.ForEach(i => AddToOrgansCount(i.ActorSNO, i.ItemStackQuantity));
Code:.ForEach(i => AddToOrgansCount(i.ActorSNO, (int)i.ItemStackQuantity));
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:
Hello and thanks for your work. I have this issue and dont know, why.
Compiler Error: e:\_barb\Plugins\UberBot\Classes\InfernalMachines.cs(73,20) : error CS1502: The best overloaded method match for 'UberBot.Classes.InfernalMachines.AddToInfernalMachinesCount(int, int)' has some invalid arguments
Compiler Error: e:\_barb\Plugins\UberBot\Classes\InfernalMachines.cs(73,59) : error CS1503: Argument 2: cannot convert from 'long' to 'int'
Compiler Error: e:\_barb\Plugins\UberBot\Classes\UberOrgans.cs(184,20) : error CS1502: The best overloaded method match for 'UberBot.Classes.UberOrgans.AddToOrgansCount(int, int)' has some invalid arguments
Compiler Error: e:\_barb\Plugins\UberBot\Classes\UberOrgans.cs(184,49) : error CS1503: Argument 2: cannot convert from 'long' to 'int'
Compiler Error: e:\_barb\Plugins\UberBot\Classes\UberOrgans.cs(188,20) : error CS1502: The best overloaded method match for 'UberBot.Classes.UberOrgans.AddToOrgansCount(int, int)' has some invalid arguments
Compiler Error: e:\_barb\Plugins\UberBot\Classes\UberOrgans.cs(188,49) : error CS1503: Argument 2: cannot convert from 'long' to 'int'
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.ItemStackQuantity));