From WikiChip
Difference between revisions of "mirc/on events/on action"
< mirc‎ | on events

(Parameters)
(Parameters)
Line 8: Line 8:
 
* '''<level>''' - The corresponding {{mIRC|access level}} for the event to trigger.
 
* '''<level>''' - The corresponding {{mIRC|access level}} for the event to trigger.
 
* '''<matchtext>''' - The corresponding {{mIRC|on text|matchtext}} for the event to trigger.
 
* '''<matchtext>''' - The corresponding {{mIRC|on text|matchtext}} for the event to trigger.
* '''<*><?><#[,#]>''' - The place, or places where the event listens.
+
* '''<*><?><#[,#]>''' - The place, or places where the event listens, you can seperate them by comma.
 
** '''*''' - Any query/channel window
 
** '''*''' - Any query/channel window
 
** '''?''' - Any query windows
 
** '''?''' - Any query windows
 
** '''#''' - Any channel window
 
** '''#''' - Any channel window
** '''#channel''' - A specific channel
+
** '''#channel[,#]''' - one or more specific channels, seperate them by comma
** '''[,#]''' - more channels
 
 
* '''<commands>''' - The commands to be performed when the event triggers
 
* '''<commands>''' - The commands to be performed when the event triggers
  

Revision as of 18:06, 21 January 2016

Template:mIRC Guide The ON ACTION event triggers on an action (/me or /describe) events inside of a channel, or a query window.

Synopsis

ON <level>:ACTION:<matchtext>:<*><?><#[,#]>:<commands>

Parameters

  • <level> - The corresponding access level for the event to trigger.
  • <matchtext> - The corresponding matchtext for the event to trigger.
  • <*><?><#[,#]> - The place, or places where the event listens, you can seperate them by comma.
    • * - Any query/channel window
    • ? - Any query windows
    • # - Any channel window
    • #channel[,#] - one or more specific channels, seperate them by comma
  • <commands> - The commands to be performed when the event triggers

Examples

Listens for if anyone uses the word slap anywhere in an action inside of any channel

ON *:ACTION:* slap *:#:msg # $nick $+ ! Why would you slap anyone?!?!?

The above code listens for the action event, looks for if the user used the word slap in any channel, and then responds accordingly.

Note: The wildcard search, with a space between them and the word, means this event will not trigger if any other characters are touching the word slap. This includes words such as: slaps, slapper, myslap, etc.

Listen for any action inside of a private message and responds

ON *:ACTION:*:?:msg $nick Well, I have no idea why I'm responding to this automatically, $nick $+ . You said: $1-

This code will listen for any action event in a private message, and respond with a silly message.

Compatibility

Added: mIRC v3.5
Added on: 07 Aug 1995
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See Also