Project

General

Profile

Haltdef » History » Version 2

Per Amundsen, 02/06/2020 01:19 AM

1 1 Per Amundsen
_Added in 1.9.0_
2
3
*/haltdef*
4
5
Tell's AdiIRC to not output it's own default text in a ^ event, without halting the entire script.
6
7
*Example*
8
9
<pre>
10
on ^*:op:#channel:{
11 2 Per Amundsen
  ; Tell AdiIRC to not display the usual message when someone is opped.
12 1 Per Amundsen
  /haltdef
13
14 2 Per Amundsen
  ; Instead display your own message.
15 1 Per Amundsen
  /echo -t #channelOP : $opnick by $nick
16
}
17
</pre>