RAGE.Chat.Output: Difference between revisions

From RAGE Multiplayer Wiki
(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


===Return value===
==Example==
Unknown
{{CSharpContainer|
{{Parameters}}
*'''text:''': String text


==Example==
{{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);
}


See also