Browse Source

Added support for unity3d engine

also minor display change to fn_serverquery (space between port and : )
pull/254/merge
Daniel Gibbs 10 years ago
parent
commit
21db3f635e
  1. 4
      GameServerQuery/gsquery.py
  2. 5
      functions/fn_serverquery

4
GameServerQuery/gsquery.py

@ -3,7 +3,7 @@
# Game Server Query
# Author: Anonymous & Daniel Gibbs
# # Website: http://danielgibbs.co.uk
# Version: 091214
# Version: 231214
import optparse
import socket
@ -25,6 +25,8 @@ class GameServer:
self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0'
if self.option.engine == 'realvirtuality':
self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0'
if self.option.engine == 'unity3d':
self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0'
elif self.option.engine == 'unreal':
self.query_prompt_string = '\x5C\x69\x6E\x66\x6F\x5C'
elif self.option.engine == 'unreal2':

5
functions/fn_serverquery

@ -2,7 +2,7 @@
# LGSM fn_serverquery function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 101214
# Version: 231214
# uses gsquery.py to directly query the server
# detects if the server locks up
@ -15,6 +15,9 @@ if [ -f gsquery.py ]; then
elif [ "${engine}" == "realvirtuality" ]; then
queryport=$(grep -s steamqueryport= "${servercfgfullpath}"|grep -v //|tr -d '\r'|tr -cd [:digit:])
port=${queryport}
elif [ "${engine}" == "unity3d" ]; then
gameport=$(grep ServerPort "${servercfgfullpath}"|tr -cd [:digit:])
port=$((${gameport} + 1))
fi
fn_printinfo "Monitoring ${servicename}: Detected gsquery.py"
fn_scriptlog "Detected gsquery.py"

Loading…
Cancel
Save