Examples of FriendList


Examples of com.l2jfrozen.gameserver.network.serverpackets.FriendList

          msg = null;
         
          // friend list rework ;)
          notifyFriends(player);
          notifyFriends(requestor);
          player.sendPacket(new FriendList(player));
          requestor.sendPacket(new FriendList(requestor));
        }
        catch (Exception e)
        {
          if (Config.ENABLE_ALL_EXCEPTIONS)
            e.printStackTrace();
View Full Code Here

Examples of com.l2jfrozen.gameserver.network.serverpackets.FriendList

        friendName = rset.getString("friend_name");
        friend = L2World.getInstance().getPlayer(friendName);
       
        if (friend != null) // friend loggined.
        {
          friend.sendPacket(new FriendList(friend));
        }
      }
     
      rset.close();
      statement.close();
View Full Code Here

Examples of com.l2jfrozen.gameserver.network.serverpackets.FriendList

   
    // Send packets info
    sendPacket(new ClientSetTime()); // SetClientTime
    sendPacket(new UserInfo(activeChar)); //
    sendPacket(new HennaInfo(activeChar));
    sendPacket(new FriendList(activeChar));
    sendPacket(new ItemList(activeChar, false));
    sendPacket(new ShortCutInit(activeChar));

    // Send all skills to char
    activeChar.sendSkillList();
View Full Code Here

Examples of com.l2jfrozen.gameserver.network.serverpackets.FriendList

    activeChar.updateNameTitleColor();

    sendPacket(new UserInfo(activeChar));
    sendPacket(new HennaInfo(activeChar));
    sendPacket(new FriendList(activeChar));
    sendPacket(new ItemList(activeChar, false));
    sendPacket(new ShortCutInit(activeChar));
    activeChar.broadcastUserInfo();
    activeChar.sendPacket(new EtcStatusUpdate(activeChar));
  }
View Full Code Here

Examples of com.l2jfrozen.gameserver.network.serverpackets.FriendList

      activeChar.sendPacket(sm);
     
      statement.close();
     
      activeChar.getFriendList().remove(_name);
      activeChar.sendPacket(new FriendList(activeChar));
     
      if (friend != null)
      {
        friend.getFriendList().remove(activeChar.getName());
        friend.sendPacket(new FriendList(friend));
      }
    }
    catch (Exception e)
    {
      if (Config.ENABLE_ALL_EXCEPTIONS)
View Full Code Here

Examples of com.l2jfrozen.gameserver.network.serverpackets.FriendList

    {
      L2PcInstance friend = L2World.getInstance().getPlayer(friendName);

      if(friend != null) //friend logged in.
      {
        friend.sendPacket(new FriendList(friend));
      }
    }
  }
View Full Code Here

Examples of example.chat.msgtask.FriendList

    switch(inMsg.getCmdType()) {
    case ChatCommandId.C_LOGIN_REQ:
      new Login(session, inMsg).run();
      break;
    case ChatCommandId.C_FRIENDLIST_REFURBISH_REQ:
      new FriendList(session,inMsg).run();
      break;
    case ChatCommandId.C_ADDFRIEND_REQ:
      new AddFriend(session,inMsg).run();
      break;
    case ChatCommandId.C_HEARTBEAT_REQ:
View Full Code Here

Examples of facebook4j.Friendlist

            JSONArray list = json.getJSONArray("data");
            final int size = list.length();
            ResponseList<Friendlist> friendlists = new ResponseListImpl<Friendlist>(size, json);
            for (int i = 0; i < size; i++) {
                JSONObject friendlistJSONObject = list.getJSONObject(i);
                Friendlist friendlist = new FriendlistJSONImpl(friendlistJSONObject);
                if (conf.isJSONStoreEnabled()) {
                    DataObjectFactoryUtil.registerJSONObject(friendlist, friendlistJSONObject);
                }
                friendlists.add(friendlist);
            }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.FriendList

    Player player = getClient().getActiveChar();
    if (player == null)
    {
      return;
    }
    player.sendPacket(new FriendList(player));
  }
View Full Code Here

Examples of lounge.gatheringlounge.FriendList

  }

  public JList getInviteJList() {
    friendListModel = new DefaultListModel();

    inviteJList = new FriendList(this, friendListModel);
    inviteJList.setCellRenderer(new FriendListRenderer());

    inviteJList.stateChanged(null);

    return inviteJList;
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.