Examples of FriendList


Examples of net.bnubot.bot.gui.components.FriendList

    channelTextPane.setEditable(false);

    // The userlist
    userList = new UserList(this);
    // Friends list
    friendList = new FriendList();
    // Clan list
    clanList = new ClanList();
    // BotNet list
    if(getFirstConnection().getConnectionSettings().enableBotNet)
      botNetList = new BotNetList(this);
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.FriendList

        sendPacket(new UserInfo(activeChar));

        sendPacket(new HennaInfo(activeChar));

        sendPacket(new FriendList(activeChar));

        sendPacket(new ItemList(activeChar, false));

        sendPacket(new ShortCutInit(activeChar));
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.FriendList

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

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

Examples of net.sf.l2j.gameserver.serverpackets.FriendList

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

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

      rset.close();
      statement.close();
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.