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

(Created page with "The '''on text''' event is an mIRC event that triggers when a remote user (I.E. not the local user) receives a channel or a query message. == Synopsis == on <level>:text...")
 
(Synopsis)
Line 2: Line 2:
  
 
== Synopsis ==
 
== Synopsis ==
on <level>:text:<matchtext>:<target>:<commands>
+
<source lang="mIRC">
 +
on <level>:text:<matchtext>:<target>:<commands>
  
 +
;or
 +
 +
on <level>:text:<matchtext>:<target>:{
 +
 +
}
 +
</source>
 
* '''<matchtext>''' - The match text is the text pattern that mIRC will use to compare with every user message. Once the text has been matched (and the channel if provided), the event will trigger.
 
* '''<matchtext>''' - The match text is the text pattern that mIRC will use to compare with every user message. Once the text has been matched (and the channel if provided), the event will trigger.
 
* '''<level>''' - The appropriate [[access levels - mIRC|access level]] for the event.
 
* '''<level>''' - The appropriate [[access levels - mIRC|access level]] for the event.

Revision as of 04:45, 23 December 2013

The on text event is an mIRC event that triggers when a remote user (I.E. not the local user) receives a channel or a query message.

Synopsis

on <level>:text:<matchtext>:<target>:<commands>
 
;or
 
on <level>:text:<matchtext>:<target>:{
 
}
  • <matchtext> - The match text is the text pattern that mIRC will use to compare with every user message. Once the text has been matched (and the channel if provided), the event will trigger.
  • <level> - The appropriate access level for the event.

See also