Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.HennaEquipList


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


    L2Player activeChar = getClient().getActiveChar();
    if(activeChar == null)
    {
      return;
    }
    activeChar.sendPacket(new HennaEquipList(activeChar, HennaTreeTable.getInstance().getAvailableHenna(activeChar.getClassId(), activeChar.getSex())));
  }
View Full Code Here

TOP

Related Classes of l2p.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.