04.11.2011, 21:48
Ok got it working (loaded th old gm versionlol) New problem now is it just flash 1 not count down from 60 to 0
Код:
forward TimedCountdown(); public TimedCountdown() { if(iTimedCountdown == -1) { iTimedCountdown = 61; } new szMessage[10]; iTimedCountdown--; format(szMessage, sizeof(szMessage), "~r~%d..."); // Add more in if you wish. GameTextForAll(szMessage, 950, 3); if(iTimedCountdown == 0) { KillTimer(rCountdownHandle); } return 1; }