24.12.2011, 00:56
How can i make it so all players see the same world time. I have the clock on but one player sees 12:00 and another see 21:12
SetWorldTime(12);
Will this make the time keep going from day to day with everyone seeing the same time?
|
public OnGameModeInit()
{
SetTimer("Hor", 60000*60, true);
return 1;
}
forward Hor();
public Hor()
{
static h, m, s;
gettime(h, m,s);
#pragma unused m,s
SetWorldTime(h);
return 1;
}