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.

Simple Hearthstone

Featured Replies

How do I RunCode without having to add Wait in editor?

ItemsManager.UseItem("Hearthstone");
// some code here like Wait in quest order editor

Thanks.

Hello you can use this code in quest order editor at runcode:

ItemsManager.UseItem("Hearthstone");
                    var t = System.Threading.Tasks.Task.Run(async delegate
                    {
                        await System.Threading.Tasks.Task.Delay(10000);
                        //execute this block after 10000ms even after dispose
                        robotManager.Helpful.Logging.Write("execution2");

                    });
//this will be executed immediately
robotManager.Helpful.Logging.Write("execution1");

but i guess you just need a simple sleep so it would be:

ItemsManager.UseItem("Hearthstone");
System.Threading.Thread.Sleep(10000);
robotManager.Helpful.Logging.Write("execution1");

 

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.