02.11.2013, 19:13
my previous thread with my code: http://forum.sa-mp.com/showthread.ph...33#post2766733
So i got it to kinda work but now it wont count down :\
So i got it to kinda work but now it wont count down :\
pawn Код:
new roundtimer;
forward CountDown(playerid)
// under ongamemodeinit
public CountDown(playerid)
{
new string[85];
format(string,sizeof(string),"%d Sec",roundtimer);
PlayerTextDrawSetString(playerid,TL[playerid],string);
roundtimer--;
return 1;
}