Examples of unEquipItem()


Examples of lineage2.gameserver.model.items.PcInventory.unEquipItem()

      boolean equipped = false;
      if(equipped = targetItem.isEquipped())
      {
        inventory.isRefresh = true;
        inventory.unEquipItem(targetItem);
      }

      switch(appearanceStone.getType())
      {
        case RESTORE:
View Full Code Here

Examples of lineage2.gameserver.model.items.PcInventory.unEquipItem()

      }
      boolean equipped = item.isEquipped();
      if (equipped)
      {
        inventory.isRefresh = true;
        inventory.unEquipItem(item);
      }
      int safeEnchantLevel = item.getTemplate().getBodyPart() == 32768 ? (esi.getSafe() + 1) : esi.getSafe();
      int chance = esi.getChance();
      if (catalyst != null)
      {
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.