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

m (Bot: Adding a template (template:mIRC on event list))
m (Bot: Fixing links)
Line 17: Line 17:
 
<pre>Disconnected from DALnet on Tuesday June 24th, 2014 at 02:06pm.</pre>
 
<pre>Disconnected from DALnet on Tuesday June 24th, 2014 at 02:06pm.</pre>
  
The [[$asctime identifier - mIRC|$asctime]] identifier has been used here in order to specifically format the current date and time.
+
The {{mIRC|$asctime}} identifier has been used here in order to specifically format the current date and time.
  
 
== Compatibility ==
 
== Compatibility ==
Line 27: Line 27:
 
* [[On connect - mIRC|ON CONNECT]]
 
* [[On connect - mIRC|ON CONNECT]]
 
* [[On connectfail - mIRC|ON CONNECTFAIL]]
 
* [[On connectfail - mIRC|ON CONNECTFAIL]]
* [[$network identifier - mIRC|$network]]
+
* {{mIRC|$network}}
* [[$server identifier - mIRC|$server]]
+
* {{mIRC|$server}}
 
{{mIRC on event list}}
 
{{mIRC on event list}}
  
 
[[Category:MIRC on events]]
 
[[Category:MIRC on events]]

Revision as of 21:04, 5 July 2014

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.

Synopsis

ON <level>:DISCONNECT:<commands>

Parameters

<level>The level for the event to trigger.

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

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/02/95

See Also