Browse Source

kf

pull/3428/head
Daniel Gibbs 4 years ago
parent
commit
fc74e32c88
  1. 23
      lgsm/functions/info_messages.sh

23
lgsm/functions/info_messages.sh

@ -1351,11 +1351,32 @@ fn_info_message_unreal(){
#} #}
fn_info_message_ut2k4(){ fn_info_message_ut2k4(){
{
fn_port "header"
fn_port "Game" port udp
fn_port "Query" queryport udp
fn_port "Query (GameSpy)" queryportgs udp
fn_port "HTTP" httpport tcp
} | column -s $'\t' -t
echo -e ""
echo -e "${lightgreen}${servername} Web Admin${default}"
fn_messages_separator
{
echo -e "${lightblue}Web Admin enabled:\t${default}${webadminenabled}"
echo -e "${lightblue}Web Admin url:\t${default}http://${webadminip}:${webadminport}"
echo -e "${lightblue}Web Admin username:\t${default}${webadminuser}"
echo -e "${lightblue}Web Admin password:\t${default}${webadminpass}"
} | column -s $'\t' -t
}
fn_info_message_kf(){
{
fn_port "header" fn_port "header"
fn_port "Game" port udp fn_port "Game" port udp
fn_port "Query" queryport udp fn_port "Query" queryport udp
fn_port "Query (GameSpy)" queryportgs udp fn_port "Query (GameSpy)" queryportgs udp
fn_port "HTTP" httpport tcp fn_port "HTTP" httpport tcp
} | column -s $'\t' -t
echo -e "" echo -e ""
echo -e "${lightgreen}${servername} Web Admin${default}" echo -e "${lightgreen}${servername} Web Admin${default}"
fn_messages_separator fn_messages_separator
@ -1624,6 +1645,8 @@ fn_info_message_select_engine(){
fn_info_message_jc2 fn_info_message_jc2
elif [ "${shortname}" == "jc3" ]; then elif [ "${shortname}" == "jc3" ]; then
fn_info_message_jc3 fn_info_message_jc3
elif [ "${shortname}" == "kf" ]; then
fn_info_message_kf
elif [ "${shortname}" == "kf2" ]; then elif [ "${shortname}" == "kf2" ]; then
fn_info_message_kf2 fn_info_message_kf2
elif [ "${shortname}" == "mc" ]||[ "${shortname}" == "pmc" ]||[ "${shortname}" == "wmc" ]; then elif [ "${shortname}" == "mc" ]||[ "${shortname}" == "pmc" ]||[ "${shortname}" == "wmc" ]; then

Loading…
Cancel
Save