Browse Source

Added Quake World

pull/1477/head
Daniel Gibbs 8 years ago
parent
commit
fffde74161
  1. 21
      lgsm/functions/info_config.sh

21
lgsm/functions/info_config.sh

@ -301,6 +301,24 @@ fn_info_config_projectzomboid(){
fi
}
fn_info_config_quakeworld(){
if [ ! -f "${servercfgfullpath}" ]; then
rconpassword="${unavailable}"
servername="${unavailable}"
serverpassword="${unavailable}"
maxplayers="${zero}"
else
rconpassword=$(grep "rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
servername=$(grep "hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
maxplayers=$(grep "maxclients" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
# Not Set
rconpassword=${rconpassword:-"NOT SET"}
servername=${servername:-"NOT SET"}
maxplayers=${maxplayers:-"0"}
fi
}
fn_info_config_quake2(){
if [ ! -f "${servercfgfullpath}" ]; then
rconpassword="${unavailable}"
@ -732,6 +750,9 @@ elif [ "${engine}" == "dontstarve" ]; then
# Factorio
elif [ "${gamename}" == "Factorio" ]; then
fn_info_config_factorio
# QuakeWorld
elif [ "${gamename}" == "QuakeWorld" ]; then
fn_info_config_quakeworld
# Quake 2
elif [ "${gamename}" == "Quake 2" ]; then
fn_info_config_quake2

Loading…
Cancel
Save