Good morning,
I’ve been trying to make an all-in-one macro, to ease the strain on my old fingers. The macro consists of using just one key for several spells, depending on my current druid form.
#showtooltip
/cast [stance:0/4/5] Wrath; [stance:2] Shred; [stance:1] Mangle
So far so good. So I’ve tried incorporating a macro that targets my target’s target, namely:
#showtooltip
/cast [harm] [@targettarget,harm,nodead] [] Wrath
I arrived at the following result:
#showtooltip
/cast [harm][stance:0/4/5,@targettarget,harm,nodead] Wrath
/cast [harm][stance:2,@targettarget,harm,nodead] Shred
/cast [harm][stance:1,@targettarget,harm,nodead] Mangle
The problem is that the macro now only casts the Wrath spell, and demorphs me to cast Wrath if I’m in feline form, for example.
If I only use the first line, the macro works fine, but as soon as I add the other lines, nothing works.
I can’t work out what the problem is, so if anyone could help me out, that would be great! I apologise for any mistakes, as I’m not an English speaker.
PS: The simplified version of the previous macro works correctly:
#showtooltip
/cast [stance:0/4/5] Wrath
/cast [stance:2] Shred
/cast [stance:1] Mangle