message: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 15: | Line 15: | ||
[[Client/Defines#GTA_III_-_Colour_Defines|Client colour defines]] | [[Client/Defines#GTA_III_-_Colour_Defines|Client colour defines]] | ||
|exampleLua = message("This text is shown in the chat box.", COLOUR_GREEN) | |exampleLua = message("This text is shown in the chat box.", COLOUR_GREEN) | ||
|exampleJSSS = addCommandHandler("message1", (command, text, client) => | |||
{ | |||
if (client.player) | |||
{ | |||
message(client.name + ' is spawned!'); | |||
} | |||
else | |||
{ | |||
message(client.name + ' is not spawned!'); | |||
} | |||
}); | |||
|exampleJSCS = addCommandHandler("message1", (command, text) => | |||
{ | |||
if (localClient.player) | |||
{ | |||
message('You are spawned!'); | |||
} | |||
else | |||
{ | |||
message('You are not spawned!'); | |||
} | |||
}); | |||
}} | }} | ||
Latest revision as of 19:10, 15 June 2026
Function Server and Client
![]()
Online and Offline
Available since Server 1.0.0, Client 1.0.0
void message(string message, [ int colour = COLOUR_LIME ])
The message function is used to add a message to the chat box.
When used server-side, the message is shown for all players.
Parameters
| 1) | string | message | The message to display in the chat box. |
| 2) | int | colour | Optional, defaults to COLOUR_LIME. The text colour for the message. |
Return
| void | This function doesn't return a value. |
Notes
- See also: messageClient and messageAllExcept.
- Server colour defines.
- Client colour defines.
Examples
Example 1 - Lua:
message("This text is shown in the chat box.", COLOUR_GREEN)
Example 2 - JavaScript - Server-Side:
addCommandHandler("message1", (command, text, client) =>
{
if (client.player)
{
message(client.name + ' is spawned!');
}
else
{
message(client.name + ' is not spawned!');
}
});
Example 3 - JavaScript - Client-Side:
addCommandHandler("message1", (command, text) =>
{
if (localClient.player)
{
message('You are spawned!');
}
else
{
message('You are not spawned!');
}
});
Compatibility
There isn't any compatibility information for this function.
Related
Server Related
message
messageAllExcept
messageClient
Client Related
message
setChatWindowEnabled