note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
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
Name | Description |
---|---|
timerid | The 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;
}
Related Functions
- SetTimer: Set a timer.
- SetTimerEx: Set a timer with parameters.
- KillTimer: Stop a timer.
- IsRepeatingTimer: Checks if a timer is set to repeat.
- CountRunningTimers: Get the running timers.