13.04.2012, 01:34
Are you using SetTimer or SetTimerEx?, use SetTimerEx if you gonna use playerid use SetTimerEx because the timer needs parameter
EDIT:
also if you want to keep the timer repeating just use something like this
or if you use SetTimer it must be something like this
false if you want to stop the timer after the timer calls the callback
EDIT:
also if you want to keep the timer repeating just use something like this
pawn Код:
SetTimerEx(funcname, interval, true, format, float);
pawn Код:
SetTimer(funcname, interval, true);