09.02.2011, 20:06
Isto deve resolver o seu problema:
Se houver problemas com o cуdigo acima, poste a sua callback OtherTime.
Espero ter ajudado
pawn Код:
//No OnGameModeInit:
SetTimer("PassarTempoPrisao", 1000, true);
//No Final do GM:
forward PassarTempoPrisao();
public PassarTempoPrisao()
{
for(new x = 0; x < MAX_PLAYERS; x++)
{
if(PlayerInfo[x][pJailed] > 0)
{
PlayerInfo[x][pJailTime]--;
}
}
return 1;
}
Espero ter ajudado