OnPlayerChatCommand

From Onset Developer Wiki
Revision as of 09:44, 23 March 2019 by BlueMountains (talk | contribs)
OnPlayerChatCommand

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

Description

Called when a player executes a command in the chat. See AddCommand to handle specific commands. You can call CancelChatCommand in this event to prevent the command from further processing.

Syntax

OnPlayerChatCommand(player, command, exists)

Parameters

  • player
    The player who has executed the command.
  • command
    The command name without slashes. For example: help
  • exists
    0 if the command is not bound by AddCommand. 1 if there is such handler.

Example

function OnPlayerChatCommand(player, cmd, exists)	
	if (GetTimeSeconds() - PlayerData[player].cmd_cooldown < 0.5) then
		CancelChatCommand()
		return AddPlayerChat(player, "Slow down with your commands")
	end

	PlayerData[player].cmd_cooldown = GetTimeSeconds()

	if (exists == 0) then
		AddPlayerChat(player, "Command '/"..cmd.."' not found!")
	end
end
AddEvent("OnPlayerChatCommand", OnPlayerChatCommand)

See also

Player

Vehicle

Game

Package

NPC

Object

Pickup

Text3D

Door