ExO
Admin
- 5,119
- 2014
- 1,639
Another Linux guide.
This one shows you how to setup an automatic worldserver restarter for your wow private server.
This means that your Linux server will automatically restart upon crashes / server restarts.
1) Create a file called eg. restarter.sh
Insert the following in the file:
#!/bin/bash
while :
do
./worldserver
sleep 5
done
2) Save the file, remember to save it as .sh (like .bat)
3) Use this .sh file on your screen session eg.
Tutorial below:
https://www.emucoach.com/showthread.php/4410-Linux-How-to-start-a-screen-session-WoW-Server
This one shows you how to setup an automatic worldserver restarter for your wow private server.
This means that your Linux server will automatically restart upon crashes / server restarts.
1) Create a file called eg. restarter.sh
Insert the following in the file:
#!/bin/bash
while :
do
./worldserver
sleep 5
done
2) Save the file, remember to save it as .sh (like .bat)
3) Use this .sh file on your screen session eg.
Tutorial below:
https://www.emucoach.com/showthread.php/4410-Linux-How-to-start-a-screen-session-WoW-Server