I would like a macro to auto cast both spells (off the GCD) and only cast Penance if I don’t have shift selected, but it seems to do all 3? What am I doing wrong here?
#showtooltip
/cast [mod:shift] Healthstone;
/cast [mod:shift] Desperate Prayer;
/cast Penance
Since there’s no condition on the Penance cast, it will always do that every time the macro runs. If you want Penance to be cast only when the shift key is not pressed, you need to add [nomod:shift] to that line.
That did the trick! Thanks!
#showtooltip
/cast [mod:shift] Healthstone; Penance
/cast [mod:shift] Desperate Prayer