goto: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Reverted edit of THobson, changed back to last version by Planck)
mNo edit summary
Line 18: Line 18:
'''Description:'''
'''Description:'''


In script only: Go to given '''label'''.<br>
In script only: Go to given '''label'''.
'''Note:''' String argument is used here.<br>
Be sure to use double quotes around label name in '''goto'''.


 
'''Note:''' Be sure to use double quotes around label name in '''goto'''.
'''Example:'''
 
'''goto''' "Loop"
 
 
'''Comments:'''


Define the label with '''#'''.
Define the label with '''#'''.


Note that loops should always have a time delay.
'''Example:'''


[[Triggers]] poll every 0.5 seconds so you rarely need a loop faster than that.
'''goto''' "Lablename"<br>
.<br>
.<br>
.<br>
''#Lablename''

Revision as of 00:21, 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