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

m (bot: sort-key added to category)
m (PatrolBot moved page On unload - mIRC to mirc/on events/on unload: per new naming convention)
(No difference)

Revision as of 02:14, 13 August 2014

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

ON <level>:UNLOAD:<commands>

Parameters

<level>The level for the event to trigger.

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

Example

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

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