10.07.2010, 15:55
pawn Code:
forward CountdownTimer();
public CountdownTimer()
{
Seconds--;
if(Seconds == 0)
{
GameTextForAll("~R~Go!",1200,5);
KillTimer(Timer);
CountdownRunning = 0;
return 1; //This.
}
new Update[24];
format(Update, 24, "~r~%d", Seconds);
GameTextForAll(Update,1000,5);
return 1;
}