27.02.2012, 14:35
Use this somewhere:
pawn Код:
SetTimerEx("CountDown", 1000, false, "i", 10);
pawn Код:
forward CountDown(sec);
public CountDown(sec) {
printf("sec: %d", sec);
//show it to everyone using the 'sec' variable.
sec --;
if(sec) SetTimerEx("CountDown", 1000, false, "i", 10);
}