|
|
Technical Support Questions about game technical support to the users of the community |
|
Thread Tools | Display Modes |
03-27-2007, 08:01 AM | #11 |
Pledge
Join Date: Mar 2007
Posts: 46
|
With the server going down shortly after you leave the office it's a pain for users in another timezone
Isn't there a way to use another process to watch the game and restart accordingly? Or just restart every 2 hours during the night until the server is somewhat stable |
03-27-2007, 08:03 AM | #12 |
Count
Join Date: Dec 2006
Posts: 1,544
|
yeah like a automatic restart or something. that would help
|
03-27-2007, 01:40 PM | #13 |
NGD·Studios
Join Date: Mar 2006
Posts: 892
|
there is an auto restart feature in place of course... the only problem is that it is not compatible with the debugging tool we are using to find the bug responsible for the crash in the first place...
we just need to be patient... we are very sorry for the inconvenience. |
03-29-2007, 12:06 PM | #14 |
Pledge
Join Date: Dec 2006
Posts: 2
|
most easy auto restart feaure, and compatible with debug tool:
Code:
#!/bin/sh while true do ./regnum_server sleep 60 done Code:
#!/bin/sh while true do if ./regnum_server_pinger then kill `cat regnum_server.pid` # wait for process close ./regnum_server_starter fi sleep 60 done |
|
|