Here is the start up script(s) that I use to keep the server running. Feel free to comment or modify as your heart desires.<br><br>Script: /etc/rc.d/init.d/games-user-user_ut3<br><br>#!/bin/bash<br># Source function library.
<br>. /etc/init.d/functions<br><br>export LD_LIBRARY_PATH=/usr/games/instances/user/user_ut3<br><br>RETVAL=0<br><br>start() {<br>&nbsp;&nbsp;&nbsp; # Start daemons.<br>&nbsp;&nbsp;&nbsp; su -c &quot;/usr/games/instances/user/user_ut3/user_ut3-start.sh
&quot; - games<br>&nbsp;&nbsp;&nbsp; sleep .2<br>&nbsp;&nbsp;&nbsp; if [ -e /usr/games/instances/user/user_ut3/user_ut3.err ]<br>&nbsp;&nbsp;&nbsp; then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rm -f /usr/games/instances/user/user_ut3/user_ut3.err<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; action $&quot;Starting games-user-user_ut3: &quot; /bin/false
<br>&nbsp;&nbsp;&nbsp; else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; action $&quot;Starting games-user-user_ut3: &quot; /bin/true<br>&nbsp;&nbsp;&nbsp; fi<br>return $RETVAL<br>}<br><br>stop() {<br>&nbsp;&nbsp;&nbsp; # Stop daemons.<br>&nbsp;&nbsp;&nbsp; /bin/kill -9 `/bin/ps -eo pid,cmd | /bin/grep SCREEN | /bin/grep &quot;games-user-user_ut3 -t&quot; | /bin/sed -re&#39;s/^[ ]*//g&#39; | /bin/cut -d &quot; &quot; -f 1` &amp;
<br>&nbsp;&nbsp;&nbsp; RETVAL=$?<br>&nbsp;&nbsp;&nbsp; if [ $RETVAL -eq 0 ];<br>&nbsp;&nbsp;&nbsp; then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; action $&quot;Shutting down games-user-user_ut3: &quot; /bin/true<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; su -c &quot;/usr/bin/screen -wipe &gt; /dev/null 2&gt;&amp;1&quot; - games
<br>&nbsp;&nbsp;&nbsp; else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; action $&quot;Shutting down games-user-user_ut3: &quot; /bin/false<br>&nbsp;&nbsp;&nbsp; fi<br>&nbsp;&nbsp;&nbsp; rm -f /var/run/games/games-user-user_ut3.pid<br>&nbsp;&nbsp;&nbsp; return $RETVAL<br>}<br><br># See how we were called.<br>case &quot;$1&quot; in
<br>start)<br>&nbsp;&nbsp;&nbsp; start<br>&nbsp;&nbsp;&nbsp; ;;<br>stop)<br>&nbsp;&nbsp;&nbsp; stop<br>&nbsp;&nbsp;&nbsp; ;;<br>restart)<br><br># End of Script<br><br>Script /usr/games/instances/user/user_ut3/user_ut3-start.sh<br><br>#!/bin/bash<br><br>export LD_LIBRARY_PATH=/usr/games/instances/user/user_ut3
<br><br>/usr/bin/screen -d -m -S games-user-user_ut3 -t games-user-user_ut3 /usr/games/instances/user/user_ut3/user_ut3.sh &amp;<br><br>#End of Script<br><br>Script /usr/games/instances/user/user_ut3/user_ut3.sh<br><br>#!/bin/bash
<br><br># This infinite loop should keep servers restarting in the event of a crash.<br># Only exit when the exit file exists.<br><br># Source function library.<br>. /etc/init.d/functions<br><br>while true; do<br>&nbsp;&nbsp;&nbsp; command_line=`./ut3 server DM-ShangriLa?MaxPlayers=16?MinNetPlayers=0?NumPublicConnections=16?NumPrivateConnections=0?NumOpenPublicConnections=16?NumOpenPrivateConnections=0?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?bAllowJoinViaPresence=True?bUsesArbitration=False?bIsDedicated=True?bIsListPlay=False?OwningPlayerName=?PingInMs=0?AverageSkillRating=
0.000000?GameMode=0?Difficulty=2?PureServer=1?LockedServer=0?Campaign=0?ForceRespawn=1?CustomMapName=DM-ShangriLa?CustomGameMode=UTGame.UTDeathmatch?GoalScore=20?TimeLimit=20?ServerDescription=077000080000067000032000085000084000051000032000083000101000114000118000101000114000?NumPlay=5?game=
UTGame.UTDeathmatch?name=XXXXX?alias=XXXXX -log=DedicatedServer.log -Login=XXXXX -Password=XXXXX -multihome=xxx.xxx.xxx.xxx -port=7877 -nohomedir`<br>&nbsp;&nbsp;&nbsp; # Start the program.<br>&nbsp;&nbsp;&nbsp; chmod 0774 /usr/games/instances/user/user_ut3/Binaries
<br>&nbsp;&nbsp;&nbsp; cd /usr/games/instances/user/user_ut3/Binaries &amp;&amp; $command_line<br>done<br><br>#End of Script<br><br><br>I generated my Server Description by using this UT3 Server Description Generator, <a href="http://www.penetrate.nl/UT3ServerDesc.php">
http://www.penetrate.nl/UT3ServerDesc.php</a><br>But my Server Name comes up blank in the Server Browser.<br>Here is a link to my server from <a href="http://gametracker.com">gametracker.com</a>, <a href="http://www.gametracker.com/server_info/64.34.161.48:7877/">
http://www.gametracker.com/server_info/64.34.161.48:7877/</a><br><br>I hope you find the startup scripts helpful and any solutions to the blank Server Description would be great.<br><br>Rick<br>