Difference between revisions of "On unload"

From Scriptwiki
Jump to: navigation, search
(added == See Also ==)
m
 
Line 15: Line 15:
  
 
== See Also ==
 
== See Also ==
To react when a script is loaded, look at the [[On_load|On load event]] (is triggered when you load the script the first time) or [[On_start|On start event]] (is triggered whenever you load the script).
+
* [[On_load|On load event]] triggers when you load the script the first time.
 +
* [[On_start|On start event]] is triggered when the mirc is started.
 +
 
 
[[Category:Events]]
 
[[Category:Events]]

Latest revision as of 10:54, 2 July 2007

The on UNLOAD event triggers in a script when the script is unloaded.

on <level>:UNLOAD:<commands>


Read access levels to get more info about the <level> field.

You can use this event to allow a script to cleanup, e.g. unsetting variables it did need.

Example

on *:UNLOAD: {
 echo -a Script xyz just unloaded.
 unset %xyz*
}

This example would at first echo that the script is unloaded and then unset all variables beginning with xyz.

See Also