Package com.l2jfrozen.gameserver.model.zone.form

Examples of com.l2jfrozen.gameserver.model.zone.form.ZoneCylinder


                    // A Cylinder zone requires a center point
                    // at x,y and a radius
                    attrs = d.getAttributes();
                    final int zoneRad = Integer.parseInt(attrs.getNamedItem("rad").getNodeValue());
                    if (coords.length == 1 && zoneRad > 0)
                      temp.setZone(new ZoneCylinder(coords[0][0], coords[0][1], minZ, maxZ, zoneRad));
                    else
                    {
                      _log.warning("ZoneData: Bad data for zone: " + zoneId);
                      continue;
                    }
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.model.zone.form.ZoneCylinder

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.