Difference between revisions of "Label"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Geckbot
m (Robot: Automated text replacement (-\[\[Category:(.*?)Functions\]\] +Category:\1Functions\nCategory:\1Functions (GECK 1.0)))
imported>Geckbot
m (Robot: Automated text replacement (-\[\[Category:(.*?)Functions \(GECK 1.0\)\]\] +Category:\1Functions (FOSE)))
Line 32: Line 32:


[[Category:Functions]]
[[Category:Functions]]
[[Category:Functions (GECK 1.0)]]
[[Category:Functions (FOSE)]]

Revision as of 21:52, 12 August 2009

< [[::Category:Functions|Category:Functions]]

A function added by the Fallout Script Extender.

Description

Creates a label in a script, allowing this location to be referred to by the GoTo function.

Syntax

[help]
Label ID:int{0 to 255}

Example

Label 1

Notes

The Label/GoTo Loop

This function can be used to create a loop when combined with GoTo. 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