R3vo/Sandbox – User
Jump to navigation
Jump to search
Command | Description | Example | Exit whole script? | Return Value |
---|---|---|---|---|
breakOut | Breaks out of scope with given name. | Example | ![]() |
![]() |
breakTo | Breaks out of all scopes and returns to the scope with given name. | Example | ![]() |
![]() |
break | Skips all further loop iterations. | Example | ![]() |
![]() |
breakWith | Same as break but will also return the given value. | Example | ![]() |
![]() |
continue | Skips current loop iteration and continues with the next one. | Example | ![]() |
![]() |
continueWith | Same as continue but returns the given value. | Example | ![]() |
![]() |
exitWith | Exits the current code scope. | Example | ![]() |
![]() |
throw | Example | Example | ![]() |
![]() |
terminate | Terminates script of given Script Handle. | Example | ![]() |
![]() |