WoW:API SendAddonMessage: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 16: Line 16:
: The message will be unaffected by inebriation.
: The message will be unaffected by inebriation.
: (From 'Slouken', Blizzard poster)
: (From 'Slouken', Blizzard poster)
: The prefix cannot include a tab character ("\t") as it's used as a delimiter between the prefix and the text when the message is sent from the client.  When the message is recieved by other clients, it's broken back in to two peices in the client and the sent to lua.  Using a tab character in the text may be acceptable, but is unadvised.
: The actual function name may end up being SendAddOnMessage() to be consistent with existing function names.


----
----


{{Stub/API}}
{{Stub/API}}

Revision as of 15:54, 13 July 2006

Sends a message to hidden AddOn channels. (new with patch 1.12)

SendAddonMessage("prefix", "text", "PARTY|RAID|GUILD")

Example
SendAddonMessage("CTRA", "User Data: XYZ", "RAID");

Notes
Fires the Event CHAT_MSG_ADDON
The combined length of message plus prefix can be at most 254 characters.
The message will be unaffected by inebriation.
(From 'Slouken', Blizzard poster)
The prefix cannot include a tab character ("\t") as it's used as a delimiter between the prefix and the text when the message is sent from the client. When the message is recieved by other clients, it's broken back in to two peices in the client and the sent to lua. Using a tab character in the text may be acceptable, but is unadvised.
The actual function name may end up being SendAddOnMessage() to be consistent with existing function names.