Jump to content
Mitchymoo

Spammable wand macro

Recommended Posts

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

Share this post


Link to post
Share on other sites

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.

Share this post


Link to post
Share on other sites
/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

 

Share this post


Link to post
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now

×