Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Wait actively or stop moving

Featured Replies

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?

you can put the bot in pause and loop until vanish and preparation will be up, then unpause the bot

 

robotManager.Products.Products.InPause = true;

Edited by micam

  • Author
3 hours ago, micam said:

you can put the bot in pause and loop until vanish and preparation will be up, then unpause the bot

 


robotManager.Products.Products.InPause = true;

Thanks, will try!

Edit: Working perfectly now, thanks! Used this snippet:

 

Fight.StopFight();
MovementManager.StopMove();
Products.InPause = true;
while((!SpellManager.SpellUsableLUA("Vanish")) && (!SpellManager.SpellUsableLUA("Preparation")))
{
	Thread.Sleep(3000);
}
Products.InPause = false;

 

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.