Examples of ConditionPlayerCubic


Examples of lineage2.gameserver.stats.conditions.ConditionPlayerCubic

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