RAGE.Chat.Output: Difference between revisions
No edit summary |
No edit summary |
||
| Line 20: | Line 20: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
}} | }} | ||
==See also== | ==See also== | ||
{{Gui_definition_c}} | {{Gui_definition_c}} | ||
[[Category:Clientside API]] | [[Category:Clientside API]] | ||
Latest revision as of 12:34, 16 January 2019
Sends a chat message to the player.
Syntax
RAGE.Chat.Output(string text);
Required Arguments
- text: String text
Example
C# Syntax
Parameters
- text:: String text
Example
public void sendChatMessageToPlayer(string message)
{
RAGE.Chat.Output(message);
}