Scripting/Squirrel/Events/OnCheckpointEntered
(Redirected from OnCheckpointEntered)
This wiki is using an old backup from 2020
Some information may be old/missing
This function is called whenever a player enters any checkpoint.
Syntax
function onCheckpointEntered( player, checkpoint );
Arguments
- player - The player whom triggered the event.
- checkpoint - The checkpoint that triggers the event.
Example
This example shows a message whenever you enter a checkpoint.
function onCheckpointEntered( player, checkpoint )
{
MessagePlayer( "You have entered 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)