Package com.l2jfrozen.gameserver.network.L2GameClient

Examples of com.l2jfrozen.gameserver.network.L2GameClient.GameClientState


    if(client._reader!=null)
      opcode = client._reader.read(buf);
    else
      opcode = buf.get() & 0xff;
    L2GameClientPacket msg = null;
    GameClientState state = client.getState();

    if(Config.DEBUG_PACKETS){
      Log.add("Packet: " + Integer.toHexString(opcode) + " on State: " + state.name() + " Client: " + client.toString(), "GamePacketsLog");
    }
   
    switch(state)
    {
      case CONNECTED:
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.network.L2GameClient.GameClientState

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.