17.10.2018, 23:37
PHP код:
//top
new mycountdown[2]
//Command
mycountdown[0] = SetTimer("Countdown", 1000, true);
mycountdown[1] = strval(param[0]);
//public
mycountdown[1]--;
if(mycountdown [1] < 1)//Countdown Ende
else
new string[24];
format(string,sizeof(string),"%i_segundos",mycountdown [1]);
TextDrawSetString(TDEditor_TD[2], string);
KillTimer(mycountdown[0]);