Continue
From GECK
A function added by the New Vegas Script Extender.
Contents
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
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