06.07.2013, 15:47
Oh, sorry. I was sleeping xD
Timer = SetTimer("Countdown", 1000, false); - This must to be added in your loadtruck command. If it does not working again, give me your loadtruck command.
pawn Код:
new Time = 10;
new Timer;
forward Countdown(playerid);
public Countdown(playerid) {
new string[128];
Time--;
if(Time == 0)
{
Time = 10;
KillTimer(Timer);
} else {
format(string, sizeof(string), "%d", Timer);
GameTextForPlayer(playerid, string, 1000, 1);
}
return 1;
}