30.03.2019, 11:15
Quote:
Se eu usar um time para todos, quando eu bloquear o time de um nгo bloquearia de todos tbm ?
Jб coloquei isso, mas nгo adianta. |
PHP Code:
public OnGameModeInit()
{
SetTimer("UpGeral", 1000, false);
return 1;
}
forward UpGeral();
public UpGeral()
{
for(new i; i != MAX_PLAYERS; ++i)
{
if(IsPlayerConnected(i))
{
if(PlayerInfo[i][SegundoUP] > 0 && PlayerInfo[i][Preso] == 0)
{
pInfo[i][SegundoUP] --;
}
if(PlayerInfo[i][SegundoUP] == 0 && PlayerInfo[i][MinutosUP] >= 1 && PlayerInfo[i][Preso] == 0)
{
pInfo[i][SegundoUP] = 59;
pInfo[i][MinutosUP] --;
}
if(PlayerInfo[i][MinutosUP] == 0 && PlayerInfo[i][SegundosUP] == 0)
{
pInfo[i][SegundoUP] = 59;
pInfo[i][MinutosUP] = 9;
UPLevel(i);
//Upou
}
}
}
SetTimer("UpGeral", 1000, false);
}