Examples of ConditionTargetPercentCp


Examples of lineage2.gameserver.stats.conditions.ConditionTargetPercentCp

      {
        cond = joinAnd(cond, new ConditionTargetPercentMp(parseNumber(a.getNodeValue()).intValue()));
      }
      else if ("percentCP".equalsIgnoreCase(nodeName))
      {
        cond = joinAnd(cond, new ConditionTargetPercentCp(parseNumber(a.getNodeValue()).intValue()));
      }
      else if ("hasBuffId".equalsIgnoreCase(nodeName))
      {
        StringTokenizer st = new StringTokenizer(nodeValue, ";");
        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.