Package com.l2client.network.login.ServerPackets

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


          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]);
          break;
        default:
          log.severe("Unhandled packet in Loginserver with id:"
              + raw[2]);
        }
View Full Code Here

TOP

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

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.