Difference between revisions of "GoTo"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Geckbot
m (Robot: Automated text replacement (-\[\[Category:(.*?)Functions \(GECK 1.0\)\]\] +Category:\1Functions (FOSE)))
imported>JT
(Redirected page to Goto)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{Function
#REDIRECT [[goto]]
|origin = FOSE1
|summary = Continues processing the current script from a previously indicated label ID.
|name = GoTo
|arguments =
  {{FunctionArgument
  |Name = ID
  |Type = int
  |Value = 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
 
==See Also==
*[[Label]]
 
[[Category:Functions]]
[[Category:Functions (FOSE)]]

Latest revision as of 00:08, 22 August 2015

Redirect to: