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

faster reaction time

golgota

New Member
Joined
May 4, 2016
Messages
18
Reaction score
2
is there a way to make the bot to react as fast as the quest bot , i mean in town id/sell and stash
 

yes but i dont get where i write :
Loki.Bot.Coroutines.ReactionMinSleepDelay = your minimum value;
Loki.Bot.Coroutines.ReactionMaxSleepDelay = your maximum value;

i found the line :Log.DebugFormat("[OldRoutine] Start"); but what "Add this below below the line found in 2:" means?
i tried this:

Log.DebugFormat("[OldRoutine] Start");

Loki.Bot.Logic.Bots.OldGrindBot.Coroutines.MinSleepDelay = 200;
Loki.Bot.Logic.Bots.OldGrindBot.Coroutines.MaxSleepDelay = 300;

but dont work ,
 
You are confusing 2 different guides. This code is BAD, and will not work!
Code:
[COLOR="#FF0000"]Loki.Bot.Logic.Bots.OldGrindBot.Coroutines.MinSlee pDelay = 200;
Loki.Bot.Logic.Bots.OldGrindBot.Coroutines.MaxSlee pDelay = 300;[/COLOR]

It should look like this:

Code:
[COLOR="#00FF00"]Loki.Bot.Coroutines.ReactionMinSleepDelay  = 200;
Loki.Bot.Coroutines.ReactionMaxSleepDelay  = 300;[/COLOR]

393785375b41463da9f40804f146e8d8.png
 
Last edited:
Back
Top