Examples of ConditionUsingSkill


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

        cond = joinAnd(cond, new ConditionUsingItemType(mask));
      }
      else if("skill".equalsIgnoreCase(a.getNodeName()))
      {
        int id = Integer.parseInt(a.getNodeValue());
        cond = joinAnd(cond, new ConditionUsingSkill(id));
      }
      else if("slotitem".equalsIgnoreCase(a.getNodeName()))
      {
        StringTokenizer st = new StringTokenizer(a.getNodeValue(), ";");
        int id = Integer.parseInt(st.nextToken().trim());
View Full Code Here

Examples of l2p.gameserver.skills.conditions.ConditionUsingSkill

      }
      else if("skill".equalsIgnoreCase(nodeName))
      {
        if(Util.isNumber(nodeValue))
        {
          cond = joinAnd(cond, new ConditionUsingSkill(Integer.parseInt(nodeValue)));
        }
        else
        {
          cond = joinAnd(cond, new ConditionUsingSkill(nodeValue));
        }
      }
      else if("slotitem".equalsIgnoreCase(nodeName))
      {
        StringTokenizer st = new StringTokenizer(nodeValue, ";");
View Full Code Here

Examples of lineage2.gameserver.stats.conditions.ConditionUsingSkill

          cond = joinAnd(cond, new ConditionUsingItemType(mask));
        }
      }
      else if (name.equalsIgnoreCase("skill"))
      {
        cond = joinAnd(cond, new ConditionUsingSkill(Integer.parseInt(value)));
      }
    }
    return cond;
  }
View Full Code Here

Examples of lineage2.gameserver.stats.conditions.ConditionUsingSkill

        ArmorType armor = ArmorType.valueOf(nodeValue.toUpperCase());
        cond = joinAnd(cond, new ConditionUsingArmor(armor));
      }
      else if ("skill".equalsIgnoreCase(nodeName))
      {
        cond = joinAnd(cond, new ConditionUsingSkill(Integer.parseInt(nodeValue)));
      }
      else if ("slotitem".equalsIgnoreCase(nodeName))
      {
        StringTokenizer st = new StringTokenizer(nodeValue, ";");
        int id = Integer.parseInt(st.nextToken().trim());
View Full Code Here

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

                cond = joinAnd(cond, new ConditionUsingItemType(mask));
            }
            else if ("skill".equalsIgnoreCase(a.getNodeName()))
            {
                int id = Integer.parseInt(a.getNodeValue());
                cond = joinAnd(cond, new ConditionUsingSkill(id));
            }
            else if ("slotitem".equalsIgnoreCase(a.getNodeName()))
            {
                StringTokenizer st = new StringTokenizer(a.getNodeValue(), ";");
                int id = Integer.parseInt(st.nextToken().trim());
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.