Mitchymoo 0 Report post Posted January 25, 2017 Hi guys, Just wondering if anybody knows of a spammable wand macro. Since if you spam the wand "shoot" spell on your action bar it will turn the wand attack on and off repeatedly. I used to use this, " /script if not IsAutoRepeatAction(1) then CastSpellByName("Shoot") end " and it worked great, but now it's not working anymore. I don't know why, perhaps something to do with an update? For the record I have tried /cast !Shoot but it doesn't work in vanilla. Any help is appreciated. Thanks, Mitch 0 Share this post Link to post Share on other sites
Dyaxler 9 Report post Posted January 25, 2017 You'll need SuperMacro for this but here is mine - the 12 is the Hotkey assignment. Just change it to what ever key your macro is sitting in. -- Mashable Wand Cast /script UIErrorsFrame:Hide() /script if (UnitName('target')==nil) then TargetNearestEnemy() else if not IsAutoRepeatAction(12) then CastSpellByName("Shoot") end;end @Mitchymoo Did you move your macro to a key? That would have broken it. According to your macro you're using button #1. 0 Share this post Link to post Share on other sites
EffToyz 12 Report post Posted January 25, 2017 Also you can try notoggle from Shirsig, it turns off toggleable behavior of autoattacks. 0 Share this post Link to post Share on other sites
reflect 3 Report post Posted January 25, 2017 /run GGUseAction=GGUseAction or UseAction;UseAction=function(id,a,b)if not IsCurrentAction(id)and not IsAutoRepeatAction(id)then GGUseAction(id,a,b)end end /cast Shoot 0 Share this post Link to post Share on other sites