Examples of ConditionPlayerInstanceZone


Examples of lineage2.gameserver.stats.conditions.ConditionPlayerInstanceZone

      {
        cond = joinAnd(cond, new ConditionPlayerOlympiad(Boolean.valueOf(value)));
      }
      else if (name.equalsIgnoreCase("instance_zone"))
      {
        cond = joinAnd(cond, new ConditionPlayerInstanceZone(Integer.parseInt(value)));
      }
      else if (name.equalsIgnoreCase("race"))
      {
        cond = joinAnd(cond, new ConditionPlayerRace(value));
      }
View Full Code Here

Examples of lineage2.gameserver.stats.conditions.ConditionPlayerInstanceZone

        cond = joinAnd(cond, new ConditionPlayerCubic(cubicId));
      }
      else if ("instance_zone".equalsIgnoreCase(nodeName))
      {
        int id = parseNumber(a.getNodeValue()).intValue();
        cond = joinAnd(cond, new ConditionPlayerInstanceZone(id));
      }
      else if ("riding".equalsIgnoreCase(nodeName))
      {
        String riding = a.getNodeValue();
        if ("strider".equalsIgnoreCase(riding))
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.