Lemke 2 Posted November 29, 2017 Share Posted November 29, 2017 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. Link to comment Share on other sites More sharing options...
iMod 99 Posted November 29, 2017 Share Posted November 29, 2017 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. Link to comment Share on other sites More sharing options...
Lemke 2 Posted December 5, 2017 Author Share Posted December 5, 2017 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. Link to comment Share on other sites More sharing options...
Zan 99 Posted December 5, 2017 Share Posted December 5, 2017 My first stab at doing that was in one of my FCs. Look it up and it'll give you an idea. They were basic back then fyi Lemke 1 Link to comment Share on other sites More sharing options...
iMod 99 Posted December 6, 2017 Share Posted December 6, 2017 (edited) 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 December 6, 2017 by iMod Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now