WoW:API SendSystemMessage: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Created page with "{{wowapi}}__NOTOC__ Sends a system message to the system message box (mostly written in yellow color) /script SendChatMessage("msg" ,"chatType" ,"language" ,"channel"); == Par...")
 
(remove unnecessary sig; good job otherwise)
Line 19: Line 19:


The WOW-Client uses SendSystemMessage to inform you, for example, that someome bought something from you in the auction house.
The WOW-Client uses SendSystemMessage to inform you, for example, that someome bought something from you in the auction house.
--[[User:SkyTiger2012|SkyTiger2012]] ([[User talk:SkyTiger2012|talk]]) 16:52, January 19, 2012 (UTC)

Revision as of 01:42, 20 January 2012

WoW API < SendSystemMessage

Sends a system message to the system message box (mostly written in yellow color)

/script SendChatMessage("msg" ,"chatType" ,"language" ,"channel");

Parameters

Arguments

(msg)
msg
String, The message to be sent


Example

/script SendSystemMessage("MyAddOn just loaded");


Just like print it will only be seen from the current user.

The WOW-Client uses SendSystemMessage to inform you, for example, that someome bought something from you in the auction house.