12.06.2013, 17:10
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] >= 8 && M[0] <= 16) return SetWorldTime(12);
if(M[0] >= 17 && M[0] <= 18) return SetWorldTime(20);
if(M[0] >= 19 && M[0] <= 7) return SetWorldTime(0);
return 1;
}