Open main menu

UESPWiki β

Return

		Return

	Type:	System

     Returns:	none

     Example:	return

     Scripts:	

Use this to stop processing a script before the end. This is particularly useful for long scripts that may take some time to fully process. For example:

begin TestScript

	if ( MenuMode == 1 )
		return
	endif

	; Do stuff
end