Project

General

Profile

On UNLOAD » History » Version 5

Per Amundsen, 02/24/2017 09:36 PM

1 1 Per Amundsen
_Added in 1.8.10_
2
3
*on <level>:UNLOAD:<commands>*
4
5
Triggers when a script file is unloaded.
6
7 4 Per Amundsen
_See also [[/load]], [[/reload]], [[/unload]], [[on LOAD]], [[on START]]._
8 1 Per Amundsen
9
*Parameters*
10
11 5 Per Amundsen
<level> - The [[User Access Level]] for the event to trigger.
12 1 Per Amundsen
<commands> - The commands to be performed when the event listener's criteria is met.
13
14
*Example*
15
16
<pre>
17
; Create a cleanup alias.
18
alias -l cleanup {
19
  ; Unset the %loaded variable
20
  unset %loaded
21
}
22
23
; Listen for the UNLOAD event, and when matched, run this cleanup alias.
24
on *:UNLOAD:cleanup | echo -ag Script is $iif(%loaded,loaded,not loaded)
25
</pre>