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

Cant get bot started

normallan

New Member
Joined
Dec 4, 2012
Messages
55
Reaction score
0
Just downloaded and got key for exilebuddy, when i start exilebuddy i get an error "IsInsideHook" and then when i hit start on it the program stops working and doesnt respond, i had used demonbuddy for a while on D3 so i'm not too noob at this, help please :)

heres what it says in logs

2014-01-28 03:12:18,895 [1] ERROR PerCachedValue`1 (null) - !IsInsideHook

PerCachedValue`1.get_Value
2014-01-28 03:12:18,904 [1] ERROR PerCachedValue`1 (null) - !IsInsideHook

and also

2014-01-28 02:42:41,058 [1] ERROR CharacterSettings (null) - Could not load character settings. Are you currently in game?

CharacterSettings.get_Instance
2014-01-28 02:43:03,049 [1] ERROR App (null) - Unhandled exception
System.NullReferenceException: Object reference not set to an instance of an object.
at (Object )
at Loki.Game.LokiPoe.ProcessHookManager.()
at BotGui.App.OnExit(ExitEventArgs e)
at System.Windows.Application.DoShutdown()
at System.Windows.Application.ShutdownImpl()
at System.Windows.Application.ShutdownCallback(Object arg)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)

App.Application_DispatcherUnhandledException
 
The error that matters there is:

Could not load character settings. Are you currently in game?

Do you have Path of Exile updated and are you logged into a character before launching the bot?

You have to be in game to click Start.
 
ok i got it to get into game, but he runs up to monsters in dock annd stands there doing nothing, im using marauder with 2h mace if that matters also, and is there certain skill gems that would mess with the bot?
 

Attachments

oh now i can even get it started again back to first problem

2014-01-28 15:30:40,468 [1] ERROR PerCachedValue`1 (null) - !IsInsideHook

PerCachedValue`1.get_Value
2014-01-28 15:30:40,475 [1] ERROR PerCachedValue`1 (null) - !IsInsideHook

PerCachedValue`1.get_Value
2014-01-28 15:30:40,481 [1] ERROR PerCachedValue`1 (null) - !IsInsideHook

PerCachedValue`1.get_Value
2014-01-28 15:30:40,486 [1] ERROR PerCachedValue`1 (null) - !IsInsideHook

PerCachedValue`1.get_Value
2014-01-28 15:30:40,558 [1] ERROR PerCachedValue`1 (null) - !IsInsideHook

PerCachedValue`1.get_Value
2014-01-28 15:30:40,559 [1] ERROR PerCachedValue`1 (null) - !IsInsideHook
 
Those aren't errors causing the problem, just debugging info for us.

Your log says you are using the following skills:
? Registered Glacial Hammer
? Registered Leap Slam
? Registered Ground Slam

However, the default Exile CR has specific conditions for using these skills:

Register("Ground Slam", ret => NumberOfMobsNear(BestTarget, 20, 1));
Register("Glacial Hammer", ret => NumberOfMobsNear(BestTarget, 12, 2));
Register("Leap Slam", ret => BestTarget.Distance > 20 || NumberOfMobsNear(BestTarget, 10, 2));

When none of those conditions are met, it simply uses Default Attack or does nothing if no Default Attack is on your skill bar.

To fix this, simply change those lines to the following:

Register("Ground Slam");
Register("Glacial Hammer");
Register("Leap Slam");

Now, the bot should use those skills without doing any requirements checking. You'll have to change the requirements again if you want to use one skill under one scenario and another in a different one.
 
ok i changed those lines for attacks, but i cannot get the bot started at all now, it either crashes the exile buddy program when i hit start, or gives me "isInsideHook" errors and a list of other errors?, im running windows 7, and i have now tried the release version of exilebuddy and the beta now after realizing the beta supports newest update of POE, am i missing something i have to do?
 
ok i changed those lines for attacks, but i cannot get the bot started at all now, it either crashes the exile buddy program when i hit start, or gives me "isInsideHook" errors and a list of other errors?, im running windows 7, and i have now tried the release version of exilebuddy and the beta now after realizing the beta supports newest update of POE, am i missing something i have to do?

Please delete all your logs from the folder, start it again, and attach both error logs in their entirety after it messes up.
 
Back
Top