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

(Created On snotice event - mIRC)
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{mirc title|On Snotice - Events}}
 
The '''ON SNOTICE''' event triggers when mIRC receives a server notice.
 
The '''ON SNOTICE''' event triggers when mIRC receives a server notice.
  
Line 9: Line 10:
 
<span style="display: inline-block; width: 105px;">'''<level>'''</span>The level for the event to trigger.
 
<span style="display: inline-block; width: 105px;">'''<level>'''</span>The level for the event to trigger.
  
<span style="display: inline-block; width: 105px;">'''<matchtext>'''</span>The text that to be matched. Can also be a [[wildcard]].
+
<span style="display: inline-block; width: 105px;">'''<matchtext>'''</span>The text that to be matched. Can also be a {{mirc|wildcard}}.
  
 
<span style="display: inline-block; width: 105px;">'''<commands>'''</span>The commands to be performed when the event listener's criteria is met.
 
<span style="display: inline-block; width: 105px;">'''<commands>'''</span>The commands to be performed when the event listener's criteria is met.
Line 21: Line 22:
  
 
== Compatibility ==
 
== Compatibility ==
Added: mIRC v3.8
+
{{mIRC compatibility|3.8}}
 
 
Added On: 25/11/95
 
  
 
== See Also ==
 
== See Also ==
Line 29: Line 28:
 
* [[On queryopen - mIRC|ON QUERYOPEN]]
 
* [[On queryopen - mIRC|ON QUERYOPEN]]
 
* [[On text - mIRC|ON TEXT]]
 
* [[On text - mIRC|ON TEXT]]
 +
{{mIRC on event list}}
  
[[Category:mIRC on events]]
+
[[Category:mIRC on events|snotice]]

Revision as of 16:23, 20 October 2018

The ON SNOTICE event triggers when mIRC receives a server notice.

This event fills the $1- identifier with the text from the server notice.

Synopsis

ON <level>:SNOTICE:<matchtext>:<commands>

Parameters

<level>The level for the event to trigger.

<matchtext>The text that to be matched. Can also be a wildcard.

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

Example

Halt the default server notice and echo it to the active window in plain text:

ON ^*:SNOTICE:*: {
  echo -a * Server notice: $1-
  haltdef
}

Compatibility

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


See Also