Examples of FortressCombatFlagObject


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

      else if (nodeName.equalsIgnoreCase("combat_flag"))
      {
        int x = Integer.parseInt(objectsElement.attributeValue("x"));
        int y = Integer.parseInt(objectsElement.attributeValue("y"));
        int z = Integer.parseInt(objectsElement.attributeValue("z"));
        objects.add(new FortressCombatFlagObject(new Location(x, y, z)));
      }
      else if (nodeName.equalsIgnoreCase("siege_toggle_npc"))
      {
        int id = Integer.parseInt(objectsElement.attributeValue("id"));
        int fakeId = Integer.parseInt(objectsElement.attributeValue("fake_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.