Checkpoint.Owner

From Liberty Unleashed Wiki
Revision as of 19:49, 24 September 2010 by Juppi (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This Checkpoint class member returns the owner of the checkpoint or null if the checkpoint is a global one.

Syntax

  1. Player Checkpoint.Owner

Arguments

  • none

Example

This example will message the player whether the checkpoint they entered is a local or global one.

  1.  
  2. function onPlayerEnterCheckpoint( player, checkpoint )
  3. {
  4. MessagePlayer( "This checkpoint is a " + ( checkpoint.Owner ? "local" : "global" ) + " checkpoint.", player );
  5. return 1;
  6. }
  7.  

Notes

The function MessagePlayer and event onPlayerEnterCheckpoint were used in in this example. More info about them in the corresponding pages.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox