From WikiChip
mirc/on events/on rawmode
< mirc‎ | on events
Revision as of 15:12, 25 October 2014 by Ouims (talk | contribs)

Template:mIRC Guide The ON RAWMODE allows a script to intercept and interpret the modes of a channel directly, avoiding mIRC's messages and notifications altogether.

Synopsis

ON <level>:RAWMODE:<#[,#]>:<commands>

Parameters

<level>The level for the event to trigger.

#[,#]The channel, or channel names, to listen on.

<commands>The commands to be performed when the event listener's criteria is met.


Example

Intercept all RAWMODE events, echo them to the target window in plain text, and halt mIRC's notifications:

ON ^*:RAWMODE:*: {
  echo $target * RAWMODE: $1-
  haltdef
}

Compatibility

Added: mIRC v5.6
Added on: 03 Jun 1999
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See Also