Package com.l2client.network.login.ServerPackets

Examples of com.l2client.network.login.ServerPackets.LoginFailed


      case AUTHENTIFICATED:
        switch (raw[2]) {
        case 0x01:// login fail
        case 0x02:
          log.info("Received login failed:" + raw[2] + ":" + raw[3]);
          pa = new LoginFailed();
          doDisconnect(false, "", -1);
          break;
        case 0x03:// login ok
          log.info("Login ok, requesting server list...");
          pa = new LoginOk();
View Full Code Here

TOP

Related Classes of com.l2client.network.login.ServerPackets.LoginFailed

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.