Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.L2FriendList


      loadTutorial(activeChar);
      activeChar.restoreDisableSkills();
    }
    else
    {
      packets.add(new L2FriendList(activeChar, false));
    }
    packets.add(new ExStorageMaxCount(activeChar));
    packets.add(new QuestList(activeChar));
    packets.add(new ExBasicActionList());
    // refresh player info
View Full Code Here


  public static void notifyFriends(L2Player cha, boolean login)
  {
    if(login)
    {
      cha.sendPacket(new L2FriendList(cha, false));
    }
    try
    {
      for(Integer friend_id : FriendsTable.getInstance().getFriendsList(cha.getObjectId()))
      {
View Full Code Here

  }

  @Override
  public void runImpl()
  {
    sendPacket(new L2FriendList(getClient().getActiveChar()));
  }
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.L2FriendList

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.