12.06.2011, 22:58
pawn Код:
new Count,SoGato;// TOPO
public CountDown()
{
if(Count > 0) SoGato = SetTimer("CountDown", 1000, true);
if(Count == 0)
{
GameTextForAll("Go Go Go]", 1000, 3);
KillTimer(SoGato);
Count = 5;
return 1;
}
format(string, sizeof(string),"%d", Count);
GameTextForAll(string,5000,3);
SoundForAll(1056);
return Count--;
}
pawn Код:
CountDown();
Abraзos~