From WikiChip
Difference between revisions of "mirc/commands/halt"
m (bot: correcting title) |
m (Bot: de-linking old mIRC menu) |
||
Line 1: | Line 1: | ||
− | {{mirc title|/halt Command | + | {{mirc title|/halt Command}} |
The '''/halt command''' can be used to immediately stop any further processing. If used from within an event or from within an alias that originated from an event. Other events in other script files will continue to execute unless they are prefixed with the '&' access prefix. In such events, the {{mIRC|$halted}} identifier will be {{mIRC|$true}}. | The '''/halt command''' can be used to immediately stop any further processing. If used from within an event or from within an alias that originated from an event. Other events in other script files will continue to execute unless they are prefixed with the '&' access prefix. In such events, the {{mIRC|$halted}} identifier will be {{mIRC|$true}}. | ||
Revision as of 18:26, 15 June 2017
Commands & Identifiers
Basics
Events
Matching Tools
Data Storage
Control Structures
GUI Scripting
Sockets
Advanced Scripting
Additional Resources
Security
Other
The /halt command can be used to immediately stop any further processing. If used from within an event or from within an alias that originated from an event. Other events in other script files will continue to execute unless they are prefixed with the '&' access prefix. In such events, the $halted identifier will be $true.
Synopsis
/halt
Switches
None
Parameters
None
Example
; /halt_example alias halt_example { echo -a Some echo! halt_example2 echo -a This echo command will never execute } alias halt_example2 { echo -a Example 2! ; kill the script halt }
Will output:
Some echo! Example 2!
Compatibility
Added:
See also
mIRC commands list