Examples of WalkerRouteType


Examples of lineage2.gameserver.templates.npc.WalkerRouteType

          }
        }
        else if (nodeName.equalsIgnoreCase("walker_route"))
        {
          int id = Integer.parseInt(secondElement.attributeValue("id"));
          WalkerRouteType type = secondElement.attributeValue("type") == null ? WalkerRouteType.LENGTH : WalkerRouteType.valueOf(secondElement.attributeValue("type").toUpperCase());
          WalkerRoute walkerRoute = new WalkerRoute(id, type);
          for (Iterator<?> nextIterator = secondElement.elementIterator(); nextIterator.hasNext(); )
          {
            org.dom4j.Element nextElement = (org.dom4j.Element)nextIterator.next();
            Location loc = Location.parse(nextElement);
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.