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.

How to create an Fight Class (developer only)

Featured Replies

I deleted all combat code. I have an empty working template now. However i encountered alrdy issues with stealth, seems some spells not working fine in vanilla or im doing it wrong

 

empty template.cs

8 minutes ago, nfx said:

I deleted all combat code. I have an empty working template now. However i encountered alrdy issues with stealth, seems some spells not working fine in vanilla or im doing it wrong

 

empty template.cs

I'm afraid you're probably doing it wrong, I suggest joining the discord if you haven't already. Find some of the examples in the downloads section like https://wrobot.eu/files/file/1080-mcro-vanilla-rogue/ ?

 

  • 9 months later...

make sure to check you're conditions. in making a fightclass, a friend of mine was having problems his and i had to edit it.

nternal void Rotation() // Rotation itself
    {
        while (_isLaunched)
        {
            try
            {
                if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !(Fight.InFight))
                {
                    BuffRotation(); // Out of Combat buffing
                }
                else
                    if (Fight.InFight && ObjectManager.Me.Target > 0)
                    {
                        CombatRotation(); //call of  Combatroutine
                    }
                
            }
            catch (Exception e)
            {
                Logging.WriteError("error" + e);
            }

            Thread.Sleep(10); // little sleep for 10ms
        }
        Logging.Write("STOPPED");
    }

 

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.