Script function
world.DeleteTemporaryTimers
Read about scripting
Type
Method
Summary
Deletes all temporary timers
Prototype
long DeleteTemporaryTimers();
View list of data type meanings
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.
See Also ...
Topics
Aliases
Default triggers/aliases/timers/macros/colours
Getting started
Groups
Plugins
Timers
Triggers
Functions
AddTimer (Adds a timer)
DeleteTemporaryAliases (Deletes all temporary aliases)
DeleteTemporaryTriggers (Deletes all temporary triggers)
DeleteTimer (Deletes a timer)
DeleteTimerGroup (Deletes a group of timers)
DoAfter (Adds a one-shot, temporary timer - simplified interface)
DoAfterNote (Adds a one-shot, temporary note timer - simplified interface)
DoAfterSpecial (Adds a one-shot, temporary, timer to carry out some special action)
DoAfterSpeedWalk (Adds a one-shot, temporary speedwalk timer - simplified interface)
EnableTimer (Enables or disables an timer)
EnableTimerGroup (Enables/disables a group of timers)
GetTimer (Gets details about a timer)
GetTimerInfo (Gets details about a timer)
GetTimerList (Gets the list of timers)
GetTimerOption (Gets the value of a named timer option)
IsTimer (Tests to see if a timer exists)
ResetTimer (Resets a named timer)
ResetTimers (Resets all timers)
SetTimerOption (Sets the value of a named timer option)
(Help topic: function=DeleteTemporaryTimers)
Documentation contents page
|