OnCheckpointExited
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
- onCheckpointEntered(player, checkpoint)
- onCheckpointExited(player, checkpoint)