GetTimerInterval Shared function
Jump to navigation
Jump to search
This function was added in version: 0.0.0 |
NOTE! Timers are responsible for performing specific code, after specified time. |
Function gets timer interval.
Syntax
int getTimerInterval(int id)
Required Arguments
- id: The id of the timer
Returns
Current inverval of the timer (in miliseconds).
Example
local id = setTimer(function()
{
}, 1000, 0);
print(getTimerInterval(id)) // this will print 1000