I want a macro that will summon the character that writes an specific phrase, be it on whisper, raid or party. So for example, target says "summon", my character responds with summoning + announcement. The part of the announcement is this:
- Code: Select all
/script local C; if(GetNumRaidMembers()==0) then C = "PARTY" else C = "RAID" end SendChatMessage("Summoning %t to << "..GetMinimapZoneText().." >>. Please assist.", C)
/cast Ritual of Summoning
But I need the part before that. Any ideas?