onScriptUnload

From Liberty Unleashed Wiki
Revision as of 20:22, 28 July 2011 by VRocker (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 from the client.

Syntax

  1. function onScriptUnload()

Arguments

  • none

Returns

This event does not handle return values.

Example

This example will print the name of the unloading script to the client console.

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

Related Events

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox