Examples of GetAccountInfo


Examples of lineage2.gameserver.network.loginservercon.lspackets.GetAccountInfo

        break;
      case 0x03:
        packet = new KickPlayer();
        break;
      case 0x04:
        packet = new GetAccountInfo();
        break;
      case 0x06:
        packet = new ChangePasswordResponse();
        break;
      case 0xff:
View Full Code Here

Examples of lineage2.loginserver.gameservercon.lspackets.GetAccountInfo

    }
    for (GameServer gs : GameServerManager.getInstance().getGameServers())
    {
      if ((gs.getProtocol() >= 2) && gs.isAuthed())
      {
        gs.sendPacket(new GetAccountInfo(user));
      }
    }
    account.setLastAccess(currentTime);
    account.setLastIP(client.getIpAddress());
    Log.LogAccount(account);
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.