31.10.2018, 09:03
PHP Code:
new countvar=4;//Top on script
forward CountDOwn();
public CountDown()
{
if(countvar != 0)
{
countvar--;
new str[128];
if(countvar == 0)
{
KillTimer(CountDownTimer);
countvar = 4;
}
else
{
format(str, sizeof(str), "%d", CountDownTimer);
GameTextForAll(str, 1000, 1);
}
}
}