Examples of ConditionTargetPercentHp


Examples of lineage2.gameserver.stats.conditions.ConditionTargetPercentHp

      {
        cond = joinAnd(cond, new ConditionTargetDirection(PositionUtils.TargetDirection.valueOf(nodeValue.toUpperCase())));
      }
      else if ("percentHP".equalsIgnoreCase(nodeName))
      {
        cond = joinAnd(cond, new ConditionTargetPercentHp(parseNumber(a.getNodeValue()).intValue()));
      }
      else if ("percentMP".equalsIgnoreCase(nodeName))
      {
        cond = joinAnd(cond, new ConditionTargetPercentMp(parseNumber(a.getNodeValue()).intValue()));
      }
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.