OnPlayerChat

From Onset Developer Wiki
Revision as of 08:05, 16 January 2020 by Chloe (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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