05.10.2010, 17:55
Usa Isto Como base ta mastigadinho jб e so engoli
Coloca isso no topo do GM
Coloca isso abaiso do comando /roubar
coloca no fim do GM
Coloca isso no topo do GM
pawn Код:
new Tempo[playerid] = 60;
new Timertempo
forward Contagem(playerid);
pawn Код:
Timertempo = SetTimer("Contagem"),1000,true);
pawn Код:
Contagem()
{
new String[25];
format(String, sizeof(String), "Restam %d Segundos", Tempo[playerid]);
GameTextForPlayer(playerid, String, 1000, 3);
if(Tempo == 0)
{
killTimer(Timertempo);
return 1;
}
return Tempo[playerid]--;
}