gotmilk0112 10 Report post Posted January 3, 2017 For some reason, startattack macros are bugging out on my Shaman, in that I often have to hit the macro 3 or even 4 times to get my character to start attacking. I've tried: /script if not IsCurrentAction(24) then UseAction(24) end; /cast !Attack (yes, I have CastModifier installed) What's going on? This doesn't happen at all on my Warrior, it ONLY happens on my Shaman. 0 Share this post Link to post Share on other sites
eukal 1 Report post Posted January 3, 2017 Try this one. /cast YOURSPELL /run if not AtkSpell then for AtkSlot = 1,72 do if IsAttackAction(AtkSlot) then AtkSpell =AtkSlot;end;end;end; if not IsCurrentAction(AtkSpell) then UseAction(AtkSpell);end; 0 Share this post Link to post Share on other sites
gotmilk0112 10 Report post Posted January 3, 2017 Yeah, that's the one I previously used, before finding the simplified versions. I'll try using it again. 0 Share this post Link to post Share on other sites