Source: Bogota
I need help with this macro. I'm trying to write a macro where when i click I charge and when I "alt" click I charge then taunt. But the taunt part doesn't seem to work. Code: #show Charge
/cast Charge
/cast [modifier:alt] Charge, Taunt |
The reason this doesn't work is that, even when holding down alt, the first /cast is performed, triggering the global cooldown. When the second line is run, you try to charge again, and because you can't, execution stops and doesn't get to the Taunt.
As mandible posted:
Code:
#show Charge
/cast Charge
/cast [modifier:alt] Taunt
This will work. Charge is always performed, and if alt is pressed, so is taunt as it's not affected by GCD.