Scripting/Squirrel/Functions/Timer.Delete

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

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.

function onScriptLoad()
{
   timer <- NewTimer("print",1000,0,"test");
}

function onScriptUnload()
{
   timer.Delete();
}

Related Functions