RAGE.Chat.Output: Difference between revisions
(Created page with "Sends a chat message to the player. ==Syntax== <pre>RAGE.Chat.Output(string text);</pre> === Required Arguments === *'''text:''' String text ===Return value=== Unknown ==E...") |
No edit summary |
||
| Line 7: | Line 7: | ||
*'''text:''' String text | *'''text:''' String text | ||
== | ==Example== | ||
{{CSharpContainer| | |||
{{Parameters}} | |||
*'''text:''': String text | |||
{{Example}} | |||
<syntaxhighlight lang="C#"> | <syntaxhighlight lang="C#"> | ||
public void sendChatMessageToPlayer(string message) | public void sendChatMessageToPlayer(string message) | ||
| Line 18: | Line 20: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
}} | }} | ||
==See also== | ==See also== | ||
{{Gui_definition_c}} | {{Gui_definition_c}} | ||
[[Category:Clientside API]] | [[Category:Clientside API]] | ||
Revision as of 01:17, 14 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);
}