From 89fce3bc9efca399053498e111aa1bcbfef28771 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 30 Sep 2014 21:19:43 +0100 Subject: [PATCH] gsquery.py: added support for ARMA3 --- GameServerQuery/gsquery.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/GameServerQuery/gsquery.py b/GameServerQuery/gsquery.py index 9369261f9..02e049a3a 100644 --- a/GameServerQuery/gsquery.py +++ b/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':