12.06.2013, 16:50
pawn Код:
new M[3];
forward MudarHorario();//topo
SetTimer("MudarHorario",1000,true); //OnGameModeInit
public MudarHorario(){//final do gm
gettime(M[0],M[1], M[2]);
if(M[0] == 5 && M[1] >= 0 && M[1] <= 59) return SetWorldTime(Tempo das 5 horas aqui);
if(M[0] == 7 && M[1] >= 0 && M[1] <= 59) return SetWorldTime(Tempo das 7 horas aqui);
return 1;
}