15.05.2014, 16:15
I'm not quite sure what your goal is but it seems like you want to stop a timer and restart it:
pawn Код:
new tHandle = SetTimerEx(...);
// Restarting
KillTimer(tHandle);
tHandle = SetTimerEx(...);