warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
SendClientMessageToAllf
warning
This function was added in open.mp beta build 6 and will not work in earlier versions!
warning
This function was deprecated.
SendClientMessageToAll function now is built-in with format!
Description
Displays a formatted message in chat to all players. This is a multi-player equivalent of SendClientMessage.
Name | Description |
---|---|
color | The color of the message (0xRRGGBBAA Hex format). |
const message[] | The message to show (max 144 characters). |
{Float,_}:... | Indefinite number of arguments of any tag |
Returns
This function always returns true (1).
Examples
#define HELLO_WORLD "Hello World"
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(cmdtext, "/helloworld", true) == 0)
{
// Send a message to everyone.
SendClientMessageToAllf(-1, "%s!", HELLO_WORLD);
return 1;
}
return 0;
}