Posts: 7
Threads: 2
Joined: Jan 2005
Reputation:
0
Are they supposed to restart themselves on a "quit" command?
Posts: 20
Threads: 2
Joined: Jan 2005
Reputation:
0
01-19-2005, 01:58 AM
(This post was last modified: 01-19-2005, 01:58 AM by Sprinter.)
Try out with this start script:
#!/bin/bash
while true;
do
export LD_LIBRARY_PATH=/path/to/your/srcds_l/:$LD_LIBRARY_PATH
./srcds_run -console -game cstrike +map <your map> +exec server.cfg +maxplayers xx -autoupdate -port <your port> +ip <your ip>
date >> crash.txt
clear
echo "|-----|"
sleep 1
clear
echo "|+----|"
sleep 1
clear
echo "|++---|"
sleep 1
clear
echo "|+++--|"
sleep 1
clear
echo "|++++-|"
sleep 1
clear
echo "|+++++|"
echo ""
echo ""
echo "Server reinitialization..."
echo ""
done
When your server crashes, this start script should get it online again.
Posts: 10
Threads: 5
Joined: Jan 2005
Reputation:
0
Sprinter you are my new god, thank you for all.