Nekem OnPlayerUpdate alatt van egy cucc ami kiírja a pontos idõt és pontos dátumot a \"worldtime\" rcon parancsot használva, tehát szerintem menni fog itt is:
[pawn]public OnPlayerUpdate(playerid)
{
new h,m,s;
gettime(h,m,s);
if(h >= 8 && h < 18)
{
//Kapu kinyitása
}
else if(h >= 18 || h < 6)
{
//Kapu bezárása
}
return 1;
}[/pawn]