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

Line 1: Line 1:
 
{{mIRC Guide}}
 
{{mIRC Guide}}
The '''ON DISCONNECT''' event triggers when mIRC has disconnected from an IRC server. The '''$1-''' identifier is filled with any server disconnect message that is passed to mIRC.
+
The '''ON DISCONNECT''' event triggers when mIRC has disconnected from an IRC server.
  
 
== Synopsis ==
 
== Synopsis ==
Line 6: Line 6:
  
 
== Parameters ==
 
== Parameters ==
<span style="display: inline-block; width: 105px;">'''<level>'''</span>The level for the event to trigger.
+
* '''<level>''' - 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.
+
* '''<commands>''' - The commands to be performed when the event listener's criteria is met.
 +
 
 +
== {{mIRC|local identifiers}} ==
 +
 
 +
=== {{mIRC|$N-|$1-}} ===
 +
 
 +
Returns the server disconnect message that is passed to mIRC.
  
 
== Examples ==
 
== Examples ==

Revision as of 15:35, 9 February 2016

Template:mIRC Guide The ON DISCONNECT event triggers when mIRC has disconnected from an IRC server.

Synopsis

ON <level>:DISCONNECT:<commands>

Parameters

  • <level> - The corresponding access levels for the event to trigger.
  • <commands> - The commands to be performed when the event listener's criteria is met.

local identifiers

$1-

Returns the server disconnect message that is passed to mIRC.

Examples

; Echo network, and time
; when mIRC disconnected
ON *:DISCONNECT:echo -a Disconnected from $network on $asctime(dddd mmmm $+(ddoo,$chr(44), yyyy)) at $asctime(hh:mmtt) $+ . Server disconnect reason: $1-

The following is an example of what will be displayed when mIRC has disconnected from a server:

Disconnected from DALnet on Tuesday June 24th, 2014 at 02:06pm.

The $asctime identifier has been used here in order to specifically format the current date and time.

Compatibility

Added: mIRC v2.1a
Added on: 28 Feb 1995
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See Also