Package l2p.gameserver.skills.conditions

Examples of l2p.gameserver.skills.conditions.ConditionPlayerRiding


      else if("riding".equalsIgnoreCase(nodeName))
      {
        String riding = a.getNodeValue();
        if("strider".equalsIgnoreCase(riding))
        {
          cond = joinAnd(cond, new ConditionPlayerRiding(CheckPlayerRiding.STRIDER));
        }
        else if("wyvern".equalsIgnoreCase(riding))
        {
          cond = joinAnd(cond, new ConditionPlayerRiding(CheckPlayerRiding.WYVERN));
        }
        else if("none".equalsIgnoreCase(riding))
        {
          cond = joinAnd(cond, new ConditionPlayerRiding(CheckPlayerRiding.NONE));
        }
      }
      else if("classId".equalsIgnoreCase(nodeName))
      {
        cond = joinAnd(cond, new ConditionPlayerClassId(parseNumber(a.getNodeValue()).intValue()));
View Full Code Here

TOP

Related Classes of l2p.gameserver.skills.conditions.ConditionPlayerRiding

Copyright © 2018 www.massapicom. 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.