07.11.2012, 16:47
Tira o i
pawn Код:
forward Contagem();
public Contagem()
{
contagem--;
if(contagem > 0)
{
new string[30];
format(string,sizeof(string),"%i",contagem);
GameTextForAll(string,1000,0);
}
else
{
GameTextForAll("~g~ Acelera !",3000,0);
KillTimer(timer);
}
return true;
}