18.07.2013, 20:44
ainda ta a mesma coisa vou postar como ele funciona
pawn Код:
new Cadeia1[MAX_PLAYERS];
new TempoCadeia1[MAX_PLAYERS];
SetTimerEx("AtualizarCadeia1",1000,1,"i",i);
forward ChamarCadeia(playerid);
public ChamarCadeia(playerid){
if(TempoCadeia1[playerid] < 1) return false;
if(Cadeia1[playerid] == 1 && TempoCadeia1[playerid] >= 1){
TempoCadeia1[playerid]--;
format(file2,sizeof(file2),"~n~ ~n~ ~n~ ~n~ ~g~Preso: ~w~%d",TempoCadeia1[playerid]);
GameTextForPlayer(playerid,file2,2000,0);
if(TempoCadeia1[playerid] == 0){
Cadeia1[playerid] = 0;
GameTextForPlayer(playerid, "~w~ Livre", 5000, 6);
SpawnPlayer(playerid);
KillTimer(SetTimerEx("ChamarCadeia", 1000, true, "i", playerid));
}
}
return true;
}