Browse Source

iosoccer is only 32bit for netstat

pull/2164/head
h3o66 6 years ago
parent
commit
05d27cf85f
  1. 13
      lgsm/functions/info_messages.sh

13
lgsm/functions/info_messages.sh

@ -705,6 +705,17 @@ fn_info_message_inss(){
} | column -s $'\t' -t
}
fn_info_message_iosoccer() {
echo -e "netstat -atunp | grep srcds_i486"
echo -e ""
{
echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL"
echo -e "> Game/RCON\tINBOUND\t${port}\ttcp/udp"
echo -e "> SourceTV\tINBOUND\t${sourcetvport}\tudp"
echo -e "< Client\tOUTBOUND\t${clientport}\tudp"
} | column -s $'\t' -t
}
fn_info_message_justcause2(){
echo -e "netstat -atunp | grep Jcmp-Server"
echo -e ""
@ -1184,6 +1195,8 @@ fn_info_message_select_engine(){
fn_info_message_hurtworld
elif [ "${shortname}" == "inss" ]; then
fn_info_message_inss
elif [ "${gamename}" == "IOSoccer" ];then
fn_info_message_iosoccer
elif [ "${gamename}" == "Just Cause 2" ]; then
fn_info_message_justcause2
elif [ "${gamename}" == "Just Cause 3" ]; then

Loading…
Cancel
Save