Continue

From GECK
Jump to: navigation, search


A function added by the New Vegas Script Extender.

Description

Added by NVSE V4. Used only inside of a While or Foreach loop block to bypass subsequent lines and return code execution to its beginning, repeating the loop if it's condition evaluates true. See the loop function pages for further information.

Syntax

[help]
Continue

Example

While(iCount > 0)
   ; do things
   if (someConditon == true)
      Continue
   endif
   ; do additional things
loop
foreach Element <- Array
   ; do things
   if (someConditon == true)
      Continue
   endif
   ; do additional things
loop 


See Also