Hey,
can't find a solution for this: I want my fightclass to stop doing anything/waiting actively if Vanish and Preparation are both on cooldown.
So far I tried this as C# function with both condtions, out of combat and highest priority:
Fight.StopFight();
MovementManager.StopMove();
Thread.Sleep(5000);
My idea was that the bot will wait 5s over and over again until the conditions are no longer met, but he still continues moving after this even though the log says he is perfoming "Thread.Sleep(5000)"
Suggestions or other solutions for this?