GoTo

Revision as of 10:10, 3 August 2009 by imported>Omzy (new fose function)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
< [[::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

Example

GoTo 1337

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:

scn LoopScript
int count
int iterations
Begin GameMode
  Label 1337
    ;Script instructions to loop
    set count to count + 1
  if count < iterations
    GoTo 1337
  endif
End

See Also