Skip to main content

IsValidTimer

warning

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

Description

Checks if a timer is valid.

Parameters

NameDescription
timeridThe ID of the timer to check.

Return Values

true: Timer is valid.

false: Timer is not valid.

Examples

new g_Timer;

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

public OnGameModeExit()
{
if (IsValidTimer(g_Timer))
{
printf("Timer ID %d is valid.", g_Timer);
KillTimer(g_Timer);
}
else
{
printf("Timer ID %d is not valid.", g_Timer);
}
return 1;
}