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 |
||
| (One intermediate revision by one other user not shown) | |||
| 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) | ||
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);
}