Browse Source
Merge pull request #3220 from GameServerManagers/feature/valheim-query
feat(vhserver): add server query to Valheim
fix(vhserver): update start parameters for multi word server names
pull/3224/head
Daniel Gibbs
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
16 additions and
5 deletions
-
lgsm/config-default/config-lgsm/vhserver/_default.cfg
-
lgsm/functions/info_messages.sh
-
lgsm/functions/info_parms.sh
|
|
@ -16,7 +16,7 @@ gameworld="${selfname}" |
|
|
|
public="1" |
|
|
|
|
|
|
|
## Server Parameters | https://docs.linuxgsm.com/configuration/start-parameters#additional-parameters |
|
|
|
startparameters="-name ${servername} -password ${serverpassword} -port ${port} -world ${gameworld} -public ${public}" |
|
|
|
startparameters="-name '${servername}' -password ${serverpassword} -port ${port} -world ${gameworld} -public ${public}" |
|
|
|
|
|
|
|
#### LinuxGSM Settings #### |
|
|
|
|
|
|
@ -138,8 +138,8 @@ stopmode="2" |
|
|
|
# 3: gamedig |
|
|
|
# 4: gsquery |
|
|
|
# 5: tcp |
|
|
|
querymode="1" |
|
|
|
querytype="" |
|
|
|
querymode="2" |
|
|
|
querytype="protocol-valve" |
|
|
|
|
|
|
|
## Console type |
|
|
|
consoleverbose="yes" |
|
|
|
|
|
@ -1259,9 +1259,9 @@ fn_info_message_unreal(){ |
|
|
|
fi |
|
|
|
if [ "${appid}" ]; then |
|
|
|
if [ "${appid}" == "223250" ]; then |
|
|
|
echo -e "< Steam\tINBOUND\t20610\tudp" |
|
|
|
echo -e "> Steam\tINBOUND\t20610\tudp" |
|
|
|
else |
|
|
|
echo -e "< Steam\tINBOUND\t20660\tudp" |
|
|
|
echo -e "> Steam\tINBOUND\t20660\tudp" |
|
|
|
fi |
|
|
|
fi |
|
|
|
echo -e "> Web Admin\tINBOUND\t${webadminport}\ttcp\tListenPort=${webadminport}" |
|
|
@ -1347,6 +1347,7 @@ fn_info_message_vh(){ |
|
|
|
{ |
|
|
|
echo -e "${lightblue}DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL${default}" |
|
|
|
echo -e "> Game\tINBOUND\t${port}\tudp" |
|
|
|
echo -e "> Query\tINBOUND\t${queryport}\tudp" |
|
|
|
} | column -s $'\t' -t |
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ -235,6 +235,14 @@ fn_info_parms_ut(){ |
|
|
|
port=${port:-"0"} |
|
|
|
} |
|
|
|
|
|
|
|
fn_info_parms_vh(){ |
|
|
|
port=${port:-"0"} |
|
|
|
queryport=$((port + 1)) |
|
|
|
gameworld=${gameworld:-"NOT SET"} |
|
|
|
serverpassword=${serverpassword:-"NOT SET"} |
|
|
|
servername=${servername:-"NOT SET"} |
|
|
|
} |
|
|
|
|
|
|
|
fn_info_parms_wf(){ |
|
|
|
port=${port:-"0"} |
|
|
|
queryport="${port:-"0"}" |
|
|
@ -293,6 +301,8 @@ elif [ "${shortname}" == "tu" ]; then |
|
|
|
fn_info_parms_towerunite |
|
|
|
elif [ "${shortname}" == "tw" ]; then |
|
|
|
fn_info_parms_teeworlds |
|
|
|
elif [ "${shortname}" == "vh" ]; then |
|
|
|
fn_info_parms_vh |
|
|
|
elif [ "${shortname}" == "mh" ]; then |
|
|
|
fn_info_parms_mordhau |
|
|
|
elif [ "${shortname}" == "mta" ]; then |
|
|
|