Macro help

Macro help

by Seconds » Mon Mar 23, 2015 2:46 am

Hello,

I'm trying to bind WW and TC to the same button, so that when I'm in Battle Stance it casts TS or WW if I'm in Zerker.

/cast [stance:1] Thunder Clap
/cast [stance:3] Whirlwind

This is what I've tried and it don't seem to work.

And yes, I could just put them on stance bar, but I'm used to having TC on my F key and would like to keep it that way if possible.
Seconds
Tester
 

Re: Macro help

by huggarn » Mon Mar 23, 2015 4:03 am

You need SuperMacro though rest is here
huggarn
Tester
 

Re: Macro help

by whissper » Mon Mar 23, 2015 10:48 am

Code: Select all
/script local a=GetShapeshiftForm();if a==1 then CastSpellByName('Thunder Clap');elseif a==3 then CastSpellByName('Whirlwind');end
whissper
Grunt
Grunt
 

Re: Macro help

by Seconds » Mon Mar 23, 2015 1:51 pm

whissper wrote:
Code: Select all
/script local a=GetShapeshiftForm();if a==1 then CastSpellByName('Thunder Clap');elseif a==3 then CastSpellByName('Whirlwind');end


Doesn't work for me, even with SuperMacro =(
Seconds
Tester
 

Re: Macro help

by whissper » Mon Mar 23, 2015 2:49 pm

Code: Select all
/script local a=GetShapeshiftForm(true);if a==1 then CastSpellByName('Thunder Clap');elseif a==3 then CastSpellByName('Whirlwind');end


try this one...
whissper
Grunt
Grunt
 

Re: Macro help

by Krissam » Mon Mar 23, 2015 5:04 pm

/cast Thunder Clap
/cast Whirlwind

Should work.
Krissam
Tester
 

Re: Macro help

by Seconds » Tue Mar 24, 2015 2:41 am

whissper wrote:
Code: Select all
/script local a=GetShapeshiftForm(true);if a==1 then CastSpellByName('Thunder Clap');elseif a==3 then CastSpellByName('Whirlwind');end


try this one...


That works! Thank You!
Seconds
Tester
 


Return to Warrior