2 changed files with 0 additions and 36 deletions
@ -1,30 +0,0 @@ |
|||||
#!/bin/bash |
|
||||
# LGSM fix_ut99.sh function |
|
||||
# Author: Daniel Gibbs |
|
||||
# Website: https://gameservermanagers.com |
|
||||
# Description: Resolves various issues with Unreal Tournament 99. |
|
||||
|
|
||||
local commandname="FIX" |
|
||||
local commandaction="Fix" |
|
||||
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|
||||
|
|
||||
echo "${servercfgfullpath}" |
|
||||
echo "enabling UdpServerUplink." |
|
||||
{ |
|
||||
echo "[IpServer.UdpServerUplink]" |
|
||||
echo "DoUplink=True" |
|
||||
echo "UpdateMinutes=1" |
|
||||
echo "MasterServerAddress=unreal.epicgames.com" |
|
||||
echo "MasterServerPort=27900" |
|
||||
echo "Region=0" |
|
||||
}| tee -a "${servercfgfullpath}" > /dev/null 2>&1 |
|
||||
sleep 1 |
|
||||
echo "removing dead gamespy.com master server." |
|
||||
sed -i '/master0.gamespy.com/d' "${servercfgfullpath}" |
|
||||
sleep 1 |
|
||||
echo "removing dead mplayer.com master server." |
|
||||
sed -i '/master.mplayer.com/d' "${servercfgfullpath}" |
|
||||
sleep 1 |
|
||||
echo "inserting qtracker.com master server." |
|
||||
sed -i '65i\ServerActors=IpServer.UdpServerUplink MasterServerAddress=master.qtracker.com MasterServerPort=27900' "${servercfgfullpath}" |
|
||||
echo "" |
|
Loading…
Reference in new issue