GetTimers

From Multi Theft Auto: Wiki
Revision as of 21:24, 8 June 2006 by MrJax (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function returns a table of all the timers (with the remaining time left below or equal to the time specified)

Syntax

table getTimers ( [ time ] )

Optional Arguments

  • time: The maximum time left(ms) on the timers you wish to add to the table.

Returns

Returns a table of all the active timers.

Example

-- Find and kill all the timers with less than 1 minute to go
timers = getTimers ( 60000 )
-- Loop through the timer list
for timerKey, timerValue in timers do
	-- kill the timer
        killTimer ( timerValue )
end

See Also