Squirrel/Server/Events/Player/onPlayerCommand

From Liberty Unleashed Wiki
Revision as of 02:01, 16 October 2010 by Juppi (Talk | contribs)

Jump to: navigation, search

This is called when a player uses a command.

Syntax

  1. function onPlayerCommand( player, command, parameters )

Parameters

  • player - The pointer of the player
  • command - This is the command player used
  • parameters - This is the list of the parameters as a string

Example

This example command slaps the user if they type '/c slap'.

  1.  
  2. function onPlayerCommand( player, cmd, text )
  3. {
  4. if ( cmd == "slap" )
  5. {
  6. local pos = player.Pos;
  7. pos.z += 5;
  8. player.Pos = pos;
  9. MessagePlayer( "You slapped yourself! Now that wasn't very smart", player );
  10. }
  11. return 1;
  12. }
  13.  
Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox