onScriptUnload

From Liberty Unleashed Wiki
Revision as of 12:44, 11 November 2010 by Juppi (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This function is called when a squirrel script is unloaded automatically by the server on shutdown, via manual console input or using the function UnloadScript. This event is only called in the script which was unloaded.

Syntax

  1. function onScriptUnload()

Arguments

  • none

Returns

This event does not handle return values.

Example

This example will print the name of the loaded script to the server console.

  1.  
  2. function onScriptUnload()
  3. {
  4. print( "Unloaded LU Test Script" );
  5. return 1;
  6. }
  7.  

Notes

The function print was used in this example. More info about this in the corresponding page.

Related Events

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox