Difference between revisions of "Continue"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>Rirein
(Created page with "Flow control command for Oblivion Script Extender. '''Syntax:''' (nothing) Continue Must be called inside of a ForEach or [[While]...")
 
imported>Rirein
m
 
Line 16: Line 16:
[[Category: Functions]]
[[Category: Functions]]
[[Category: Functions (OBSE)]]
[[Category: Functions (OBSE)]]
[[Category: Functions (OBSE v0017)]]
[[Category: Miscellaneous Functions]]
[[Category: Miscellaneous Functions]]
[[Category: Miscellaneous Functions (OBSE)]]
[[Category: Miscellaneous Functions (OBSE)]]
[[Category: Flow Control Functions (OBSE)]]
[[Category: Flow Control Functions (OBSE)]]

Latest revision as of 03:05, 25 June 2015

Flow control command for Oblivion Script Extender.

Syntax: (nothing) Continue

Must be called inside of a ForEach or While loop. Continue skips the rest of the body of a loop, returning execution to the top of the loop and evaluating the loop condition. If the condition passes, execution enters the loop body, otherwise the loop terminates and continues from the instruction following the corresponding Loop command.

See Also[edit | edit source]