OnPlayerChat

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

This is called when a player uses a command.

Syntax

function onPlayerChat( player, message )

Parameters

  • Player player - The player.
  • string message - This is the message that player sent.

Example

This example command outputs the player messages.

function onPlayerChat( player, message )
{
 print("Player:"+player.Name+" Says:"+message);
}

Notes

The function print and call onPlayerChat were used in this example. More info about them in the corresponding pages.

Related Functions