ID:164027
 
Ive been havign severe promblems with my game i try to leave it up, but after awhile of hosting, maybe a few hrs, the server freezes and nothing can be done, What can be causing this? Inf loops? Too many objects? or what? =X (no errors are shown)
Most likely loops. Try profiling the world to see what proc is running the most/using the most cpu..I don't have Dream Seeker on the computer I'm on but you should be able to find it.
In response to Mecha Destroyer JD
Well, i have a time proc that continuously runs... while the server is up...


proc/Time()
START
sleep 140
hour+=1
if(hour==22)
spawn hour22()
if(hour==7)
spawn hour7()
if(hour>=24)
spawn hour24()
if(month==1)
world.status="day [day] of Spring, [ppl] ppl playing."
if(month==2)
world.status="day [day] of Summer, [ppl] ppl playing."
if(month==3)
world.status="day [day] of Fall, [ppl] ppl playing."
if(month==4)
world.status="day [day] of Winter, [ppl] ppl playing."
goto START

Could this be doing it? :(, if so... how do i fix smthing like that.