Players::broadcast: Difference between revisions
CocaColaBear (talk | contribs) (Created page with "This function writes a chat message for all players (like Player::outputChatBox). ==Syntax== <syntaxhighlight lang="typescript"> void players.broadcast(string text); </sy...") |
CocaColaBear (talk | contribs) No edit summary |
||
| Line 17: | Line 17: | ||
==See Also== | ==See Also== | ||
{{ | {{PlayerPool_block}} | ||
Revision as of 13:22, 17 April 2017
This function writes a chat message for all players (like Player::outputChatBox).
Syntax
void players.broadcast(string text);
Required Arguments
- text: The text to be sent
Example
This example sends player message to all
mp.events.addCommand("say", (player, message) => {
mp.players.broadcast(`Message from ${player.name}: ${message}`);
});
See Also
- Functions
- Players::broadcast
- Players::broadcastInDimension
- Players::broadcastInRange
- Players::call
- Players::callInDimension
- Players::callInRange
- Players::callUnreliable
- Players::callInDimensionUnreliable
- Players::callInRangeUnreliable
- Players::reloadResources
- Pool::apply
- Pool::at
- Pool::exists
- Pool::forEach
- Pool::forEachInDimension
- Pool::forEachInRange
- Pool::getClosest
- Pool::getClosestInDimension
- Pool::toArray
- Pool::toArrayFast