Halt » History » Version 1
Per Amundsen, 02/11/2014 03:28 PM
1 | 1 | Per Amundsen | _Added in 1.9.1_ |
---|---|---|---|
2 | |||
3 | */halt* |
||
4 | |||
5 | Halts a script and prevents any further processing. |
||
6 | |||
7 | If used in a event with ^ prefix, will stop AdiIRC from showing the default text for that event. |
||
8 | |||
9 | *Example* |
||
10 | |||
11 | <pre> |
||
12 | alias example { |
||
13 | ;Echo 'some text!'- |
||
14 | /echo -a Some text! |
||
15 | |||
16 | ;Halt the script. |
||
17 | /halt |
||
18 | |||
19 | ;Echo some more text, but this line will never be executed. |
||
20 | /echo -a This echo command will never execute |
||
21 | } |
||
22 | </pre> |