Examples of ConditionUsingItemType


Examples of com.l2jfrozen.gameserver.skills.conditions.ConditionUsingItemType

              mask |= at.mask();
              break;
            }
          }
        }
        cond = joinAnd(cond, new ConditionUsingItemType(mask));
      }
      else if("skill".equalsIgnoreCase(a.getNodeName()))
      {
        int id = Integer.parseInt(a.getNodeValue());
        cond = joinAnd(cond, new ConditionUsingSkill(id));
View Full Code Here

Examples of com.l2jfrozen.gameserver.skills.conditions.ConditionUsingItemType

    }

    private FuncBowAtkRange()
    {
      super(Stats.POWER_ATTACK_RANGE, 0x10, null);
      setCondition(new ConditionUsingItemType(L2WeaponType.BOW.mask()));
    }
View Full Code Here

Examples of l2p.gameserver.skills.conditions.ConditionUsingItemType

          }
          new IllegalArgumentException("Invalid item kind: " + item).printStackTrace();
        }
        if(mask > 0)
        {
          cond = joinAnd(cond, new ConditionUsingItemType(mask));
        }
      }
      else if("armor".equalsIgnoreCase(nodeName))
      {
        ArmorType armor = ArmorType.valueOf(nodeValue.toUpperCase());
View Full Code Here

Examples of lineage2.gameserver.stats.conditions.ConditionUsingItemType

          }
          error("Invalid item kind: \"" + item + "\" in " + getCurrentFileName());
        }
        if (mask != 0)
        {
          cond = joinAnd(cond, new ConditionUsingItemType(mask));
        }
      }
      else if (name.equalsIgnoreCase("skill"))
      {
        cond = joinAnd(cond, new ConditionUsingSkill(Integer.parseInt(value)));
View Full Code Here

Examples of lineage2.gameserver.stats.conditions.ConditionUsingItemType

          }
          _log.error("Invalid item kind: \"" + item + "\" in " + file);
        }
        if (mask != 0)
        {
          cond = joinAnd(cond, new ConditionUsingItemType(mask));
        }
      }
      else if ("armor".equalsIgnoreCase(nodeName))
      {
        ArmorType armor = ArmorType.valueOf(nodeValue.toUpperCase());
View Full Code Here

Examples of net.sf.l2j.gameserver.skills.conditions.ConditionUsingItemType

                            mask |= at.mask();
                            break;
                        }
                    }
                }
                cond = joinAnd(cond, new ConditionUsingItemType(mask));
            }
            else if ("skill".equalsIgnoreCase(a.getNodeName()))
            {
                int id = Integer.parseInt(a.getNodeValue());
                cond = joinAnd(cond, new ConditionUsingSkill(id));
View Full Code Here

Examples of net.sf.l2j.gameserver.skills.conditions.ConditionUsingItemType

    }

    private FuncBowAtkRange()
    {
      super(Stats.POWER_ATTACK_RANGE, 0x10, null);
      setCondition(new ConditionUsingItemType(L2WeaponType.BOW.mask()));
    }
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.