onPlayerEnteredVehicle

From Liberty Unleashed Wiki
Revision as of 11:34, 7 September 2011 by Stormeus (Talk | contribs)

Jump to: navigation, search
Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This is called when a player has successfully entered a train.

Syntax

  1. function onPlayerEnteredTrain( Player player )

Arguments

  • player - The player who entered a train

Returns

This event does not handle return values.

Example

This example will message a player when they enter a train.

  1.  
  2. function onPlayerEnteredTrain( player )
  3. {
  4. MessagePlayer( "You entered a train.", player );
  5. return 1;
  6. }
  7.  

Notes

The function MessagePlayer was used in this example. More info about it can be found in the corresponding page.

Related Events

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox