Project

General

Profile

On RAWMODE » History » Version 3

Per Amundsen, 02/19/2017 08:33 AM

1 2 Per Amundsen
_Added in 1.9.0_
2
3 1 Per Amundsen
*<notextile>on <level>:RAWMODE:<#|*>:<commands></notextile>*
4
5
Triggers when a channel mode is changed.
6
Allows a script to intercept and interpret the modes of a channel directly, avoiding AdiIRC's messages and notifications altogether.
7
8 3 Per Amundsen
_See also [[$mode]], [[on MODE]], [[on OWNER]], [[on DEOWNER]], [[on ADMIN]], [[on DEADMIN]], [[on OP]], [[on DEOP]], [[on HELP]], [[on DEHELP]], [[on VOICE]], [[on DEVOICE]], [[on BAN]], [[on UNBAN]]._
9
10 1 Per Amundsen
*Parameters*
11
12
<level> - The level for the event to trigger.
13
<#|*> - The [[Matchtarget]] to listen to.
14
<commands> - The commands to be performed when the event listener's criteria is met.
15
16
*Example*
17
18
<pre>
19
on ^*:RAWMODE:*: {
20
  echo $target * RAWMODE: $1-
21
  haltdef
22
}
23
</pre>