. */ namespace GameQ\Protocols; /** * Class Soldat * * @package GameQ\Protocols * * @author Marcel Bößendörfer * @author Austin Bischoff */ class Soldat extends Ase { /** * String name of this protocol class * * @type string */ protected $name = 'soldat'; /** * Longer string name of this protocol class * * @type string */ protected $name_long = "Soldat"; /** * query_port = client_port + 123 * * @type int */ protected $port_diff = 123; /** * The client join link * * @type string */ protected $join_link = "soldat://%s:%d/"; }