OnPlayerChat: Difference between revisions

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
mNo edit summary
No edit summary
 
Line 26: Line 26:
The function print and call [[onPlayerChat]] were used in this example. More info about them in the corresponding pages.
The function print and call [[onPlayerChat]] were used in this example. More info about them in the corresponding pages.


== Related Events ==
== Related Functions ==


{{Scripting/Squirrel/Events/Player_Events}}
{{Scripting/Squirrel/Events/Player_Events}}
[[Category:Scripting/Squirrel/Events/Player_Events]]

Latest revision as of 22:15, 30 January 2017

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