Package com.l2jfrozen.gameserver.network.serverpackets

Examples of com.l2jfrozen.gameserver.network.serverpackets.SendStatus


    else if (_version == 65533 || _version == -3) // RWHO
    {
      if(Config.RWHO_LOG)
        _log.info(getClient().toString() + " RWHO received");

      getClient().close(new SendStatus());
    }
    else if (_version < Config.MIN_PROTOCOL_REVISION || _version > Config.MAX_PROTOCOL_REVISION)
    {
      _log.info("Client: " + getClient().toString() + " -> Protocol Revision: " + _version + " is invalid. Minimum is " + Config.MIN_PROTOCOL_REVISION + " and Maximum is " + Config.MAX_PROTOCOL_REVISION + " are supported. Closing connection.");
      _log.warning("Wrong Protocol Version " + _version);
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.network.serverpackets.SendStatus

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.