|
|
@ -173,6 +173,11 @@ fn_details_gameserver(){ |
|
|
|
echo -e "${blue}ASE:\t${default}${ase}" |
|
|
|
fi |
|
|
|
|
|
|
|
# Random map rotation mode (Squad) |
|
|
|
if [ -n "${randommapmode}"]; then |
|
|
|
echo -e "${blue}Map rotation:\t${default}${randommapmode}" |
|
|
|
fi |
|
|
|
|
|
|
|
# Online status |
|
|
|
if [ "${status}" == "0" ]; then |
|
|
|
echo -e "${blue}Status:\t${red}OFFLINE${default}" |
|
|
@ -656,6 +661,21 @@ fn_details_spark(){ |
|
|
|
} | column -s $'\t' -t |
|
|
|
} |
|
|
|
|
|
|
|
fn_details_squad(){ |
|
|
|
echo -e "netstat -atunp | grep SquadServer" |
|
|
|
echo -e "" |
|
|
|
{ |
|
|
|
echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" |
|
|
|
echo -e "> Game\tINBOUND\t${port}\tudp" |
|
|
|
# Don't do arithmetics if ever the port wasn't a numeric value |
|
|
|
if [ "${port}" -eq "${port}" ]; then |
|
|
|
echo -e "> RAW\tINBOUND\t$((port+1))\tudp" |
|
|
|
fi |
|
|
|
echo -e "> Query\tINBOUND\t${queryport}\tudp" |
|
|
|
echo -e "> RCON\tINBOUND\t${rconport}\ttcp" |
|
|
|
} | column -s $'\t' -t |
|
|
|
} |
|
|
|
|
|
|
|
fn_details_starbound(){ |
|
|
|
echo -e "netstat -atunp | grep starbound" |
|
|
|
echo -e "" |
|
|
@ -861,6 +881,8 @@ fn_display_details() { |
|
|
|
fn_details_quake3 |
|
|
|
elif [ "${gamename}" == "Quake Live" ]; then |
|
|
|
fn_details_quakelive |
|
|
|
elif [ "${gamename}" == "Squad"]; then |
|
|
|
fn_details_squad |
|
|
|
elif [ "${gamename}" == "TeamSpeak 3" ]; then |
|
|
|
fn_details_teamspeak3 |
|
|
|
elif [ "${gamename}" == "Tower Unite" ]; then |
|
|
|