Timer detection
#1

Is there any funcion that can detect if there is running any timer?

Like

IsRunningTimer("TimerName/Timers public");
Reply
#2

:P dno maybe if u set a timer put a variable like
Код:
New timer1running;
then at timer

Код:
SetTimer(blabla
timer1running = 1;
Reply
#3

Better do:

pawn Код:
new timer;

timer = SetTimer(..); // Timer ID's start at 1

if(timer)
{
    // do ya stuff
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)