gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1140 lines
50 KiB
1140 lines
50 KiB
#!/bin/bash
|
|
# LinuxGSM info_config.sh function
|
|
# Author: Daniel Gibbs
|
|
# Contributor: UltimateByte
|
|
# Website: https://linuxgsm.com
|
|
# Description: Gets specific details from config files.
|
|
|
|
local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
## Examples of filtering to get info from config files
|
|
# sed 's/foo//g' - remove foo
|
|
# tr -cd '[:digit:]' leave only digits
|
|
# tr -d '=\"; ' remove selected characters =\";
|
|
# grep -v "foo" filter out lines that contain foo
|
|
# cut -f1 -d "/" remove everything after /
|
|
|
|
fn_info_config_justcause2(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
port="${zero}"
|
|
queryport="${zero}"
|
|
else
|
|
servername=$(grep "Name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/Name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverdescription=$(grep "Description" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/Description//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "Password" "${servercfgfullpath}" | sed -e 's/^ *//g' -e '/^--/d' -e 's/Password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "MaxPlayers" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]')
|
|
port=$(grep "BindPort" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]')
|
|
queryport="${port}"
|
|
ip=$(grep "BindIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/BindIP//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
ipsetinconfig=1
|
|
ipinconfigvar="BindIP"
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"0"}
|
|
port=${port:-"0"}
|
|
queryport=${queryport:-"0"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_justcause3(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverdescription="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
port="${zero}"
|
|
queryPort="${zero}"
|
|
steamport="${zero}"
|
|
tickrate="${zero}"
|
|
else
|
|
servername=$(grep "name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverdescription=$(grep "description" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/description//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "\"maxPlayers\"" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
port=$(grep "\"port\"" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
queryport=$(grep "\"queryPort\"" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
steamport=$(grep "\"steamPort\"" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
tickrate=$(grep "\"maxTickRate\"" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
|
|
ip=$(grep "host" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/host//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
ipsetinconfig=1
|
|
ipinconfigvar="host"
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverdescription=${serverdescription:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers=:-"0"}
|
|
port=${port=:-"0"}
|
|
queryport=${queryport=:-"0"}
|
|
steamport=${steamport=:-"0"}
|
|
tickrate=${tickrate=:-"0"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_ark(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
else
|
|
servername=$(grep "SessionName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/SessionName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_ballistic_overkill(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
port="${zero}"
|
|
queryport="${zero}"
|
|
maxplayers="${unavailable}"
|
|
else
|
|
servername=$(grep "ServerName=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/ServerName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "Password=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/Password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
port=$(grep "ServerPort=" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
queryport=$((port + 1))
|
|
maxplayers=$(grep "MaxPlayers=" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
port=${port:-"0"}
|
|
queryport=${queryport:-"0"}
|
|
maxplayers=${maxplayers:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_battalion1944(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
else
|
|
servername=$(grep "ServerName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/ServerName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "Password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/Password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_bf1942(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
port="${zero}"
|
|
queryport="${zero}"
|
|
else
|
|
|
|
servername=$(grep "game.serverName " "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/game.serverName //g' | tr -d '=\";,:' | xargs)
|
|
serverpassword=$(grep "game.serverPassword" "${servercfgfullpath}" | sed -e 's/^ *//g' -e '/^--/d' -e 's/game.serverPassword//g' | tr -d '=\";,:' | xargs)
|
|
maxplayers=$(grep "game.serverMaxPlayers" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]')
|
|
port=$(grep "game.serverPort" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]')
|
|
queryport="22000"
|
|
|
|
ip=$(grep "game.serverIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/game.serverIP//g' | tr -d '=\";,:' | xargs)
|
|
ipsetinconfig=1
|
|
ipinconfigvar="game.serverIP"
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"0"}
|
|
port=${port:-"0"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_cod(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
rconpassword="${unavailable}"
|
|
else
|
|
servername=$(grep "sv_hostname " "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname //g' | tr -d '=\";,:' | xargs)
|
|
rconpassword=$(grep "rconpassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set rconpassword //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
rconpassword=${rconpassword=:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_cod2(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
rconpassword="${unavailable}"
|
|
else
|
|
servername=$(grep "sv_hostname " "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname //g' | tr -d '=\";,:' | xargs)
|
|
rconpassword=$(grep "rconpassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set rconpassword //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
rconpassword=${rconpassword=:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_cod4(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
rconpassword="${unavailable}"
|
|
else
|
|
servername=$(grep "sv_hostname " "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname //g' | tr -d '=\";,:' | xargs)
|
|
rconpassword=$(grep "rconpassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set rconpassword //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
rconpassword=${rconpassword=:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_codwaw(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
rconpassword="${unavailable}"
|
|
else
|
|
servername=$(grep "sv_hostname " "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname //g' | tr -d '=\";,:' | xargs)
|
|
rconpassword=$(grep "rconpassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set rconpassword //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
rconpassword=${rconpassword=:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_dontstarve(){
|
|
if [ ! -f "${clustercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
gamemode="${unavailable}"
|
|
tickrate="${zero}"
|
|
masterport="${zero}"
|
|
else
|
|
servername=$(grep "cluster_name" "${clustercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/cluster_name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "cluster_password" "${clustercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/cluster_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "max_players" "${clustercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
gamemode=$(grep "game_mode" "${clustercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/game_mode//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
tickrate=$(grep "tick_rate" "${clustercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
masterport=$(grep "master_port" "${clustercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
|
|
ip=$(grep "bind_ip" "${clustercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/bind_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
ipsetinconfig=1
|
|
ipinconfigvar="bind_ip"
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"0"}
|
|
gamemode=${gamemode:-"NOT SET"}
|
|
tickrate=${tickrate:-"0"}
|
|
masterport=${masterport:-"0"}
|
|
fi
|
|
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
port="${zero}"
|
|
steamauthenticationport="${zero}"
|
|
steammasterserverport="${zero}"
|
|
else
|
|
port=$(grep "server_port" "${servercfgfullpath}" | grep "^server_port" | grep -v "#" | tr -cd '[:digit:]')
|
|
steamauthenticationport=$(grep "authentication_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
steammasterserverport=$(grep "master_server_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
|
|
# Not Set
|
|
port=${port:-"0"}
|
|
steamauthenticationport=${steamauthenticationport:-"0"}
|
|
steammasterserverport=${steammasterserverport:-"0"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_eco(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
gamemode="${unavailable}"
|
|
tickrate="${zero}"
|
|
port="${zero}"
|
|
webadminport="${zero}"
|
|
public=""
|
|
else
|
|
servername=$(grep "Description" "${servercfgdir}/Network.eco" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/Description//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "Password" "${servercfgdir}/Network.eco" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/Password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "MaxConnections" "${servercfgdir}/Network.eco" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/MaxConnections//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
port=$(grep "\"GameServerPort\"" "${servercfgdir}/Network.eco" | tr -cd '[:digit:]')
|
|
webadminport=$(grep "\"WebServerPort\"" "${servercfgdir}/Network.eco" | tr -cd '[:digit:]')
|
|
public=$(grep "PublicServer" "${servercfgdir}/Network.eco" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/PublicServer//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers=:-"0"}
|
|
port=${port=:-"0"}
|
|
webadminport=${webadminport=:-"0"}
|
|
public=${public=:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_factorio(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="Factorio Server"
|
|
serverpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
else
|
|
servername="Factorio Server"
|
|
serverpassword=$(grep "game_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/game_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "\"max_players\"" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers=:-"0"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_minecraft(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
rconpassword="${unavailable}"
|
|
rconport="${zero}"
|
|
maxplayers="${zero}"
|
|
port="${zero}"
|
|
gamemode="${unavailable}"
|
|
gameworld="${unavailable}"
|
|
else
|
|
servername=$(grep "motd" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/motd//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
rconpassword=$(grep "rcon.password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/rcon.password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
rconport=$(grep "rcon.port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
maxplayers=$(grep "max-players" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
port=$(grep "server-port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
gamemode=$(grep "gamemode" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
gameworld=$(grep "level-name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/level-name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
|
|
ip=$(grep "server-ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/server-ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
ipsetinconfig=1
|
|
ipinconfigvar="server-ip"
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
rconpassword=${rconpassword:-"NOT SET"}
|
|
rconport=${rconport:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"NOT SET"}
|
|
port=${port:-"NOT SET"}
|
|
gamemode=${gamemode:-"NOT SET"}
|
|
gameworld=${gameworld:-"NOT SET"}
|
|
|
|
fi
|
|
}
|
|
|
|
fn_info_config_projectcars(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
port="${zero}"
|
|
queryport="${zero}"
|
|
steamport="${zero}"
|
|
else
|
|
servername=$(grep "name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "password " "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "MaxPlayers" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
port=$(grep "hostPort" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
queryport=$(grep "queryPort" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
steamport=$(grep "steamPort" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"NOT SET"}
|
|
port=${port:-"NOT SET"}
|
|
queryport=${queryport:-"NOT SET"}
|
|
steamport=${steamport:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_projectzomboid(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
rconpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
port="${zero}"
|
|
gameworld="${unavailable}"
|
|
else
|
|
servername=$(grep "PublicName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/PublicName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "Password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' | grep "^Password" | sed -e '/^#/d' -e 's/Password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
rconpassword=$(grep "RCONPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/RCONPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "MaxPlayers" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
port=$(grep "DefaultPort" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
gameworld=$(grep "Map" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' | grep "^Map" | sed -e '/^#/d' -e 's/Map//g' | tr -d '=\";' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
rconpassword=${rconpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"NOT SET"}
|
|
port=${port:-"NOT SET"}
|
|
gameworld=${gameworld:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_quakeworld(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
rconpassword="${unavailable}"
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
port="${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}"
|
|
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_quake3(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
rconpassword="${unavailable}"
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
else
|
|
rconpassword=$(grep "zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
servername=$(grep "sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "rconpassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set rconpassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "sv_maxclients" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
|
|
# Not Set
|
|
rconpassword=${rconpassword:-"NOT SET"}
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"0"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_quakelive(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
rconpassword="${unavailable}"
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
port="${zero}"
|
|
queryport="${zero}"
|
|
rconport="${zero}"
|
|
statsport="${zero}"
|
|
else
|
|
rconpassword=$(grep "zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
servername=$(grep "sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "sv_maxClients" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
port=$(grep "net_port" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
queryport="${port}"
|
|
rconport=$(grep "zmq_rcon_port" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
statsport=$(grep "zmq_stats_port" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
|
|
ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
ipsetinconfig=1
|
|
ipinconfigvar="set net_ip"
|
|
|
|
# Not Set
|
|
rconpassword=${rconpassword:-"NOT SET"}
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"0"}
|
|
port=${port:-"0"}
|
|
queryport=${queryport:-"0"}
|
|
rconport=${rconport:-"0"}
|
|
statsport=${statsport:-"0"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_realvirtuality(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
adminpassword="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
else
|
|
servername=$(grep "hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
adminpassword=$(grep "passwordAdmin" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/passwordAdmin//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "maxPlayers" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
adminpassword=${adminpassword:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"0"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_risingworld(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
rconpassword="${unavailable}"
|
|
rconport="${zero}"
|
|
maxplayers="${zero}"
|
|
port="${zero}"
|
|
gamemode="${unavailable}"
|
|
gameworld="${unavailable}"
|
|
else
|
|
servername=$(grep "server_name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/server_name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "server_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/server_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
rconpassword=$(grep "rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
rconport=$(grep "rcon_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
maxplayers=$(grep "settings_max_players" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
port=$(grep "server_port" "${servercfgfullpath}" | grep -v "database_mysql_server_port" | grep -v "#" | tr -cd '[:digit:]')
|
|
gamemode=$(grep "gamemode" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
gameworld=$(grep "server_world_name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/server_world_name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
javaram=$(grep "server_memory" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/server_memory//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
ip=$(grep "server_ip" "${servercfgfullpath}" | grep -v "database_mysql_server_ip" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/server_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
ipsetinconfig=1
|
|
ipinconfigvar="server-ip"
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
rconpassword=${rconpassword:-"NOT SET"}
|
|
rconport=${rconport:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"NOT SET"}
|
|
port=${port:-"NOT SET"}
|
|
gamemode=${gamemode:-"NOT SET"}
|
|
gameworld=${gameworld:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_seriousengine35(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
rconpassword="${unavailable}"
|
|
gamemode="${unavailable}"
|
|
maxplayers="${zero}"
|
|
port="${zero}"
|
|
else
|
|
servername=$(grep "prj_strMultiplayerSessionName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/prj_strMultiplayerSessionName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
rconpassword=$(grep "rcts_strAdminPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/rcts_strAdminPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
gamemode=$(grep "gam_idGameMode" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/gam_idGameMode//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "gam_ctMaxPlayers" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
port=$(grep "prj_uwPort" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
rconpassword=${rconpassword:-"NOT SET"}
|
|
gamemode=${gamemode:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"0"}
|
|
port=${port:-"0"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_source(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
rconpassword="${unavailable}"
|
|
else
|
|
servername=$(grep "hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "sv_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/sv_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
rconpassword=$(grep "rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
rconpassword=${rconpassword:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_starbound(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
queryenabled="${unavailable}"
|
|
rconenabled="${unavailable}"
|
|
rconpassword="${unavailable}"
|
|
port="21025"
|
|
queryport="21025"
|
|
rconport="21026"
|
|
maxplayers="8"
|
|
else
|
|
servername=$(grep "serverName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/serverName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
queryenabled=$(grep "runQueryServer" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/runQueryServer//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
rconenabled=$(grep "runRconServer" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/runRconServer//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
rconpassword=$(grep "rconServerPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/rconServerPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
port=$(grep "gameServerPort" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
queryport=$(grep "queryServerPort" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
rconport=$(grep "rconServerPort" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
maxplayers=$(grep "maxPlayers" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
queryenabled=${queryenabled:-"NOT SET"}
|
|
rconenabled=${rconenabled:-"NOT SET"}
|
|
rconpassword=${rconpassword:-"NOT SET"}
|
|
port=${port:-"21025"}
|
|
queryport=${queryport:-"21025"}
|
|
rconport=${rconport:-"21026"}
|
|
maxplayers=${maxplayers:-"8"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_teamspeak3(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
dbplugin="${unavailable}"
|
|
port="9987"
|
|
queryport="10011"
|
|
fileport="30033"
|
|
else
|
|
dbplugin=$(grep "dbplugin=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/dbplugin=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
port=$(grep "default_voice_port" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
queryport=$(grep "query_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
fileport=$(grep "filetransfer_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
|
|
ip=$(grep "voice_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
ipsetinconfig=1
|
|
ipinconfigvar="voice_ip"
|
|
|
|
# Not Set
|
|
port=${port:-"9987"}
|
|
queryport=${queryport:-"10011"}
|
|
fileport=${fileport:-"30033"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_mumble(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
port="64738"
|
|
queryport="${port}"
|
|
servername="Mumble"
|
|
else
|
|
port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
queryport="${port}"
|
|
|
|
ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
ipsetinconfig=1
|
|
ipinconfigvar="voice_ip"
|
|
|
|
# Not Set
|
|
port=${port:-"64738"}
|
|
queryport=${queryport:-"64738"}
|
|
servername="Mumble Port ${port}"
|
|
fi
|
|
}
|
|
|
|
fn_info_config_samp(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="unnamed server"
|
|
serverpassword="${unavailable}"
|
|
rconpassword="${unavailable}"
|
|
port="7777"
|
|
maxplayers="50"
|
|
else
|
|
servername=$(grep "hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
rconpassword=$(grep "rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/^rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
port=$(grep "port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
maxplayers=$(grep "maxplayers" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
rconpassword=${rconpassword:-"NOT SET"}
|
|
port=${port:-"8303"}
|
|
maxplayers=${maxplayers:-"12"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_teeworlds(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="unnamed server"
|
|
serverpassword="${unavailable}"
|
|
rconpassword="${unavailable}"
|
|
port="8303"
|
|
maxplayers="12"
|
|
else
|
|
servername=$(grep "sv_name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/^sv_name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' | grep "^password" | sed -e '/^#/d' -e 's/^password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
rconpassword=$(grep "sv_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/^sv_rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
port=$(grep "sv_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
maxplayers=$(grep "sv_max_clients" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
rconpassword=${rconpassword:-"NOT SET"}
|
|
port=${port:-"8303"}
|
|
maxplayers=${maxplayers:-"12"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_terraria(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
port="${zero}"
|
|
gameworld="${unavailable}"
|
|
maxplayers="${zero}"
|
|
else
|
|
servername=$(grep "worldname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/worldname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
port=$(grep "port" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
gameworld=$(grep "world=" "${servercfgfullpath}" | grep -v "//" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/world=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "maxplayers" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
port=${port:-"0"}
|
|
gameworld=${gameworld:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"0"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_towerunite(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
maxplayers="${zero}"
|
|
else
|
|
servername=$(grep "ServerTitle" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/ServerTitle//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "MaxPlayers" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"0"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_unreal(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
adminpassword="${unavailable}"
|
|
port="${zero}"
|
|
queryport="${zero}"
|
|
gsqueryport="${zero}"
|
|
webadminenabled="${unavailable}"
|
|
webadminport="${zero}"
|
|
webadminuser="${unavailable}"
|
|
webadminpass="${unavailable}"
|
|
else
|
|
servername=$(grep "ServerName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/ServerName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//'| sed 's/\r$//')
|
|
serverpassword=$(grep "GamePassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/GamePassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//'| sed 's/\r$//')
|
|
adminpassword=$(grep "AdminPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//'| sed 's/\r$//')
|
|
port=$(grep "Port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' | grep "^Port" | grep -v "#" | tr -cd '[:digit:]')
|
|
queryport=$((port + 1))
|
|
gsqueryport=$(grep "OldQueryPortNumber" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
webadminenabled=$(grep "bEnabled" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/bEnabled//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//'| sed 's/\r$//')
|
|
webadminport=$(grep "ListenPort" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
|
|
if [ "${engine}" == "unreal" ]; then
|
|
webadminuser=$(grep "AdminUsername" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminUsername//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//'| sed 's/\r$//')
|
|
webadminpass=$(grep "UTServerAdmin.UTServerAdmin" "${servercfgfullpath}" -A 4 | grep "AdminPassword" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//'| sed 's/\r$//')
|
|
else
|
|
webadminuser=$(grep "AdminName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//'| sed 's/\r$//')
|
|
webadminpass="${adminpassword}"
|
|
fi
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
adminpassword=${adminpassword:-"NOT SET"}
|
|
port=${port:-"0"}
|
|
queryport=${queryport:-"0"}
|
|
gsqueryport=${gsqueryport:-"0"}
|
|
webadminenabled=${webadminenabled:-"NOT SET"}
|
|
webadminport=${webadminport:-"0"}
|
|
webadminuser=${webadminuser:-"NOT SET"}
|
|
webadminpass=${webadminpass:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_unreal3(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
adminpassword="${unavailable}"
|
|
webadminenabled="${unavailable}"
|
|
webadminport="${zero}"
|
|
webadminuser="${unavailable}"
|
|
webadminpass="${unavailable}"
|
|
else
|
|
servername=$(grep "ServerName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/ServerName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
adminpassword=$(grep "AdminPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
webadminenabled=$(grep "bEnabled" "${servercfgdir}/UTWeb.ini" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/bEnabled//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
webadminport=$(grep "ListenPort" "${servercfgdir}/UTWeb.ini" | grep -v "#" | tr -cd '[:digit:]')
|
|
webadminuser="Admin"
|
|
webadminpass=$(grep "AdminPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
adminpassword=${adminpassword:-"NOT SET"}
|
|
port=${port:-"0"}
|
|
webadminenabled=${webadminenabled:-"NOT SET"}
|
|
webadminport=${webadminport:-"0"}
|
|
webadminuser=${webadminuser:-"NOT SET"}
|
|
webadminpass=${webadminpass:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_kf2(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
adminpassword="${unavailable}"
|
|
port="${unavailable}"
|
|
queryport="${unavailable}"
|
|
webadminenabled="${unavailable}"
|
|
webadminport="${zero}"
|
|
webadminuser="${unavailable}"
|
|
webadminpass="${unavailable}"
|
|
else
|
|
servername=$(grep "ServerName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/ServerName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "GamePassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/GamePassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
adminpassword=$(grep "AdminPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
port=$(grep "Port" "${servercfgdir}/LinuxServer-KFEngine.ini" | sed -e 's/^[ \t]*//g' | grep "^Port" | grep -v "#" | tr -cd '[:digit:]')
|
|
webadminenabled=$(grep "bEnabled" "${servercfgdir}/KFWeb.ini" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/bEnabled//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
webadminport=$(grep "ListenPort" "${servercfgdir}/KFWeb.ini" | grep -v "#" | tr -cd '[:digit:]')
|
|
webadminuser="Admin"
|
|
webadminpass=$(grep "AdminPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/AdminPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
adminpassword=${adminpassword:-"NOT SET"}
|
|
port=${port:-"0"}
|
|
webadminenabled=${webadminenabled:-"NOT SET"}
|
|
webadminport=${webadminport:-"0"}
|
|
webadminuser=${webadminuser:-"NOT SET"}
|
|
webadminpass=${webadminpass:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_sdtd(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
port="${zero}"
|
|
queryport="${zero}"
|
|
webadminenabled="${unavailable}"
|
|
webadminport="${zero}"
|
|
webadminpass="${unavailable}"
|
|
telnetenabled="${unavailable}"
|
|
telnetport="${zero}"
|
|
telnetpass="${unavailable}"
|
|
maxplayers="${unavailable}"
|
|
gamemode="${unavailable}"
|
|
gameworld="${unavailable}"
|
|
else
|
|
servername=$(grep "ServerName" "${servercfgfullpath}" | sed 's/^.*value="//' | cut -f1 -d"\"")
|
|
serverpassword=$(grep "ServerPassword" "${servercfgfullpath}" | sed 's/^.*value="//' | cut -f1 -d"\"")
|
|
port=$(grep "ServerPort" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
queryport=$((port + 1))
|
|
|
|
webadminenabled=$(grep "ControlPanelEnabled" "${servercfgfullpath}" | sed 's/^.*value="//' | cut -f1 -d"\"")
|
|
webadminport=$(grep "ControlPanelPort" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
webadminpass=$(grep "ControlPanelPassword" "${servercfgfullpath}" | sed 's/^.*value="//' | cut -f1 -d"\"")
|
|
telnetenabled=$(grep "TelnetEnabled" "${servercfgfullpath}" | sed 's/^.*value="//' | cut -f1 -d"\"")
|
|
telnetport=$(grep "TelnetPort" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
telnetpass=$(grep "TelnetPassword" "${servercfgfullpath}" | sed 's/^.*value="//' | cut -f1 -d"\"")
|
|
|
|
maxplayers=$(grep "ServerMaxPlayerCount" "${servercfgfullpath}" | tr -cd '[:digit:]')
|
|
gamemode=$(grep "GameMode" "${servercfgfullpath}" | sed 's/^.*value="//' | cut -f1 -d"\"")
|
|
gameworld=$(grep "GameWorld" "${servercfgfullpath}" | sed 's/^.*value="//' | cut -f1 -d"\"")
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
port=${port:-"0"}
|
|
queryport=${queryport:-"0"}
|
|
webadminenabled=${webadminenabled:-"NOT SET"}
|
|
webadminport=${webadminport:-"0"}
|
|
webadminpass=${webadminpass:-"NOT SET"}
|
|
telnetenabled=${telnetenabled:-"NOT SET"}
|
|
telnetport=${telnetport:-"0"}
|
|
telnetpass=${telnetpass:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"NOT SET"}
|
|
gamemode=${gamemode:-"NOT SET"}
|
|
gameworld=${gameworld:-"NOT SET"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_mta(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
ip="${zero}"
|
|
port="${unavailable}"
|
|
httpport="${unavailable}"
|
|
ase="${unavailable}"
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
else
|
|
port=$(grep -m 1 "serverport" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/<serverport>//g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]')
|
|
httpport=$(grep -m 1 "httpport" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/<httpport>//g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]')
|
|
ase=$(grep -m 1 "ase" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/<ase>//g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]')
|
|
servername=$(grep -m 1 "servername" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/<servername>//g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<")
|
|
serverpassword=$(grep -m 1 "password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/<password>//g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<")
|
|
maxplayers=$(grep -m 1 "maxplayers" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/<maxplayers>//g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]')
|
|
|
|
if [ "${ase}" == "1" ]; then
|
|
ase="Enabled"
|
|
else
|
|
ase="Disabled"
|
|
fi
|
|
|
|
ip=$(grep -m 1 "serverip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/<serverip>//g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<")
|
|
ipsetinconfig=1
|
|
ipinconfigvar="serverip"
|
|
|
|
# Not Set
|
|
port=${port:-"22003"}
|
|
httpport=${httpport:-"22005"}
|
|
ase=${ase:-"Disabled"}
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"0"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_wolfensteinenemyterritory(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
rconpassword="${unavailable}"
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
port="${zero}"
|
|
queryport="${zero}"
|
|
else
|
|
port=$(grep "set net_port" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
queryport="${port}"
|
|
rconpassword=$(grep "set zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//g' -e '/^\//d' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
servername=$(grep "set sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "set g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "set sv_maxclients" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
|
|
ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
ipsetinconfig=1
|
|
ipinconfigvar="set net_ip"
|
|
|
|
# Not Set
|
|
rconpassword=${rconpassword:-"NOT SET"}
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"0"}
|
|
port=${port:-"27960"}
|
|
queryport=${queryport:-"27960"}
|
|
fi
|
|
}
|
|
|
|
fn_info_config_etlegacy(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
rconpassword="${unavailable}"
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
maxplayers="${zero}"
|
|
port="${zero}"
|
|
queryport="${zero}"
|
|
else
|
|
port=$(grep "set net_port" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
queryport="${port}"
|
|
rconpassword=$(grep "set rconpassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set rconpassword //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//g' -e '/^\//d' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
servername=$(grep "set sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "set g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "set sv_maxclients" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
|
|
|
|
ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
ipsetinconfig=1
|
|
ipinconfigvar="set net_ip"
|
|
|
|
# Not Set
|
|
rconpassword=${rconpassword:-"NOT SET"}
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"0"}
|
|
port=${port:-"27960"}
|
|
queryport=${queryport:-"27960"}
|
|
fi
|
|
}
|
|
|
|
|
|
fn_info_config_squad(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
maxplayers="${unavailable}"
|
|
else
|
|
servername="$(grep "ServerName=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/ServerName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')"
|
|
maxplayers="$(grep "MaxPlayers=" "${servercfgfullpath}" | tr -cd '[:digit:]')"
|
|
fi
|
|
|
|
if [ ! -f "${servercfgdir}/Rcon.cfg" ]; then
|
|
rconport=${unavailable}
|
|
rconpassword=${unavailable}
|
|
else
|
|
rconport=$(grep "Port=" "${servercfgdir}/Rcon.cfg" | tr -cd '[:digit:]')
|
|
rconpassword=$(grep "Password=" "${servercfgdir}/Rcon.cfg" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/Password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
fi
|
|
|
|
rconport=${rconport:-"0"}
|
|
if [ -z "${rconpassword}" ]||[ ${#rconpassword} == 1 ]; then
|
|
rconpassword="NOT SET"
|
|
fi
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"0"}
|
|
}
|
|
|
|
fn_info_config_stationeers(){
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
servername="${unavailable}"
|
|
serverpassword="${unavailable}"
|
|
rconpassword="${unavailable}"
|
|
maxplayers="${unavailable}"
|
|
else
|
|
servername=$(grep "SERVERNAME" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/SERVERNAME//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
serverpassword=$(grep "PASSWORD" "${servercfgfullpath}" | grep "^PASSWORD" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/PASSWORD//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
rconpassword=$(grep "RCONPASSWORD" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/RCONPASSWORD//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
maxplayers=$(grep "MAXPLAYER" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/MAXPLAYER//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
|
|
|
|
# Not Set
|
|
servername=${servername:-"NOT SET"}
|
|
serverpassword=${serverpassword:-"NOT SET"}
|
|
rconpassword=${rconpassword:-"NOT SET"}
|
|
maxplayers=${maxplayers:-"0"}
|
|
fi
|
|
}
|
|
|
|
# ARK: Survival Evolved
|
|
if [ "${gamename}" == "ARK: Survivial Evolved" ]; then
|
|
fn_info_config_ark
|
|
# Ballistic Overkill
|
|
elif [ "${gamename}" == "Ballistic Overkill" ]; then
|
|
fn_info_config_ballistic_overkill
|
|
# Battalion 1944
|
|
elif [ "${gamename}" == "Battalion 1944" ]; then
|
|
fn_info_config_battalion1944
|
|
# Battlefield: 1942
|
|
elif [ "${gamename}" == "Battlefield: 1942" ]; then
|
|
fn_info_config_bf1942
|
|
# Call of Duty
|
|
elif [ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "Call of Duty: United Offensive" ]; then
|
|
fn_info_config_cod
|
|
# Call of Duty 2
|
|
elif [ "${gamename}" == "Call of Duty 2" ]; then
|
|
fn_info_config_cod2
|
|
# Call of Duty 4
|
|
elif [ "${gamename}" == "Call of Duty 4" ]; then
|
|
fn_info_config_cod4
|
|
# Call of Duty: World at War
|
|
elif [ "${gamename}" == "Call of Duty: World at War" ]; then
|
|
fn_info_config_codwaw
|
|
# Dont Starve Together
|
|
elif [ "${engine}" == "dontstarve" ]; then
|
|
fn_info_config_dontstarve
|
|
# Eco
|
|
elif [ "${shortname}" == "eco" ]; then
|
|
fn_info_config_eco
|
|
# Factorio
|
|
elif [ "${gamename}" == "Factorio" ]; then
|
|
fn_info_config_factorio
|
|
# Just Cause 2
|
|
elif [ "${gamename}" == "Just Cause 2" ]; then
|
|
fn_info_config_justcause2
|
|
# Just Cause 3
|
|
elif [ "${gamename}" == "Just Cause 3" ]; then
|
|
fn_info_config_justcause3
|
|
# Killing Floor 2
|
|
elif [ "${shortname}" == "kf2" ]; then
|
|
fn_info_config_kf2
|
|
# QuakeWorld
|
|
elif [ "${gamename}" == "QuakeWorld" ]; then
|
|
fn_info_config_quakeworld
|
|
# Quake 2
|
|
elif [ "${gamename}" == "Quake 2" ]; then
|
|
fn_info_config_quake2
|
|
# Quake 3
|
|
elif [ "${gamename}" == "Quake 3: Arena" ]; then
|
|
fn_info_config_quake3
|
|
# Quake Live
|
|
elif [ "${gamename}" == "Quake Live" ]; then
|
|
fn_info_config_quakelive
|
|
# Minecraft
|
|
elif [ "${engine}" == "lwjgl2" ]; then
|
|
fn_info_config_minecraft
|
|
# Project Cars
|
|
elif [ "${gamename}" == "Project Cars" ]; then
|
|
fn_info_config_projectcars
|
|
# Project Zomboid
|
|
elif [ "${engine}" == "projectzomboid" ]; then
|
|
fn_info_config_projectzomboid
|
|
# ARMA 3
|
|
elif [ "${engine}" == "realvirtuality" ]; then
|
|
fn_info_config_realvirtuality
|
|
# Rising World
|
|
elif [ "${shortname}" == "rw" ]; then
|
|
fn_info_config_risingworld
|
|
# Serious Sam
|
|
elif [ "${engine}" == "seriousengine35" ]; then
|
|
fn_info_config_seriousengine35
|
|
# Source Engine Games
|
|
elif [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then
|
|
fn_info_config_source
|
|
# Starbound
|
|
elif [ "${engine}" == "starbound" ]; then
|
|
fn_info_config_starbound
|
|
# TeamSpeak 3
|
|
elif [ "${gamename}" == "TeamSpeak 3" ]; then
|
|
fn_info_config_teamspeak3
|
|
# Mumble
|
|
elif [ "${gamename}" == "Mumble" ]; then
|
|
fn_info_config_mumble
|
|
# San Andreas Multiplayer
|
|
elif [ "${gamename}" == "San Andreas Multiplayer" ]; then
|
|
fn_info_config_samp
|
|
# Teeworlds
|
|
elif [ "${engine}" == "teeworlds" ]; then
|
|
fn_info_config_teeworlds
|
|
# Terraria
|
|
elif [ "${engine}" == "terraria" ]; then
|
|
fn_info_config_terraria
|
|
# Tower Unite
|
|
elif [ "${gamename}" == "Tower Unite" ]; then
|
|
fn_info_config_towerunite
|
|
# Unreal/Unreal 2 engine
|
|
elif [ "${engine}" == "unreal" ]||[ "${engine}" == "unreal2" ]; then
|
|
fn_info_config_unreal
|
|
# Unreal 3 engine
|
|
elif [ "${engine}" == "unreal3" ]; then
|
|
fn_info_config_unreal3
|
|
# 7 Day To Die (unity3d)
|
|
elif [ "${gamename}" == "7 Days To Die" ]; then
|
|
fn_info_config_sdtd
|
|
elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then
|
|
fn_info_config_wolfensteinenemyterritory
|
|
elif [ "${gamename}" == "ET: Legacy" ]; then
|
|
fn_info_config_etlegacy
|
|
elif [ "${gamename}" == "Multi Theft Auto" ]; then
|
|
fn_info_config_mta
|
|
elif [ "${gamename}" == "Squad" ]; then
|
|
fn_info_config_squad
|
|
# Stationeers
|
|
elif [ "${gamename}" == "Stationeers" ]; then
|
|
fn_info_config_stationeers
|
|
fi
|
|
|