17.04.2012, 09:47
SetTimer is for calling functions with no parameters.
SetTimerEx is for calling functions with params.
To kill any timer.
SetTimerEx is for calling functions with params.
To kill any timer.
pawn Код:
new timer = SetTimerEx("somefunc", 1000, false, "dd", 1, 3);
KillTimer(timer);

