Scripting/Squirrel/Functions/Checkpoint.ID: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
This function gets the checkpoint ID. | |||
== Syntax == | == Syntax == | ||
<pre>Checkpoint.ID</pre> | |||
== Example == | == Example == | ||
< | <source lang="squirrel"> | ||
function onScriptLoad() | |||
{ | { | ||
CreateCheckpoint(null, 0, Vector( | CheckpointGreen <- CreateCheckpoint( null, 0, Vector( -378.79, -537.962, 17.2832 ), RGB(255, 0, 255), 2); | ||
CreateCheckpoint(null, 0, Vector( | CheckpointWhite <- CreateCheckpoint( null, 0, Vector( 876.45, 432.54, 12.34 ), RGB(255, 255, 255), 2); | ||
print( | print("CheckpointGreen ID: " + CheckpointGreen.ID); | ||
print( | print("CheckpointWhite ID: " + CheckpointWhite.ID); | ||
return 1; | |||
}</ | } | ||
</source> | |||
=== Notes === | |||
Call [[onPlayerCommand]] were used in this example. More info about them in the corresponding pages. | |||
== Related Functions == | |||
{{Scripting/Squirrel/Functions/Checkpoint_Functions}} |
Revision as of 19:58, 23 April 2016
This function gets the checkpoint ID.
Syntax
Checkpoint.ID
Example
function onScriptLoad()
{
CheckpointGreen <- CreateCheckpoint( null, 0, Vector( -378.79, -537.962, 17.2832 ), RGB(255, 0, 255), 2);
CheckpointWhite <- CreateCheckpoint( null, 0, Vector( 876.45, 432.54, 12.34 ), RGB(255, 255, 255), 2);
print("CheckpointGreen ID: " + CheckpointGreen.ID);
print("CheckpointWhite ID: " + CheckpointWhite.ID);
return 1;
}
Notes
Call onPlayerCommand were used in this example. More info about them in the corresponding pages.