goto: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Removed the incorrect statement that loops should always have a time delay. Also removed the reference to triggers as it is misleading and irrelevant)
Line 23: Line 23:


Define the label with '''#'''.
Define the label with '''#'''.
Note that loops should always have a time delay.
[[Triggers]] poll every 0.5 seconds so you rarely need a loop faster than that.





Revision as of 14:20, 22 May 2006


goto label


Operand types:

label: String

Type of returned value:

Nothing

Description:

In script only: Go to given label.

Note: Be sure to use double quotes around label name in goto.

Define the label with #.


Example:

goto "Lablename"
.
.
.
#Lablename