<?xml version="1.0" encoding="utf-8"?>
<s1 title="Stop"><table><strong class="highlight"><![CDATA[]]></strong><tr><td><strong class="highlight"><![CDATA[]]></strong><p>Usage: </p>
</td><td><strong class="highlight"><![CDATA[]]></strong><p>stop </p>
</td></tr><tr><td><strong class="highlight"><![CDATA[]]></strong><p>Example: </p>
</td><td><strong class="highlight"><![CDATA[]]></strong><p>stop </p>
</td></tr></table><p>Allows you to pause a script at that line, so you can manually resume it afterward.  Prior to NeatBot version 3165T, the Stop command functioned exactly the same as <jump href="/wiki/End">End</jump> and would actually &quot;stop&quot; the script.. </p>
<p></p>
<source><![CDATA[// Example way to use Stop in a script
...
...
if $error goto stop
echo "We have no errors and will continue."
...
...
end

label stop
echo "We had an error. The script will now pause so you can review the error. Please manually resume after reviewing."
stop
...
...]]></source><p></p>

<br/>------------------------------------------------------------------------------<br/>
<p> <jump href="/wiki/ScriptControlStructures">ScriptControlStructures</jump> </p>
</s1>