View Single Post
09-25-09, 05:16 PM   #3
ravagernl
Proceritate Corporis
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 1,176
Originally Posted by ironfang View Post
#showtooltip
/cast [mod:shift, stance:1] Rend; Thunder Clap
/cast [mod:shift, stance:2] Piercing Howl; Thunder Clap
/cast [mod:shift, stance:3] Piercing Howl; Pummel

Only recognizes Stance 1 (The top line) .... What am I doing wrong ?

Also is there a mod I can use to increase the amount of macro's I can make because the default Macro Ui seems rather limited for space.
This would be because on the first line you have Rend, wich requires shift and battle stance as condition, however Thunder clap doesn't. I think you just want castsequence?
Code:
#showtooltip
/castsequence reset=target [mod:shift, stance:1] Rend, Thunder Clap; [mod:shift, stance:2] Piercing Howl, Thunder Clap; [mod:shift, stance:3] Piercing Howl, Pummel
if not:
Code:
#showtooltip
/cast [mod:shift, stance:1]Rend;[stance:1]Thunder Clap;[mod:shift, stance:2]Piercing Howl;[stance:2]Thunder Clap;[mod:shift, stance:3] Piercing Howl; [stance:3]Pummel

Last edited by ravagernl : 09-25-09 at 05:19 PM.
  Reply With Quote