Name DeleteTemporaryTimers
Type Method
Summary 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.

Note: Available in MUSHclient version 3.18 onwards.
VBscript example
world.DeleteTemporaryTimers
Jscript example
world.DeleteTemporaryTimers ();
PerlScript example
$world->DeleteTemporaryTimers ();
Returns Returns a count of the number of timers deleted.

See also ...