Posts: 133
Threads: 18
Joined: Dec 2007
Reputation:
0
Heya guys...
On my server is time freezed... always is 12.00 anyone knows how can i change this so it wont be freezed?
Posts: 221
Threads: 17
Joined: May 2009
Reputation:
0
Its most likely the actually time script not an external problem... try getting a new one.
Posts: 651
Threads: 15
Joined: Nov 2007
Reputation:
0
forward setWorldTime();
static stock
worldTime;
public setWorldTime(){
if(worldTime > 23)
worldTime = 0;
SetWorldTime(worldTime++,0);
return true;
}
public OnGameModeInit(){
SetTimer("setWorldTime",1,1000*60);
return true;
}