20.07.2011, 22:15
Not sure if time passes on its own....
pawn Код:
new KeepNight = 1;
OnGameModeInit()
{
SetNight();
}
forward SetNight();
public SetNight()
{
SetWorldTime(0);
if (KeepNight)
{
SetTimer("SetNight", 120000, 0);
}
return 1;
}