Scripting/Squirrel/Functions/Checkpoint.Remove
This wiki is using an old backup from 2020
Some information may be old/missing
Checkpoint.remove is very easy first u need. to give name to checkpoint
[code] function onScriptLoad()
{
array <- CreateCheckpoint(null, 0, Vector( 132.42, 674.34, 12.6543 ), RGB( 255, 0,255 ), 2);
}[/code]
now delete on playerpart
[code] function onPlayerPart( player ) { array.Remove();
}
[/code] By VCMP Team