Browse Source

added ballistic overkill

pull/1323/head
Daniel Gibbs 8 years ago
parent
commit
59d4310ea8
  1. 12
      lgsm/functions/command_details.sh

12
lgsm/functions/command_details.sh

@ -363,6 +363,16 @@ fn_details_ark(){
} | column -s $'\t' -t
}
fn_details_ballisticoverkill(){
echo -e "netstat -atunp | grep BODS.x86"
echo -e ""
{
echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL"
echo -e "> Game/RCON\tINBOUND\t${port}\tudp"
echo -e "> Query\tINBOUND\t${queryport}\tudp"
} | column -s $'\t' -t
}
fn_details_avalanche(){
echo -e "netstat -atunp | grep Jcmp-Server"
echo -e ""
@ -800,6 +810,8 @@ fn_display_details() {
fn_details_sdtd
elif [ "${gamename}" == "ARK: Survival Evolved" ]; then
fn_details_ark
elif [ "${gamename}" == "Ballistic Overkill" ]; then
fn_details_ballisticoverkill
elif [ "${gamename}" == "Call of Duty" ]; then
fn_details_cod
elif [ "${gamename}" == "Call of Duty: United Offensive" ]; then

Loading…
Cancel
Save