#showtooltip
/cast [nomod] Battle Shout(Rank 6); [mod:shift] Demoralizing Shout(Rank 5); [mod:ctrl] Intimidating Shout; [mod:alt] Major Healing Potion
^^^ That’s what I have going on I want it to do this
#showtooltip
/cast [nomod] Battle Shout(Rank 6); [mod:shift] Demoralizing Shout(Rank 5); [mod:ctrl] Intimidating Shout, Stop Attack; [mod:alt] Major Healing Potion
But it fails to recognize the Intimidating Shout and then fails to do Stop attack. suggestions?
You want it to stop attacking when you press Intimidating Shout, correct? Add a conditional /stopattack line at the end of the macro, separate from your /cast line.
Also, take out the rank information from Battle/Demo Shout.
#showtooltip
/cast [nomod] Battle Shout; [mod:shift] Demoralizing Shout; [mod:ctrl] Intimidating Shout; [mod:alt] Major Healing Potion
/stopattack [mod:ctrl]
1 Like
Stop attack isn’t a spell and you’re treating it as such.
Try a new line for /cast [mod:ctrl] Intimidating Shout
/stopattack [mod:ctrl]
Also you can remove the rank text if you want just to use max rank. Also no need for [nomod].
Lol I didn’t read the guy above answer you perfectly!