Difference between revisions of "Return"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
 
imported>GhostToast
(added IF link, changed somewhat confusing grammar)
Line 2: Line 2:
   return
   return


Return is used to force the script to stop processing. This can be useful inside if statements where you want to prevent lines following the return to not be processed.  
Return is used to force the script to stop processing. This can be useful inside [[if]] statements where you want to prevent lines following the return from being processed.  


[[Category: Commands]]
[[Category: Commands]]

Revision as of 16:48, 12 April 2006

Syntax:

 return

Return is used to force the script to stop processing. This can be useful inside if statements where you want to prevent lines following the return from being processed.