. */ namespace GameQ\Protocols; /** * Class Hll * * @package GameQ\Protocols * @author Wilson Jesus <> */ class Hll extends Source { /** * String name of this protocol class * * @type string */ protected $name = 'hll'; /** * Longer string name of this protocol class * * @type string */ protected $name_long = "Hell Let Loose"; /** * query_port = client_port + 15 * 64015 = 64000 + 15 * * @type int */ protected $port_diff = 15; /** * Normalize settings for this protocol * * @type array */ /*protected $normalize = [ 'general' => [ // target => source 'dedicated' => 'dedicated', 'gametype' => 'gametype', 'servername' => 'hostname', 'mapname' => 'mapname', 'maxplayers' => 'maxplayers', 'numplayers' => 'numplayers', 'password' => 'password', ], ];*/ }