|
@ -36,7 +36,7 @@ fn_userinputconfig(){ |
|
|
fn_script_log_info "changing rconpassword." |
|
|
fn_script_log_info "changing rconpassword." |
|
|
sed -i "s/\"<rconpassword>\"/\"${rconpass}\"/g" "${servercfgfullpath}" |
|
|
sed -i "s/\"<rconpassword>\"/\"${rconpass}\"/g" "${servercfgfullpath}" |
|
|
sleep 1 |
|
|
sleep 1 |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
fn_arma3config(){ |
|
|
fn_arma3config(){ |
|
|
fn_defaultconfig |
|
|
fn_defaultconfig |
|
@ -165,6 +165,30 @@ fn_unreal2config(){ |
|
|
echo "" |
|
|
echo "" |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
fn_unrealtournament(){ |
|
|
|
|
|
# allow user to input server name and password |
|
|
|
|
|
if [ -z "${autoinstall}" ]; then |
|
|
|
|
|
echo "" |
|
|
|
|
|
echo "Configuring ${gamename} Server" |
|
|
|
|
|
echo "=================================" |
|
|
|
|
|
sleep 1 |
|
|
|
|
|
read -p "Enter server name: " servername |
|
|
|
|
|
read -p "Enter rcon password: " rconpass |
|
|
|
|
|
else |
|
|
|
|
|
servername="${servicename}" |
|
|
|
|
|
rconpass="rconpassword" |
|
|
|
|
|
fi |
|
|
|
|
|
echo "changing hostname." |
|
|
|
|
|
fn_script_log_info "changing hostname." |
|
|
|
|
|
sed -i "s/\"<hostname>\"/\"${servername}\"/g" "${servercfgdir}/Game.ini" |
|
|
|
|
|
sleep 1 |
|
|
|
|
|
echo "changing rconpassword." |
|
|
|
|
|
fn_script_log_info "changing rconpassword." |
|
|
|
|
|
sed -i "s/\"<rconpassword>\"/\"${rconpass}\"/g" "${servercfgdir}/Engine.ini" |
|
|
|
|
|
sleep 1 |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
echo "" |
|
|
echo "" |
|
|
if [ "${gamename}" != "Hurtworld" ]; then |
|
|
if [ "${gamename}" != "Hurtworld" ]; then |
|
|
echo "Creating Configs" |
|
|
echo "Creating Configs" |
|
@ -257,6 +281,13 @@ elif [ "${gamename}" == "Double Action: Boogaloo" ]; then |
|
|
fn_sourceconfig |
|
|
fn_sourceconfig |
|
|
elif [ "${gamename}" == "Empires Mod" ]; then |
|
|
elif [ "${gamename}" == "Empires Mod" ]; then |
|
|
fn_defaultconfig |
|
|
fn_defaultconfig |
|
|
|
|
|
elif [ "${gamename}" == "Enemy Territory" ]; then |
|
|
|
|
|
echo -e "downloading lgsm-default.cfg...\c" |
|
|
|
|
|
wget -N /dev/null ${githuburl}/EnemyTerritory/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq |
|
|
|
|
|
sleep 1 |
|
|
|
|
|
fn_defaultconfig |
|
|
|
|
|
fn_userinputconfig |
|
|
|
|
|
echo "" |
|
|
elif [ "${gamename}" == "Fistful of Frags" ]; then |
|
|
elif [ "${gamename}" == "Fistful of Frags" ]; then |
|
|
echo -e "downloading lgsm-default.cfg...\c" |
|
|
echo -e "downloading lgsm-default.cfg...\c" |
|
|
wget -N /dev/null ${githuburl}/FistfulOfFrags/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq |
|
|
wget -N /dev/null ${githuburl}/FistfulOfFrags/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq |
|
@ -387,6 +418,13 @@ elif [ "${gamename}" == "Terraria" ]; then |
|
|
wget -N /dev/null ${githuburl}/Terraria/cfg/lgsm-default.txt 2>&1 | grep -F HTTP | cut -c45- | uniq |
|
|
wget -N /dev/null ${githuburl}/Terraria/cfg/lgsm-default.txt 2>&1 | grep -F HTTP | cut -c45- | uniq |
|
|
sleep 1 |
|
|
sleep 1 |
|
|
fn_defaultconfig |
|
|
fn_defaultconfig |
|
|
|
|
|
elif [ "${gamename}" == "Unreal Tournament" ]; then |
|
|
|
|
|
echo -e "downloading Engine.ini...\c" |
|
|
|
|
|
wget -N /dev/null ${githuburl}/UnrealTournament/cfg/Engine.ini 2>&1 | grep -F HTTP | cut -c45- | uniq |
|
|
|
|
|
echo -e "downloading Game.ini...\c" |
|
|
|
|
|
wget -N /dev/null ${githuburl}/UnrealTournament/cfg/Game.ini 2>&1 | grep -F HTTP | cut -c45- | uniq |
|
|
|
|
|
sleep 1 |
|
|
|
|
|
fn_unrealtournament |
|
|
elif [ "${gamename}" == "Unreal Tournament 2004" ]; then |
|
|
elif [ "${gamename}" == "Unreal Tournament 2004" ]; then |
|
|
fn_unreal2config |
|
|
fn_unreal2config |
|
|
elif [ "${gamename}" == "Unreal Tournament 99" ]; then |
|
|
elif [ "${gamename}" == "Unreal Tournament 99" ]; then |
|
|