Skip to main content

IsRepeatingTimer

warning

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

Description

Checks if a timer is set to repeat.

Parameters

NameDescription
timeridThe ID of the timer to check.

Return Values

true: Timer is a repeating timer.

false: Timer is not a repeating timer.

Examples

new g_Timer;

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

if (IsRepeatingTimer(g_Timer))
{
// Do something
}
return 1;
}