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.

Multiple rotation? (Loop/burst/Defensive)

Featured Replies

Hello guys!Just asking if its possible to create a multiple rotation,like 3 files,or one,with hotkeys into-game like this:

Rotation in loop: Normal attacks,normal rotation without burst spells.

Burst rotation: When we want,use hotkey to activate burst rotation file.

Defensive: When we want,use that to trinkets,dispels,movility,etc...

Thanks in advance for your attention.

14 minutes ago, Lemke said:

Hello guys!Just asking if its possible to create a multiple rotation,like 3 files,or one,with hotkeys into-game like this:

Rotation in loop: Normal attacks,normal rotation without burst spells.

Burst rotation: When we want,use hotkey to activate burst rotation file.

Defensive: When we want,use that to trinkets,dispels,movility,etc...

Thanks in advance for your attention.

Yes it is.

  • Author
On 29/11/2017 at 7:55 PM, iMod said:

Yes it is.

Thank you,

Any link or tutorial to do that?Just trying to do some rotations a bit more complete.

14 hours ago, Lemke said:

Thank you,

Any link or tutorial to do that?Just trying to do some rotations a bit more complete.

Personaly i'm using
BurstMode = strg
AoeMode = alt

Subscribe to event (needs to be in the constructor or initialize method NOT in the loop):

#region Events

bool burstMode = false;
bool aoeMode = false;

// Listen to events
EventsLuaWithArgs.OnEventsLuaWithArgs += delegate (LuaEventsId id, List<string> args)
{
    #region MODIFIER_STATE_CHANGED

    if (id == LuaEventsId.MODIFIER_STATE_CHANGED && args.Count == 2)
    {
        //  Possible values are LSHIFT, RSHIFT, LCTRL, RCTRL, LALT, and RALT
        string key = args[0];

        // 1 means that the the key has been pressed. 0 means that the key has been released
        int state = int.Parse(args[1]);

        // AOE mode
        if (key == "LALT" && state == 0)
        {
            // Set status
            aoeMode = !aoeMode;
        }

        // Burst mode
        if (key == "LCTRL" && state == 0)
        {
            // Set status
            burstMode = !burstMode;
        }
    }

    #endregion
};

Use (in the loop):

// Burst?
if (burstMode && ObjectManager.Me.InCombat)
{
  // Do your burst stuff 
}

// AOE?
if (aoeMode && ObjectManager.Me.InCombat)
{
  // Do your AOE stuff 
}

Hope that helps.

Edited by iMod

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.