View Single Post
12-08-12, 09:57 PM   #4
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Also, this:

Code:
SendChatMessage("in the raid", "SAY")
will send your message to all players near you, so they can see it. You probably just want to only see the message for yourself, so you should change that to:

Code:
print("in the raid")
which will show the message only to you.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote