Package l2p.gameserver.model

Examples of l2p.gameserver.model.L2ArmorSet.containItem()


    {
      return;
    }
    boolean update = false;
    // checks if equipped item is part of set
    if(armorSet.containItem(slot, item.getItemId()))
    {
      if(armorSet.containAll(player))
      {
        L2Skill skill = armorSet.getSkill();
        if(skill != null)
View Full Code Here


      L2ArmorSet armorSet = ArmorSetsTable.getInstance().getSet(chestItem.getItemId());
      if(armorSet == null)
      {
        return;
      }
      if(armorSet.containItem(slot, item.getItemId())) // removed part of set
      {
        remove = true;
        removeSkillId1 = armorSet.getSkill();
        removeSkillId2 = armorSet.getShieldSkill();
        removeSkillId3 = armorSet.getEnchant6skill();
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.