. */ namespace GameQ\Protocols; /** * Class Miscreated * * @package GameQ\Protocols * @author Wilson Jesus <> */ class Miscreated extends Source { /** * String name of this protocol class * * @type string */ protected $name = 'miscreated'; /** * Longer string name of this protocol class * * @type string */ protected $name_long = "Miscreated"; /** * query_port = client_port + 2 * 64092 = 64090 + 2 * * @type int */ protected $port_diff = 2; /** * 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', ], ]; }