Examples of CastleDamageZoneObject


Examples of lineage2.gameserver.model.entity.events.objects.CastleDamageZoneObject

        objects.add(new SiegeToggleNpcObject(id, fakeId, new Location(x, y, z), hp, set));
      }
      else if (nodeName.equalsIgnoreCase("castle_zone"))
      {
        long price = Long.parseLong(objectsElement.attributeValue("price"));
        objects.add(new CastleDamageZoneObject(objectsElement.attributeValue("name"), price));
      }
      else if (nodeName.equalsIgnoreCase("zone"))
      {
        objects.add(new ZoneObject(objectsElement.attributeValue("name")));
      }
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.