world.DeleteTemporaryTimers
Deletes all temporary timers
Prototype
long DeleteTemporaryTimers();
Description
Deletes all timers marked as "temporary".
The intention here is to provide a quick way of restoring the world to how it would be after loading (since temporary timers are not loaded from the world file).
You might also use this if a runaway script created too many temporary timers with "DoAfter" or similar.
VBscript example
world.DeleteTemporaryTimers
Jscript example
world.DeleteTemporaryTimers ();
PerlScript example
$world->DeleteTemporaryTimers ();
Python example
world.DeleteTemporaryTimers
Lua example
DeleteTemporaryTimers ()
Return value
Returns a count of the number of timers deleted.
Related topic
See also
| Function | Description |
|---|---|
| AddTimer | Adds a timer |
| DeleteTemporaryAliases | Deletes all temporary aliases |
| DeleteTemporaryTriggers | Deletes all temporary triggers |
| DoAfter | Adds a one-shot, temporary timer - simplified interface |
| DoAfterNote | Adds a one-shot, temporary note timer - simplified interface |
| DoAfterSpeedWalk | Adds a one-shot, temporary speedwalk timer - simplified interface |