OnCheckpointExited

From Vice City Multiplayer
Revision as of 22:11, 30 January 2017 by Thijn (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

This is called when a player exits any checkpoint

Syntax

function onCheckpointExited( player, checkpoint )

Arguments

  • player - The pointer of the new player
  • checkpoint - The pointer of the checkpoint

Example

function onCheckpointExited( player, checkpoint )
{
    MessagePlayer( "You have exited a checkpoint! ID: " + checkpoint.ID, player );    
}

Notes

The functions MessagePlayer and Checkpoint.ID were used in this example. More info about them in corresponding pages.

Related Functions