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

Faster Id and selling

botelho

Member
Joined
Nov 13, 2013
Messages
279
Reaction score
12
In the old bot we had
Code:
Loki.Bot.Logic.Bots.OldGrindBot.Coroutines.MinSleepDelay = 100;
Loki.Bot.Logic.Bots.OldGrindBot.Coroutines.MaxSleepDelay = 100;
to increase the selling speed, I would like to know if we have a similar setting for the new one. Thanks.
 
Things are significantly faster than before so that specific aspect of v3 was removed.

What is in place now is the concept of "Reaction" waits, which is also configurable.

Loki.Bot.Coroutines.ReactionMinSleepDelay
Loki.Bot.Coroutines.ReactionMaxSleepDelay

now replace those two things.

New logic is also based around latency to avoid issues that can happen in the game, but you can now see all the current code for OldGrindBot inside the 3rdParty\OldGrindBot folder.
 
Back
Top