Browse Source

gsquery.py: added support for ARMA3

pull/207/merge
Daniel Gibbs 11 years ago
parent
commit
89fce3bc9e
  1. 4
      GameServerQuery/gsquery.py

4
GameServerQuery/gsquery.py

@ -3,7 +3,7 @@
# Source Game Server Query
# Author: Anonymous & Daniel Gibbs
# # Website: http://danielgibbs.co.uk
# Version: 251213
# Version: 011014
import optparse
import socket
@ -23,6 +23,8 @@ class GameServer:
self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0'
if self.option.engine == 'spark':
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'
elif self.option.engine == 'unreal':
self.query_prompt_string = '\x5C\x69\x6E\x66\x6F\x5C'
elif self.option.engine == 'unreal2':

Loading…
Cancel
Save