Package net.sf.l2j.gameserver.serverpackets

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


    {
        L2PcInstance activeChar = getClient().getActiveChar();
        if (activeChar == null) return;

        L2HennaInstance[] henna = HennaTreeTable.getInstance().getAvailableHenna(activeChar.getClassId());
        HennaEquipList he = new HennaEquipList(activeChar, henna);
        activeChar.sendPacket(he);
    }
View Full Code Here


  public void onBypassFeedback(L2PcInstance player, String command)
  {
    if (command.equals("Draw"))
    {
      L2HennaInstance[] henna = HennaTreeTable.getInstance().getAvailableHenna(player.getClassId());
      HennaEquipList hel = new HennaEquipList(player, henna);
      player.sendPacket(hel);
    }
    else if (command.equals("RemoveList"))
        {
      showRemoveChat(player);
View Full Code Here

TOP

Related Classes of net.sf.l2j.gameserver.serverpackets.HennaEquipList

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.