Page 1 of 1

Macro help

PostPosted: Mon Mar 23, 2015 2:46 am
by Seconds
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.

Re: Macro help

PostPosted: Mon Mar 23, 2015 4:03 am
by huggarn
You need SuperMacro though rest is here

Re: Macro help

PostPosted: Mon Mar 23, 2015 10:48 am
by whissper
Code: Select all
/script local a=GetShapeshiftForm();if a==1 then CastSpellByName('Thunder Clap');elseif a==3 then CastSpellByName('Whirlwind');end

Re: Macro help

PostPosted: Mon Mar 23, 2015 1:51 pm
by Seconds
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 =(

Re: Macro help

PostPosted: Mon Mar 23, 2015 2:49 pm
by whissper
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...

Re: Macro help

PostPosted: Mon Mar 23, 2015 5:04 pm
by Krissam
/cast Thunder Clap
/cast Whirlwind

Should work.

Re: Macro help

PostPosted: Tue Mar 24, 2015 2:41 am
by Seconds
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!