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

m (Bot: Fixing links)
m (Parameters: Link access levels)
 
(12 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 +
{{mirc title|On Unload - Events}}
 
The '''ON UNLOAD''' event is ran whenever a script is unloaded from mIRC's remotes section. Only one of these events may exist per script file.
 
The '''ON UNLOAD''' event is ran whenever a script is unloaded from mIRC's remotes section. Only one of these events may exist per script file.
  
Line 5: Line 6:
  
 
== Parameters ==
 
== Parameters ==
<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 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.
  
 
== Example ==
 
== Example ==
When the following script is unloaded, it will give the user an [[$input identifier - mIRC|$input]] popup:
+
When the following script is unloaded, it will give the user an {{mIRC|$input}} popup:
 
<source lang="mIRC">ON *:UNLOAD:noop $input(So sorry to see you unload me!,oi,Script Unloaded!)</source>
 
<source lang="mIRC">ON *:UNLOAD:noop $input(So sorry to see you unload me!,oi,Script Unloaded!)</source>
  
Line 21: Line 22:
  
 
== Compatibility ==
 
== Compatibility ==
Added: mIRC v2.1a
+
{{mIRC compatibility|5.91}}
 
 
Added On: 28/02/95
 
  
 
== See Also ==
 
== See Also ==
* [[On load - mIRC|ON UNLOAD]]
+
* [[On load - mIRC|ON LOAD]]
 
* [[On start - mIRC|ON START]]
 
* [[On start - mIRC|ON START]]
 
* {{mIRC|/load}}
 
* {{mIRC|/load}}
* [[/unload commnand - mIRC|/unload]]
+
* {{mIRC|/unload}}
 
{{mIRC on event list}}
 
{{mIRC on event list}}
  
[[Category:MIRC on events]]
+
[[Category:mIRC on events|unload]]

Latest revision as of 08:16, 6 February 2024

The ON UNLOAD event is ran whenever a script is unloaded from mIRC's remotes section. Only one of these events may exist per script file.

Synopsis[edit]

ON <level>:UNLOAD:<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 the following script is unloaded, it will give the user an $input popup:

ON *:UNLOAD:noop $input(So sorry to see you unload me!,oi,Script Unloaded!)

Note: The above example can be executed directly from an mIRC command-line, without the ON UNLOAD event, by typing:

//noop $input(So sorry to see you unload me!,oi,Script Unloaded!)

The following is what the above will look like upon unloading the script:

On unload event example - mIRC

Compatibility[edit]

Added: mIRC v5.91
Added on: 15 Jun 2001
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See Also[edit]