Players::broadcastInRange
Jump to navigation
Jump to search
This function writes a chat message for all players in range (like Player::outputChatBox).
Syntax
void players.broadcastInRange(Vecto3 position, number range [, number dimension], string text);Required Arguments
- position: The position from which the broadcast will be sent.
- range: The range from position.
- text: The text to be sent.
Optional Arguments
- dimension: The dimension in which the broadcast will be sent.
Example
This example sends message to all players in 15 units from the player
mp.events.addCommand("say", (player, message) => {
let pos = player.position;
mp.players.broadcastInRange(pos, 15, `Message from ${player.name}: ${message}`);
});See Also
- Functions
- Players::broadcast
- Players::broadcastInDimension
- Players::broadcastInRange
- Players::call
- Players::callInDimension
- Players::callInRange
- Players::callUnreliable
- Players::callUnreliableInDimension
- Players::callUnreliableInRange
- Pool::apply
- Pool::at
- Pool::exists
- Pool::forEach
- Pool::forEachInDimension
- Pool::forEachInRange
- Pool::toArray
- Properties