Scripting/Squirrel/Functions/FindCheckpoint
This wiki is using an old backup from 2020
Some information may be old/missing
Syntax
FindCheckPoint(ID)
Arguments
- int ID - The ID of the Checkpoint to find
Example
function onPlayerCommand( player, cmd, text )
{
if(cmd == "findcp")
{
local cp = FindCheckPoint(text.tointeger());
if (cp)
{
cp.Pos = player.Pos;
MessagePlayer("[#00FF00]CheckPoint has been found and has been teleported to you!", player);
} else {
MessagePlayer("[#FF0000]CheckPoint has not been found :(", player);
}
}
}
Notes
Call onPlayerCommand was used in this example. More info about it in the page.