Examples of ZoneObject


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

        if (warIndex == Integer.MIN_VALUE)
        {
          return;
        }
       
        final ZoneObject zone = miniGameEvent.getFirstObject("zone_" + warIndex);
        if (zone == null)
        {
          return;
        }
        zone.setActive(true);
        ThreadPoolManager.getInstance().schedule(new ZoneDeactive(zone), 60000L);
        break;
    }
  }
View Full Code Here

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

        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")));
      }
      else if (nodeName.equalsIgnoreCase("ctb_team"))
      {
        int mobId = Integer.parseInt(objectsElement.attributeValue("mob_id"));
        int flagId = Integer.parseInt(objectsElement.attributeValue("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.