24.11.2009, 17:21
Top of the script;
OnGameModeInit;
Somewhere in you're script;
Edit: Use format and GameText to see the counting.
Code:
new CountDownFromAmount; forward CountDownTimer();
Code:
CountDownFromAmount = 480; // 8min. SetTimer("CountDownTimer", 999, 1);
Code:
public CountDownTimer() { CountDownFromAmount--; if (CountDownFromAmount == 0) { GameTextForAll("End of round!!", 3000, 5); } return 1; }