OnPlayerChat

From Onset Developer Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
OnPlayerChat

Type: Event
Context: Server & Client
Introduced: v1.0

Description

The event that gets called when you type a message in the chat.

Syntax

OnPlayerChat(player, text)
Client Syntax
OnPlayerChat(text)

Parameters

  • player
    The player who is texting in chat.
  • text
    Text committed by the player.

Example

AddEvent("OnPlayerChat", function(playerid, text)
	local x, y, z = GetPlayerLocation(playerid)

	AddPlayerChatRange(x, y, 75.0, "<span color=\"#ffffffFF\">"..GetPlayerName(playerid).." says: "..text.."</>")
	return false
end)

See also