Examples of PlayFailed


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

          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?
          break;
        case 0x07:
          log.info("Received play ok");
          pa = new PlayOK(gameServers[selectedServer]);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.