OnPlayerChat

From Onset Developer Wiki
Revision as of 16:21, 18 November 2019 by 28days (talk | contribs)
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)

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

Player

Vehicle

Game

Package

NPC

Object

Pickup

Text3D

Door