Squirrel/Server/Events/Player/onPlayerCommand

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(Example)
Line 27: Line 27:
 
           MessagePlayer( "You slapped yourself! Now that wasn't very smart", player );
 
           MessagePlayer( "You slapped yourself! Now that wasn't very smart", player );
 
     }
 
     }
 +
   
 +
    return 1;
 
}
 
}
 
</code>
 
</code>

Revision as of 02:01, 16 October 2010

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