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
(Created page with "__NOTOC__ This is called when a player uses a command. == Syntax == <pre>function onPlayerChat( player, message )</pre> == Parameters == * instance '''player''' - The play...")
 
mNo edit summary
Line 8: Line 8:
== Parameters ==
== Parameters ==


* instance '''player''' - The player.
* [[Scripting/Squirrel/Functions#Player_Functions|Player]] '''player''' - The player.
* string '''message''' - This is the message that player sent.
* ''string'' '''message''' - This is the message that player sent.


== Example ==
== Example ==


This example command output the player messages.
This example command outputs the player messages.


<source lang=squirrel>
<source lang=squirrel>

Revision as of 16:30, 2 July 2015

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 Events