30.09.2010, 22:56
I know the problem.
You cannot kill timers if you've only implemented them, you need to assign a variable to the timer first before killing it.
For example:
Sneaky, hats off for the effort but you've missed the main problem ^
You cannot kill timers if you've only implemented them, you need to assign a variable to the timer first before killing it.
For example:
pawn Код:
new timer_dash_update;
timer_dash_update = SetTimerEx("DashUpdate",time,true/false,"i",playerid);
KillTimer(timer_dash_update);