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

(Created On quit event - mIRC)
 
m (Compatibility: This was added in 3.7)
 
(11 intermediate revisions by 6 users not shown)
Line 1: Line 1:
 +
{{mirc title|On Quit - Events}}
 
The '''ON QUIT''' event is triggered when a user quits/disconnects from the IRC network while on the same channel as the local mIRC client.
 
The '''ON QUIT''' event is triggered when a user quits/disconnects from the IRC network while on the same channel as the local mIRC client.
  
Line 4: Line 5:
 
<pre>ON <level>:QUIT:<commands></pre>
 
<pre>ON <level>:QUIT:<commands></pre>
  
<span style="display: inline-block; width: 105px;">'''<level>'''</span>The level for the event to trigger.
+
 
 +
== Parameters ==
 +
<span style="display: inline-block; width: 105px;">'''<level>'''</span>The corresponding {{mIRC|access levels}} for the event to trigger.
  
 
<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 10: Line 13:
 
== Example ==
 
== Example ==
 
When a user disconnects, stop mIRC's default message and, instead, echo to the active window a custom message:
 
When a user disconnects, stop mIRC's default message and, instead, echo to the active window a custom message:
<source lang="mIRC">ON ^*:QUIT: {
+
<source lang="mIRC">on ^*:QUIT:{
 
   echo -a * $nick just disconnected from $network
 
   echo -a * $nick just disconnected from $network
 
   haltdef
 
   haltdef
 
}</source>
 
}</source>
 +
 +
<source lang="mIRC">
 +
Because ON QUIT is not associated with # or $chan, to show a quit message in all channels you share with that nick, you can use $comchan. You can simulate mIRC's default Quit message in channels with:
 +
 +
on ^*:QUIT:{
 +
  var %i $comchan($nick,0)
 +
  while (%i) {
 +
    echo -ctg quit $comchan($nick,%i) * $nick $+($chr(40),$address,$chr(41)) Quit $iif($1,$+($chr(40),$1-,$chr(41)))
 +
    dec %i
 +
  }
 +
  haltdef
 +
}
 +
</source>
  
 
== Compatibility ==
 
== Compatibility ==
Added: mIRC v2.1a
+
{{mIRC compatibility|3.7}}
 
 
Added On: 28/02/95
 
  
 
== See Also ==
 
== See Also ==
Line 24: Line 38:
 
* [[On join - mIRC|ON JOIN]]
 
* [[On join - mIRC|ON JOIN]]
 
* [[On part - mIRC|ON PART]]
 
* [[On part - mIRC|ON PART]]
 +
{{mIRC on event list}}
  
[[Category:mIRC on events]]
+
[[Category:mIRC on events|quit]]

Latest revision as of 09:35, 6 February 2024

The ON QUIT event is triggered when a user quits/disconnects from the IRC network while on the same channel as the local mIRC client.

Synopsis[edit]

ON <level>:QUIT:<commands>


Parameters[edit]

<level>The corresponding access levels for the event to trigger.

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

Example[edit]

When a user disconnects, stop mIRC's default message and, instead, echo to the active window a custom message:

on ^*:QUIT:{
  echo -a * $nick just disconnected from $network
  haltdef
}
Because ON QUIT is not associated with # or $chan, to show a quit message in all channels you share with that nick, you can use $comchan. You can simulate mIRC's default Quit message in channels with:
 
on ^*:QUIT:{
  var %i $comchan($nick,0)
  while (%i) {
    echo -ctg quit $comchan($nick,%i) * $nick $+($chr(40),$address,$chr(41)) Quit $iif($1,$+($chr(40),$1-,$chr(41))) 
    dec %i
  }
  haltdef
}

Compatibility[edit]

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


See Also[edit]