Project

General

Profile

Actions

Added in 1.8.10

on <level>:UNLOAD:<commands>

Triggers when a script file is unloaded.

See also /load, /reload, /unload, on LOAD, on START.

Parameters

<level> - The User Access Level for the event to trigger.
<commands> - The commands to be performed when the event listener's criteria is met.

Example

; Create a cleanup alias.
alias -l cleanup {
  ; Unset the %loaded variable
  unset %loaded
}

; Listen for the UNLOAD event, and when matched, run this cleanup alias.
on *:UNLOAD:cleanup | echo -ag Script is $iif(%loaded,loaded,not loaded)

Updated by Per Amundsen about 7 years ago · 5 revisions

Also available in: PDF HTML TXT