Scripting/Squirrel/Functions/Checkpoint.ID: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
No edit summary
No edit summary
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
As the other functions of checkpoint Checkpoint.ID is also easy, but to do this u need something like:-
This function gets the checkpoint ID.
<pre>function onScriptLoad()
 
== Syntax ==
 
<pre>Checkpoint.ID</pre>
 
== Example ==
 
<source lang="squirrel">
function onScriptLoad()
{
{
CreateCheckpoint(null, 0, Vector( 876.45, 432.54, 12.34 ), RGB( 255, 0, 255 ), 2);
CheckpointGreen <- CreateCheckpoint( null, 0, false, Vector( -378.79, -537.962, 17.2832 ), RGB(255, 0, 255), 2);
CreateCheckpoint(null, 0, Vector( 765.43, 324.65, 14.54 ), RGB( 243, 67, 189 ), 2);
CheckpointWhite <- CreateCheckpoint( null, 0, true, Vector( 876.45, 432.54, 12.34 ), RGB(255, 255, 255), 2);
}</pre>
print("CheckpointGreen ID: " + CheckpointGreen.ID);
print("CheckpointWhite ID: " + CheckpointWhite.ID);
return 1;
}
</source>
 
=== Notes ===


In This now with ascending First Checkpoint is id 1 and second is id 2
Call [[onScriptLoad]] was used in this example. More info about them in the corresponding pages.


== Related Functions ==


By VCMP Team
{{Scripting/Squirrel/Functions/Checkpoint_Functions}}
[[Category:Scripting/Squirrel/Functions/Checkpoint_Functions]]

Latest revision as of 17:05, 3 August 2017

This function gets the checkpoint ID.

Syntax

Checkpoint.ID

Example

function onScriptLoad()
{
	CheckpointGreen <- CreateCheckpoint( null, 0, false, Vector( -378.79, -537.962, 17.2832 ), RGB(255, 0, 255), 2);
	CheckpointWhite <- CreateCheckpoint( null, 0, true, 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 onScriptLoad was used in this example. More info about them in the corresponding pages.

Related Functions