Examples of ConditionPlayerMinMaxDamage


Examples of lineage2.gameserver.stats.conditions.ConditionPlayerMinMaxDamage

        cond = joinAnd(cond, new ConditionPlayerRace(value));
      }
      else if (name.equalsIgnoreCase("damage"))
      {
        String[] st = value.split(";");
        cond = joinAnd(cond, new ConditionPlayerMinMaxDamage(Double.parseDouble(st[0]), Double.parseDouble(st[1])));
      }
      else if (name.equalsIgnoreCase("castleLight"))
      {
        cond = joinAnd(cond, new ConditionCastleLight());
      }
View Full Code Here

Examples of lineage2.gameserver.stats.conditions.ConditionPlayerMinMaxDamage

        cond = joinAnd(cond, new ConditionPlayerHasBuff(et, level));
      }
      else if ("damage".equalsIgnoreCase(nodeName))
      {
        String[] st = a.getNodeValue().split(";");
        cond = joinAnd(cond, new ConditionPlayerMinMaxDamage(Double.parseDouble(st[0]), Double.parseDouble(st[1])));
      }
    }
    if (cond == null)
    {
      _log.error("Unrecognized <player> condition in " + file);
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.