Skip to main content

GetTimerInterval

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

Gets the interval of a timer.

Parameters

NameDescription
timeridThe ID of the timer to get the interval of.

Return Values

Returns the interval of the timer in milliseconds.

Examples

new g_Timer;

public OnGameModeInit()
{
g_Timer = SetTimer("TimerCallback", 60000, true);

new interval = GetTimerInterval(g_Timer);
printf("Timer ID %d interval: %d ms", g_Timer, interval);
return 1;
}