AddPlayerChatRange

From Onset Developer Wiki
AddPlayerChatRange

Type: Function
Context: Server
Introduced: v1.0

Description

Add (or send) a chat message to everyone in the specified range.

Syntax

AddPlayerChatRange(x, y, range, message)

Parameters

  • x
    The X axis
  • y
    The Y axis
  • range
    The range in centimeters
  • message
    The text message to send.

Return Value

  • This function returns nothing.

Example

AddCommand("whisper", function(playerid, ...)
	local message = table.concat({...}, " ")

	if #message < 10 or #message > 128 then
		return AddPlayerChat(playerid, "Invalid specified range of the message.")
	end

	local x, y, z = GetPlayerLocation(playerid)

	AddPlayerChatRange(x, y, 50.0, "[WHISPER] "..GetPlayerName(playerid)..": "message)
end)

See also