Hello, I’m trying to make a macro in Classic that handles my Shield Wall/Recklessness/Retaliation in one button. I can get it to cast based on my current stance, but I also want to send the raid a message based on which spell got cast and I haven’t been able to get those to work.
I’ve tried the following (using the say channel for testing):
/s [form:1] “Test form1”
/script SendChatMessage([form:1]"** RETALIATION**";[form:2]"—SHEILD WALL—";[form:3]"##RECKLESSNES##",“SAY”)
/script [form:1] SendChatMessage("** RETALIATION**",“SAY”);[form:2] SendChatMessage("–SHIELD WALL–",“SAY”);[form:3] SendChatMessage("##RECKLESSNES##",“SAY”)
Am I missing an easy solution here?