Difference between revisions of "Exit"
From Wiki
Line 2: | Line 2: | ||
{{body|exit|''exit'' will stop the execution of the current script. If it's called from inside a script that was called using [[call]] it will resume execution from the line under the [[call]] statement. If the ''exit'' is used from the main script, the script will start over.}} | {{body|exit|''exit'' will stop the execution of the current script. If it's called from inside a script that was called using [[call]] it will resume execution from the line under the [[call]] statement. If the ''exit'' is used from the main script, the script will start over.}} | ||
− | + | ==Example== | |
<pre> | <pre> | ||
event macro 1 0 %pet %command | event macro 1 0 %pet %command | ||
Line 14: | Line 14: | ||
| Width=250px align=center | [[call]] | | Width=250px align=center | [[call]] | ||
|} | |} | ||
− | {{ | + | =See Also= |
+ | {{Flow Control}} |
Revision as of 17:57, 5 September 2007
Synopsis
exit
Description
exit will stop the execution of the current script. If it's called from inside a script that was called using call it will resume execution from the line under the call statement. If the exit is used from the main script, the script will start over.
Example
event macro 1 0 %pet %command if %pet = all exit event macro 1 0 %pet follow me
Related Commands
call |
See Also
Flow Control
- Flow control commands allow scripts to make decisions based on the evaluation of boolean expressions.
break | Jumps to first statement outside of loop |
call | Transfers execution to another script file |
continue | Jumps execution of a loop to next iteration |
exit | Exits a called script |
for | Creates a counting loop |
gosub | Transfers execution to the matching sub |
goto | Jumps to another part of the script given by a label |
halt | Stops the script |
if | Executes code based on the evaluation of an expression |
pause | Temporarily stops the execution of the current script |
repeat..until | Creates a loop that checks condition after execution |
return | Returns from a sub |
stop | Ends the script |
while | Creates a loop that checks condition before execution |