Package com.l2client.network.login.ServerPackets

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


          log.info("Login ok, requesting server list...");
          pa = new LoginOk();
          break;
        case 0x04:// server list
          log.info("Received server list...");
          pa = new ServerList();
          break;
        case 0x06:// play fail
          log.info("Received play fail:" + raw[2] + ":" + raw[3]);
          pa = new PlayFailed();
          // TODO what to do next, back to server list?
View Full Code Here

TOP

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

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.