Bobgarff 0 Report post Posted May 22, 2017 Normally, my macros I use in wow work with this syntext /cast [mod:shift] ShiftSpell; [mod:ctrl] CtrlSpell; NoModSpell Which will normally allow me to cast different spells on the same button depending on what mod keys I'm pressing. I can't seem to get this to work for Elysium. I don't get any kind of feed back from the game (can't target that, i have no target, too far away ext) Any advice is appreciated. 0 Share this post Link to post Share on other sites
dms 0 Report post Posted May 22, 2017 Those commands dont work in wow 1.12, try supermacro or classicmacro addons to enable similar macros 0 Share this post Link to post Share on other sites
TheDruidCode 28 Report post Posted May 22, 2017 You can check this out. https://forum.nostalrius.org/viewtopic.php?f=63&t=30672 Vanilla macros can be a bit of pain in the behind. 0 Share this post Link to post Share on other sites
WobLight 5 Report post Posted May 25, 2017 /run if IsShiftKeyDown() then CastSpellByName("spell1") else if IsControlKeyDown() then CastSpellByName("spell2") else CastSpellByName("spell3") end 0 Share this post Link to post Share on other sites
gamer4eg 24 Report post Posted May 25, 2017 В 22.05.2017 в 03:07, Bobgarff сказал: Normally, my macros I use in wow work with this syntext /cast [mod:shift] ShiftSpell; [mod:ctrl] CtrlSpell; NoModSpell Which will normally allow me to cast different spells on the same button depending on what mod keys I'm pressing. I can't seem to get this to work for Elysium. I don't get any kind of feed back from the game (can't target that, i have no target, too far away ext) Any advice is appreciated. Use LazyScript addon for macros. The textbook is built into the addon. It allows you to make macros for any number of actions. For use lazyscropt profile use macro: /lazyscript profilename https://github.com/laytya/LazyScript 0 Share this post Link to post Share on other sites