RAGE.Chat.Colors: Difference between revisions

From RAGE Multiplayer Wiki
(Created page with "Enables the possibility to send chat messages like !{255, 255, 255, 100} (supports all the possible CSS "color" values). ==Syntax== <pre>Bool RAGE.Chat.Colors;</pre> === Req...")
 
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:35, 16 January 2019

Enables the possibility to send chat messages like !{255, 255, 255, 100} (supports all the possible CSS "color" values).

Syntax

Bool RAGE.Chat.Colors;

Required Arguments

  • toggle: Bool toggle

Example

C# Syntax

Parameters

  • toggle: Bool toggle

Example

public void colorsChat(bool toggle)
{
    RAGE.Chat.Colors(toggle);
}


See also