Difference between revisions of "GoTo"
Jump to navigation
Jump to search
imported>Cipscis (→See Also: Added external link to "Loops" article on cipscis.com) |
imported>Cipscis (→External Links: Moved link to cipscis.com to new section; added link to FOSE documentation) |
||
Line 30: | Line 30: | ||
==See Also== | ==See Also== | ||
*[[Label]] | *[[Label]] | ||
==External Links== | |||
*[http://www.cipscis.com/fallout/tutorials/loops.aspx Loops] | *[http://www.cipscis.com/fallout/tutorials/loops.aspx Loops] | ||
*[http://fose.silverlock.org/fose_command_doc.html#Goto FOSE Documentation] | |||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:Functions (FOSE)]] | [[Category:Functions (FOSE)]] |
Revision as of 18:16, 11 October 2009
< [[::Category:Functions|Category:Functions]]
A function added by the Fallout Script Extender.
Description
Continues processing the current script from a previously indicated label ID.
Syntax
GoTo ID:int{0 to 255}
Example
GoTo 1
Notes
The Label/GoTo Loop
This function can be used to create a loop when combined with Label. The following script loops the script instructions iterations times:
ScriptName LoopScript int count int iterations Begin GameMode Label 1 ;Script instructions to loop set count to count + 1 if count < iterations GoTo 1 endif End