what bash script u use for run server?
Hi, i was thinking use a script for run server, but i have any doubts... if u use
#!/bin/sh ./world & ./zone & ./zone & ./zone & ./zone & I get all things on same terminal, how can i get each zone in one independent terminal? I also would like to know how many zones are u running for a stable server with 10 players online? Thank you in advance! |
I use only one script with eqemu 0.6.6 but 2 windows (for see log more clear, even if i have log files).
Code:
#!/bin/sh I define eqlaunch name with zone in www facility in browser (127.0.0.1:9080) I use ./eqlaunch NameOfLauncher in a second windows. |
Quote:
Try this: #!/bin/sh #change this to where ever your server binaries are GAMEDIR=/eqemu/server/bin #Check world isnt already running. # grep returns 1 of world not found, so ! $? should be zero ps aux | grep world >> /dev/null if [ ! $? ] ; then cd $GAMEDIR xterm -e ./world & xterm -e ./zone & xterm -e ./zone & xterm -e ./zone & xterm -e ./zone & fi |
here is mine
Here is mine i just got it working on debian sarge
Code:
#!/bin/sh |
you should not be starting zones yourself anymore, you sould just start the launcher and set it up in world HTTP to start zones.
|
All times are GMT -4. The time now is 04:41 PM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.