Scripting/Squirrel/Functions/Timer.Delete: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "== Syntax == <pre>Timer.Delete</pre> == Arguments == '''Timer''' - The instance of the timer. == Example == This example will create a timer when the script loads and del...")
(No difference)

Revision as of 14:17, 14 August 2016

Syntax

Timer.Delete

Arguments

Timer - The instance of the timer.

Example

This example will create a timer when the script loads and deletes it when it unloads.

<source lang=squirrel> function onScriptLoad() {

  timer <- NewTimer("print",1000,0,"test");

}

function onScriptUnload() {

  timer.Delete();

}