Browse Source

added samp details

pull/1648/head
Daniel Gibbs 8 years ago
parent
commit
22e5f14478
  1. 12
      lgsm/functions/info_messages.sh

12
lgsm/functions/info_messages.sh

@ -707,6 +707,16 @@ fn_info_message_rust(){
} | column -s $'\t' -t
}
fn_info_message_samp(){
echo -e "netstat -atunp | grep samp03svr"
echo -e ""
{
echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL"
echo -e "> Game/RCON\tINBOUND\t${port}\ttcp/udp"
} | column -s $'\t' -t
}
fn_info_message_seriousengine35(){
echo -e "netstat -atunp | grep Sam3_Dedicate"
echo -e ""
@ -977,6 +987,8 @@ fn_info_message_select_engine(){
fn_info_message_quake3
elif [ "${gamename}" == "Quake Live" ]; then
fn_info_message_quakelive
elif [ "${gamename}" == "San Andreas Multiplayer" ]; then
fn_info_message_samp
elif [ "${gamename}" == "Squad" ]; then
fn_info_message_squad
elif [ "${gamename}" == "TeamSpeak 3" ]; then

Loading…
Cancel
Save