Harnak Underground Ruins zone rework.
Contributed by gigilo1968.
This commit is contained in:
parent
0a6d4ed67e
commit
c8620ef411
@ -0,0 +1,294 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package ai.areas.TalkingIsland.HarnakUndergroundRuinsZone;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
|
||||
import com.l2jmobius.gameserver.ThreadPoolManager;
|
||||
import com.l2jmobius.gameserver.ai.CtrlIntention;
|
||||
import com.l2jmobius.gameserver.instancemanager.ZoneManager;
|
||||
import com.l2jmobius.gameserver.model.actor.L2Npc;
|
||||
import com.l2jmobius.gameserver.model.actor.instance.L2MonsterInstance;
|
||||
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
|
||||
import com.l2jmobius.gameserver.model.spawns.SpawnTemplate;
|
||||
import com.l2jmobius.gameserver.model.zone.L2ZoneType;
|
||||
import com.l2jmobius.gameserver.network.NpcStringId;
|
||||
import com.l2jmobius.gameserver.network.serverpackets.ExSendUIEvent;
|
||||
import com.l2jmobius.gameserver.network.serverpackets.ExShowScreenMessage;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* Harnak Underground Ruins
|
||||
* @video https://www.youtube.com/watch?v=0IdcAB3aYO0
|
||||
* @author LasTravel, Gigi
|
||||
* @date 2017-03-10 - [13:09:05]
|
||||
*/
|
||||
public class HarnakUndergroundRuinsZone extends AbstractNpcAI
|
||||
{
|
||||
//@formatter:off
|
||||
private static final int[] NORMAL_MOBS = {22931, 22932, 22933, 22934, 22935, 22936, 22937, 22938, 23349};
|
||||
//@formatter:on
|
||||
static Map<L2ZoneType, zoneInfo> _roomInfo = new HashMap<>(24);
|
||||
final static Set<SpawnTemplate> _templates = ConcurrentHashMap.newKeySet();
|
||||
|
||||
public HarnakUndergroundRuinsZone()
|
||||
{
|
||||
addKillId(NORMAL_MOBS);
|
||||
addSpawnId(NORMAL_MOBS);
|
||||
startQuestTimer("HARNAK_SPAWN", 15000, null, null, false);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
|
||||
{
|
||||
if (event.equals("HARNAK_SPAWN"))
|
||||
{
|
||||
for (int zoneId = 60142; zoneId <= 60165; zoneId++)
|
||||
{
|
||||
L2ZoneType zone = ZoneManager.getInstance().getZoneById(zoneId);
|
||||
_roomInfo.put(zone, new zoneInfo());
|
||||
String zoneName = zone.getName().toLowerCase().replace(" ", "_");
|
||||
_templates.stream().forEach(t -> t.spawn(g -> String.valueOf(g.getName()).equalsIgnoreCase(zoneName), null));
|
||||
}
|
||||
}
|
||||
return super.onAdvEvent(event, npc, player);
|
||||
}
|
||||
|
||||
public static final class zoneInfo
|
||||
{
|
||||
private int currentPoints = 0;
|
||||
private int currentMonitorizedDamage = 0;
|
||||
private int zoneStage = 0;
|
||||
|
||||
void setZoneStage(int a)
|
||||
{
|
||||
zoneStage = a;
|
||||
}
|
||||
|
||||
void setCurrentPoint(int a)
|
||||
{
|
||||
currentPoints = a;
|
||||
}
|
||||
|
||||
void setMonitorizedDamage(int a)
|
||||
{
|
||||
currentMonitorizedDamage = a;
|
||||
}
|
||||
|
||||
int getZoneStage()
|
||||
{
|
||||
return zoneStage;
|
||||
}
|
||||
|
||||
int getCurrentPoints()
|
||||
{
|
||||
return currentPoints;
|
||||
}
|
||||
|
||||
int getCurrentMonitorizedDamage()
|
||||
{
|
||||
return currentMonitorizedDamage;
|
||||
}
|
||||
|
||||
void reset()
|
||||
{
|
||||
currentPoints = 0;
|
||||
currentMonitorizedDamage = 0;
|
||||
zoneStage = 0;
|
||||
}
|
||||
}
|
||||
|
||||
private static final class changeZoneStage implements Runnable
|
||||
{
|
||||
private final L2ZoneType zone;
|
||||
|
||||
public changeZoneStage(L2ZoneType a)
|
||||
{
|
||||
zone = a;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run()
|
||||
{
|
||||
try
|
||||
{
|
||||
zoneInfo currentInfo = _roomInfo.get(zone);
|
||||
switch (currentInfo.getZoneStage())
|
||||
{
|
||||
case 0:
|
||||
{
|
||||
zone.broadcastPacket(new ExShowScreenMessage(NpcStringId.MONITOR_THE_DAMAGE_FOR_30_SEC, ExShowScreenMessage.TOP_CENTER, 3000));
|
||||
break;
|
||||
}
|
||||
case 1:
|
||||
{
|
||||
zone.broadcastPacket(new ExShowScreenMessage(NpcStringId.SECONDS_LEFT, ExShowScreenMessage.TOP_CENTER, 3000));
|
||||
break;
|
||||
}
|
||||
case 2:
|
||||
{
|
||||
zone.broadcastPacket(new ExShowScreenMessage(NpcStringId.SECONDS_LEFT2, ExShowScreenMessage.TOP_CENTER, 3000));
|
||||
break;
|
||||
}
|
||||
case 3:
|
||||
{
|
||||
zone.broadcastPacket(new ExShowScreenMessage(NpcStringId.SECONDS_LEFT3, ExShowScreenMessage.TOP_CENTER, 3000));
|
||||
break;
|
||||
}
|
||||
case 4:
|
||||
{
|
||||
zone.broadcastPacket(new ExShowScreenMessage(NpcStringId.SECONDS_LEFT4, ExShowScreenMessage.TOP_CENTER, 3000));
|
||||
break;
|
||||
}
|
||||
case 5:
|
||||
{
|
||||
zone.broadcastPacket(new ExShowScreenMessage(NpcStringId.SECONDS_LEFT5, ExShowScreenMessage.TOP_CENTER, 3000));
|
||||
break;
|
||||
}
|
||||
case 6:
|
||||
{
|
||||
if (currentInfo.getCurrentMonitorizedDamage() >= 10)
|
||||
{
|
||||
zone.broadcastPacket(new ExShowScreenMessage(NpcStringId.DEMONIC_SYSTEM_WILL_ACTIVATE, ExShowScreenMessage.TOP_CENTER, 3000));
|
||||
String zoneName = zone.getName().toLowerCase().replace(" ", "_");
|
||||
_templates.stream().forEach(t -> t.despawn(g -> String.valueOf(g.getName()).equalsIgnoreCase(zoneName)));
|
||||
_templates.stream().forEach(t -> t.spawn(g -> String.valueOf(g.getName()).equalsIgnoreCase(zoneName.concat("_demonic")), null));
|
||||
zone.getPlayersInside().forEach(temp -> temp.sendPacket(new ExSendUIEvent(temp, false, false, 600, 0, NpcStringId.DEMONIC_SYSTEM_ACTIVATED)));
|
||||
currentInfo.setZoneStage(7);
|
||||
ThreadPoolManager.getInstance().scheduleGeneral(new changeZoneStage(zone), 600000); // 10min
|
||||
}
|
||||
else
|
||||
{
|
||||
currentInfo.reset();
|
||||
return;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 7:
|
||||
{
|
||||
currentInfo.reset();
|
||||
for (L2PcInstance player : zone.getPlayersInside())
|
||||
{
|
||||
if (player != null)
|
||||
{
|
||||
player.sendPacket(new ExSendUIEvent(player));
|
||||
}
|
||||
}
|
||||
String zoneName = zone.getName().toLowerCase().replace(" ", "_");
|
||||
_templates.stream().forEach(t -> t.despawn(g -> String.valueOf(g.getName()).equalsIgnoreCase(zoneName.concat("_demonic"))));
|
||||
_templates.stream().forEach(t -> t.spawn(g -> String.valueOf(g.getName()).equalsIgnoreCase(zoneName), null));
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (currentInfo.getZoneStage() < 6)
|
||||
{
|
||||
currentInfo.setZoneStage(currentInfo.getZoneStage() + 1);
|
||||
ThreadPoolManager.getInstance().scheduleGeneral(new changeZoneStage(zone), 5000);
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
|
||||
{
|
||||
for (Entry<L2ZoneType, zoneInfo> currentZone : _roomInfo.entrySet())
|
||||
{
|
||||
if (currentZone.getKey().isInsideZone(npc))
|
||||
{
|
||||
zoneInfo currentInfo = currentZone.getValue();
|
||||
int currentPoints = currentInfo.getCurrentPoints();
|
||||
if (currentPoints == 300)
|
||||
{
|
||||
if (currentInfo.getZoneStage() < 1)
|
||||
{
|
||||
return super.onKill(npc, killer, isSummon);
|
||||
}
|
||||
int currentDamage = currentInfo.getCurrentMonitorizedDamage();
|
||||
int calcDamage = currentDamage + 1;
|
||||
if (calcDamage >= 10)
|
||||
{
|
||||
calcDamage = 10;
|
||||
}
|
||||
currentInfo.setMonitorizedDamage(calcDamage);
|
||||
for (L2PcInstance player : currentZone.getKey().getPlayersInside())
|
||||
{
|
||||
if (player != null)
|
||||
{
|
||||
player.sendPacket(new ExSendUIEvent(player, ExSendUIEvent.TYPE_NORNIL, calcDamage, 10, NpcStringId.MONITOR_THE_DAMAGE));
|
||||
}
|
||||
}
|
||||
return super.onKill(npc, killer, isSummon);
|
||||
}
|
||||
|
||||
int calcPoints = currentPoints + 1;
|
||||
if (calcPoints >= 300)
|
||||
{
|
||||
calcPoints = 300;
|
||||
ThreadPoolManager.getInstance().scheduleGeneral(new changeZoneStage(currentZone.getKey()), 1000);
|
||||
}
|
||||
currentInfo.setCurrentPoint(calcPoints);
|
||||
for (L2PcInstance player : currentZone.getKey().getPlayersInside())
|
||||
{
|
||||
if (player != null)
|
||||
{
|
||||
player.sendPacket(new ExSendUIEvent(player, ExSendUIEvent.TYPE_NORNIL, calcPoints, 300, NpcStringId.DANGER_INCREASING_DANGER_INCREASING));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (npc.getDisplayEffect() > 0)
|
||||
{
|
||||
L2MonsterInstance copy = (L2MonsterInstance) addSpawn(npc.getId(), npc.getX(), npc.getY(), npc.getZ(), 0, true, 0, false);
|
||||
copy.setTarget(killer);
|
||||
copy.addDamageHate(killer, 500, 99999);
|
||||
copy.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, killer);
|
||||
}
|
||||
return super.onKill(npc, killer, isSummon);
|
||||
}
|
||||
|
||||
@Override
|
||||
public final String onSpawn(L2Npc npc)
|
||||
{
|
||||
if (getRandom(20) > 18)
|
||||
{
|
||||
npc.setDisplayEffect(1);
|
||||
}
|
||||
return super.onSpawn(npc);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSpawnActivate(SpawnTemplate template)
|
||||
{
|
||||
_templates.add(template);
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new HarnakUndergroundRuinsZone();
|
||||
}
|
||||
}
|
@ -1,254 +1,547 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
|
||||
<spawn name="HarnakUndergroundRuins">
|
||||
<spawn name="HarnakUndergroundRuinsZone" ai="HarnakUndergroundRuinsZone">
|
||||
<group>
|
||||
<npc id="33303" x="-114704" y="147908" z="-7720" respawnTime="60sec" /> <!-- First Warp Device of Harnak -->
|
||||
<npc id="33304" x="-114713" y="149261" z="-10784" respawnTime="60sec" /> <!-- Second Warp Device of Harnak -->
|
||||
<npc id="33305" x="-114711" y="150662" z="-13872" respawnTime="60sec" /> <!-- Harnak's Soul Circle -->
|
||||
<!-- <npc id="33322" x="-114703" y="179277" z="-13784" heading="0" respawnTime="60sec" />
|
||||
<npc id="33323" x="-111797" y="180482" z="-13784" heading="0" respawnTime="60sec" />
|
||||
<npc id="33324" x="-110984" y="185054" z="-13784" heading="0" respawnTime="60sec" />
|
||||
<npc id="33325" x="-110992" y="186886" z="-13792" heading="0" respawnTime="60sec" />
|
||||
<npc id="33326" x="-114699" y="186995" z="-13784" heading="0" respawnTime="60sec" />
|
||||
<npc id="33327" x="-118429" y="186915" z="-13784" heading="0" respawnTime="60sec" />
|
||||
<npc id="33328" x="-118432" y="185061" z="-13784" heading="0" respawnTime="60sec" />
|
||||
<npc id="33329" x="-117612" y="180489" z="-13784" heading="0" respawnTime="60sec" />Prison of Souls -->
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_1" spawnByDefault="false">
|
||||
<npc id="23349" x="-117855" y="180233" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-117923" y="180616" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-117378" y="180369" z="-13806" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_1">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room1" minZ="-7698" maxZ="-7298">
|
||||
<node x="-117328" y="145770" />
|
||||
<node x="-117908" y="145775" />
|
||||
<node x="-118354" y="145352" />
|
||||
<node x="-118305" y="144760" />
|
||||
<node x="-117888" y="144346" />
|
||||
<node x="-117300" y="144328" />
|
||||
<node x="-116873" y="144738" />
|
||||
<node x="-116869" y="145320" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 1 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_1_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-117855" y="180233" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-117923" y="180616" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-117378" y="180369" z="-13806" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_2">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room2" minZ="-7683" maxZ="-7283">
|
||||
<node x="-115035" y="144543" />
|
||||
<node x="-115457" y="144140" />
|
||||
<node x="-115448" y="143518" />
|
||||
<node x="-115009" y="143098" />
|
||||
<node x="-114389" y="143087" />
|
||||
<node x="-113960" y="143528" />
|
||||
<node x="-113976" y="144135" />
|
||||
<node x="-114403" y="144512" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 2 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_2" spawnByDefault="false">
|
||||
<npc id="23349" x="-118437" y="184716" z="-13809" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-118790" y="185153" z="-13809" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-118051" y="185217" z="-13809" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_3">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room3" minZ="-7681" maxZ="-7281">
|
||||
<node x="-112555" y="145322" />
|
||||
<node x="-112540" y="144740" />
|
||||
<node x="-112107" y="144298" />
|
||||
<node x="-111505" y="144329" />
|
||||
<node x="-111103" y="144763" />
|
||||
<node x="-111088" y="145353" />
|
||||
<node x="-111500" y="145780" />
|
||||
<node x="-112070" y="145797" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 3 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_2_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-118437" y="184716" z="-13809" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-118790" y="185153" z="-13809" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-118051" y="185217" z="-13809" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_4">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room4" minZ="-7687" maxZ="-7287">
|
||||
<node x="-111316" y="148897" />
|
||||
<node x="-110644" y="148897" />
|
||||
<node x="-110231" y="149353" />
|
||||
<node x="-110265" y="149970" />
|
||||
<node x="-110710" y="150367" />
|
||||
<node x="-111331" y="150346" />
|
||||
<node x="-111738" y="149892" />
|
||||
<node x="-111711" y="149286" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 4 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_3" spawnByDefault="false">
|
||||
<npc id="23349" x="-117965" y="186874" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-118584" y="186550" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-118495" y="187324" z="-13810" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_5">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room5" minZ="-7681" maxZ="-7281">
|
||||
<node x="-111701" y="151151" />
|
||||
<node x="-111284" y="150742" />
|
||||
<node x="-110691" y="150736" />
|
||||
<node x="-110274" y="151160" />
|
||||
<node x="-110282" y="151747" />
|
||||
<node x="-110699" y="152148" />
|
||||
<node x="-111284" y="152162" />
|
||||
<node x="-111700" y="151746" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 5 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_3_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-117965" y="186874" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-118584" y="186550" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-118495" y="187324" z="-13810" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_6">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room6" minZ="-7670" maxZ="-7270">
|
||||
<node x="-114406" y="150843" />
|
||||
<node x="-113984" y="151258" />
|
||||
<node x="-113983" y="151843" />
|
||||
<node x="-114414" y="152244" />
|
||||
<node x="-114997" y="152252" />
|
||||
<node x="-115391" y="151828" />
|
||||
<node x="-115395" y="151262" />
|
||||
<node x="-114991" y="150843" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 6 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_4" spawnByDefault="false">
|
||||
<npc id="23349" x="-114702" y="186579" z="-13811" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-114346" y="187150" z="-13811" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-115019" y="187114" z="-13811" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_7">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room7" minZ="-7698" maxZ="-7298">
|
||||
<node x="-117666" y="151195" />
|
||||
<node x="-117697" y="151810" />
|
||||
<node x="-118154" y="152202" />
|
||||
<node x="-118770" y="152192" />
|
||||
<node x="-119183" y="151725" />
|
||||
<node x="-119151" y="151124" />
|
||||
<node x="-118696" y="150708" />
|
||||
<node x="-118080" y="150737" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 7 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_4_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-114702" y="186579" z="-13811" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-114346" y="187150" z="-13811" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-115019" y="187114" z="-13811" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_8">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room8" minZ="-7684" maxZ="-7284">
|
||||
<node x="-118153" y="148925" />
|
||||
<node x="-117756" y="149340" />
|
||||
<node x="-117747" y="149906" />
|
||||
<node x="-118149" y="150304" />
|
||||
<node x="-118724" y="150307" />
|
||||
<node x="-119112" y="149899" />
|
||||
<node x="-119121" y="149331" />
|
||||
<node x="-118717" y="148943" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 8 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_5" spawnByDefault="false">
|
||||
<npc id="23349" x="-111389" y="186899" z="-13812" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-110837" y="187235" z="-13812" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-110843" y="186525" z="-13812" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_2">
|
||||
<!-- Room 1 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room1" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room1" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room1" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room1" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room1" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room1" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<!-- Room 2 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<!-- Room 3 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room3" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room3" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room3" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room3" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room3" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room3" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<!-- Room 4 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room4" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room4" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room4" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room4" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room4" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room4" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<!-- Room 5 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room5" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room5" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room5" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room5" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room5" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room5" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<!-- Room 6 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room6" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room6" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room6" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room6" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room6" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room6" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<!-- Room 7 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room7" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room7" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room7" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room7" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room7" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room7" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<!-- Room 8 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room8" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room8" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room8" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room8" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room8" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room8" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_5_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-111389" y="186899" z="-13812" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-110837" y="187235" z="-13812" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-110843" y="186525" z="-13812" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_3">
|
||||
<!-- Room 1 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room1" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<!-- Room 2 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room2" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<!-- Room 3 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room3" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<!-- Room 4 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room4" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<!-- Room 5 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room5" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<!-- Room 6 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room6" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<!-- Room 7 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room7" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<!-- Room 8 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room8" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<group name="harnak_underground_ruins_room_6" spawnByDefault="false">
|
||||
<npc id="23349" x="-110997" y="184612" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-110604" y="185126" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-111264" y="185353" z="-13810" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_6_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-110997" y="184612" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-110604" y="185126" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-111264" y="185353" z="-13810" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_7" spawnByDefault="false">
|
||||
<npc id="23349" x="-112069" y="180762" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-111435" y="180657" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-111794" y="180134" z="-13806" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_7_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-112069" y="180762" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-111435" y="180657" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-111794" y="180134" z="-13806" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_8" spawnByDefault="false">
|
||||
<npc id="23349" x="-114382" y="179030" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-115089" y="179096" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-114734" y="179603" z="-13806" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_8_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-114382" y="179030" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-115089" y="179096" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-114734" y="179603" z="-13806" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_9" spawnByDefault="false">
|
||||
<npc id="22931" x="-117303" y="146321" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-117367" y="146571" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-117558" y="146719" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-117797" y="146862" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-118005" y="146707" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118097" y="146484" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-117905" y="146241" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-117695" y="145929" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-117434" y="146076" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-117405" y="146213" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-117148" y="146436" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-117186" y="146540" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_9_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-117303" y="146321" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-117367" y="146571" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-117558" y="146719" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-117797" y="146862" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-118005" y="146707" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118097" y="146484" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-117905" y="146241" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-117695" y="145929" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-117434" y="146076" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-117405" y="146213" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-117148" y="146436" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-117186" y="146540" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_10" spawnByDefault="false">
|
||||
<npc id="22931" x="-118095" y="150885" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118030" y="151103" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118407" y="151262" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118492" y="151443" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-118669" y="151145" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118781" y="151061" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-118875" y="150841" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118689" y="150661" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118429" y="150653" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118230" y="150795" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-117991" y="151003" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118163" y="151071" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_10_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-118095" y="150885" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118030" y="151103" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118407" y="151262" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118492" y="151443" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-118669" y="151145" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118781" y="151061" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-118875" y="150841" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118689" y="150661" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118429" y="150653" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118230" y="150795" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-117991" y="151003" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118163" y="151071" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_11" spawnByDefault="false">
|
||||
<npc id="22931" x="-118122" y="152901" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118185" y="153118" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118359" y="153120" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118487" y="153112" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-118653" y="153130" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118890" y="152743" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-118685" y="152504" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118501" y="152360" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118267" y="152376" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118194" y="152484" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-118107" y="152850" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-117999" y="153098" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_11_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-118122" y="152901" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118185" y="153118" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118359" y="153120" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118487" y="153112" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-118653" y="153130" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118890" y="152743" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-118685" y="152504" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118501" y="152360" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118267" y="152376" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118194" y="152484" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-118107" y="152850" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-117999" y="153098" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_12" spawnByDefault="false">
|
||||
<npc id="22931" x="-114380" y="152995" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114302" y="153083" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114493" y="153382" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114882" y="153222" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-114937" y="153219" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-115046" y="152983" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-115120" y="152751" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114939" y="152592" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114543" y="152589" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114356" y="152555" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-114413" y="152922" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-114270" y="153193" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_12_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-114380" y="152995" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114302" y="153083" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114493" y="153382" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114882" y="153222" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-114937" y="153219" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-115046" y="152983" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-115120" y="152751" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114939" y="152592" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114543" y="152589" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114356" y="152555" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-114413" y="152922" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-114270" y="153193" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_13" spawnByDefault="false">
|
||||
<npc id="22931" x="-110690" y="152718" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-110588" y="153097" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110801" y="153127" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111186" y="153240" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-111245" y="153123" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-111301" y="152899" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-111388" y="152642" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-111060" y="152491" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110962" y="152464" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-110628" y="152451" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-110668" y="152820" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-110717" y="153068" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_13_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-110690" y="152718" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-110588" y="153097" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110801" y="153127" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111186" y="153240" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111245" y="153123" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-111301" y="152899" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-111388" y="152642" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-111060" y="152491" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-110962" y="152464" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110628" y="152451" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-110668" y="152820" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-110717" y="153068" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-110717" y="153068" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_14" spawnByDefault="false">
|
||||
<npc id="22931" x="-110694" y="151060" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-110766" y="151290" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110961" y="151292" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111175" y="151304" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-111221" y="151300" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-111308" y="151080" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-111257" y="150685" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-111059" y="150677" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110814" y="150651" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-110786" y="150636" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-110532" y="151023" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-110733" y="151112" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_14_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-110694" y="151060" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-110766" y="151290" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110961" y="151292" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111175" y="151304" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-111221" y="151300" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-111308" y="151080" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-111257" y="150685" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-111059" y="150677" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110814" y="150651" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-110786" y="150636" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-110532" y="151023" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-110733" y="151112" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_15" spawnByDefault="false">
|
||||
<npc id="22931" x="-111323" y="146447" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-111554" y="146711" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-111613" y="146699" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111994" y="146705" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-112071" y="146736" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-112149" y="146514" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-112220" y="146105" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-112011" y="146085" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-111621" y="145919" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111584" y="146213" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-111494" y="146444" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-111561" y="146664" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_15_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-111323" y="146447" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-111554" y="146711" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-111613" y="146699" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111994" y="146705" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-112071" y="146736" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-112149" y="146514" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-112220" y="146105" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-112011" y="146085" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-111621" y="145919" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111584" y="146213" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-111494" y="146444" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-111561" y="146664" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_16" spawnByDefault="false">
|
||||
<npc id="22931" x="-114243" y="145098" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114478" y="145330" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114649" y="145632" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114882" y="145632" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-115084" y="145496" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-115178" y="145292" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-114953" y="145046" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114922" y="144731" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114706" y="144893" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114330" y="144866" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-114245" y="145080" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-114260" y="145315" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_16_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-114243" y="145098" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114478" y="145330" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114649" y="145632" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114882" y="145632" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-115084" y="145496" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-115178" y="145292" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-114953" y="145046" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114922" y="144731" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114706" y="144893" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114330" y="144866" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-114245" y="145080" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-114260" y="145315" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_17" spawnByDefault="false">
|
||||
<npc id="22931" x="-117260" y="144985" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-117342" y="145197" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-117548" y="145320" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-117813" y="145368" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-117996" y="145376" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-117939" y="144969" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-118017" y="144767" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-117823" y="144768" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-117454" y="144721" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-117213" y="144697" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-117259" y="144925" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-117202" y="145316" z="-7656" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_17_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-117260" y="144985" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-117342" y="145197" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-117548" y="145320" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-117813" y="145368" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-117996" y="145376" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-117939" y="144969" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-118017" y="144767" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-117823" y="144768" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-117454" y="144721" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-117213" y="144697" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-117259" y="144925" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-117202" y="145316" z="-7656" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_18" spawnByDefault="false">
|
||||
<npc id="22931" x="-117938" y="149693" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118008" y="149911" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118352" y="149899" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118455" y="150077" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-118650" y="149794" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118765" y="149719" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-118682" y="149345" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118678" y="149327" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118435" y="149322" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118049" y="149286" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-117973" y="149630" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118164" y="149715" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_18_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-117938" y="149693" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118008" y="149911" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118352" y="149899" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118455" y="150077" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-118650" y="149794" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118765" y="149719" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-118682" y="149345" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118678" y="149327" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118435" y="149322" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118049" y="149286" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-117973" y="149630" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118164" y="149715" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_19" spawnByDefault="false">
|
||||
<npc id="22931" x="-118088" y="151538" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118199" y="151765" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118227" y="151779" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118451" y="151796" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-118827" y="151648" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118773" y="151588" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-118864" y="151189" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118529" y="151176" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118441" y="151144" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118073" y="151261" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-118101" y="151508" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118025" y="151595" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_19_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-118088" y="151538" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118199" y="151765" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118227" y="151779" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118451" y="151796" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-118827" y="151648" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118773" y="151588" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-118864" y="151189" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118529" y="151176" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118441" y="151144" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118073" y="151261" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-118101" y="151508" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118025" y="151595" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_20" spawnByDefault="false">
|
||||
<npc id="22931" x="-114210" y="151604" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114462" y="151848" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114489" y="151979" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114765" y="152032" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-114937" y="151717" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-115167" y="151623" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-115129" y="151266" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114934" y="151082" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114521" y="151227" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114460" y="151215" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-114404" y="151577" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-114259" y="151819" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_20_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-114210" y="151604" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114462" y="151848" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114489" y="151979" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114765" y="152032" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-114937" y="151717" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-115167" y="151623" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-115129" y="151266" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114934" y="151082" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114521" y="151227" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114460" y="151215" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-114404" y="151577" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-114259" y="151819" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_21" spawnByDefault="false">
|
||||
<npc id="22931" x="-110675" y="151364" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-110600" y="151637" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110951" y="151767" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111019" y="151925" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-111231" y="151652" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-111471" y="151397" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-111251" y="151303" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-111067" y="151031" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110983" y="151160" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-110625" y="151131" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-110643" y="151512" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-110562" y="151741" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_21_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-110675" y="151364" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-110600" y="151637" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110951" y="151767" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111019" y="151925" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-111231" y="151652" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-111471" y="151397" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-111251" y="151303" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-111067" y="151031" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110983" y="151160" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-110625" y="151131" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-110643" y="151512" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-110562" y="151741" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_22" spawnByDefault="false">
|
||||
<npc id="22931" x="-110529" y="149695" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-110581" y="149943" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110949" y="150091" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111176" y="149920" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-111359" y="149796" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-111453" y="149713" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-111245" y="149500" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-111088" y="149193" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110803" y="149306" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-110755" y="149450" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-110674" y="149475" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-110736" y="149759" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_22_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-110529" y="149695" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-110581" y="149943" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110949" y="150091" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111176" y="149920" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-111359" y="149796" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-111453" y="149713" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-111245" y="149500" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-111088" y="149193" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110803" y="149306" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-110755" y="149450" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-110674" y="149475" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-110736" y="149759" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_23" spawnByDefault="false">
|
||||
<npc id="22931" x="-111443" y="144976" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-111387" y="145339" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-111711" y="145495" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111837" y="145503" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-112168" y="145200" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-112133" y="145146" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-112061" y="144754" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-112022" y="144734" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-111608" y="144551" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111416" y="144701" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-111299" y="145067" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-111357" y="145296" z="-7656" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_23_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-111443" y="144976" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-111387" y="145339" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-111711" y="145495" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111837" y="145503" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-112168" y="145200" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-112133" y="145146" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-112061" y="144754" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-112022" y="144734" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-111608" y="144551" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111416" y="144701" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-111299" y="145067" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-111357" y="145296" z="-7656" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_24" spawnByDefault="false">
|
||||
<npc id="22931" x="-114214" y="143763" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114284" y="144134" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114632" y="144139" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114896" y="144272" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-114926" y="144007" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-115191" y="143784" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-115089" y="143545" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114947" y="143557" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114691" y="143519" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114460" y="143623" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-114375" y="143843" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-114274" y="143930" z="-7656" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_24_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-114214" y="143763" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114284" y="144134" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114632" y="144139" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114896" y="144272" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-114926" y="144007" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-115191" y="143784" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-115089" y="143545" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114947" y="143557" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114691" y="143519" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114460" y="143623" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-114375" y="143843" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-114274" y="143930" z="-7656" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
@ -801,4 +801,76 @@
|
||||
<node X="-7726" Y="24753" />
|
||||
<node X="-19865" Y="24305" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 1" id="60142" type="ScriptZone" shape="Cylinder" minZ="-13864" maxZ="-13704" rad="1000">
|
||||
<node X="-117612" Y="180489" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 2" id="60143" type="ScriptZone" shape="Cylinder" minZ="-13864" maxZ="-13704" rad="1000">
|
||||
<node X="-118432" Y="185061" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 3" id="60144" type="ScriptZone" shape="Cylinder" minZ="-13864" maxZ="-13704" rad="1000">
|
||||
<node X="-118429" Y="186915" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 4" id="60145" type="ScriptZone" shape="Cylinder" minZ="-13864" maxZ="-13704" rad="1000">
|
||||
<node X="-114699" Y="186995" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 5" id="60146" type="ScriptZone" shape="Cylinder" minZ="-13872" maxZ="-13712" rad="1000">
|
||||
<node X="-110992" Y="186886" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 6" id="60147" type="ScriptZone" shape="Cylinder" minZ="-13864" maxZ="-13704" rad="1000">
|
||||
<node X="-110984" Y="185054" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 7" id="60148" type="ScriptZone" shape="Cylinder" minZ="-13864" maxZ="-13704" rad="1000">
|
||||
<node X="-111797" Y="180482" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 8" id="60149" type="ScriptZone" shape="Cylinder" minZ="-13864" maxZ="-13704" rad="1000">
|
||||
<node X="-114703" Y="179277" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 9" id="60150" type="ScriptZone" shape="Cylinder" minZ="-10800" maxZ="-10640" rad="1000">
|
||||
<node X="-117618" Y="146395" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 10" id="60151" type="ScriptZone" shape="Cylinder" minZ="-10800" maxZ="-10640" rad="1000">
|
||||
<node X="-118439" Y="150966" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 11" id="60152" type="ScriptZone" shape="Cylinder" minZ="-10808" maxZ="-10648" rad="1000">
|
||||
<node X="-118432" Y="152816" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 12" id="60153" type="ScriptZone" shape="Cylinder" minZ="-10808" maxZ="-10648" rad="1000">
|
||||
<node X="-114711" Y="152908" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 13" id="60154" type="ScriptZone" shape="Cylinder" minZ="-10808" maxZ="-10648" rad="1000">
|
||||
<node X="-110998" Y="152801" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 14" id="60155" type="ScriptZone" shape="Cylinder" minZ="-10808" maxZ="-10648" rad="1000">
|
||||
<node X="-111002" Y="150978" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 15" id="60156" type="ScriptZone" shape="Cylinder" minZ="-10800" maxZ="-10640" rad="1000">
|
||||
<node X="-111809" Y="146397" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 16" id="60157" type="ScriptZone" shape="Cylinder" minZ="-10800" maxZ="-10640" rad="1000">
|
||||
<node X="-114706" Y="145183" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 17" id="60158" type="ScriptZone" shape="Cylinder" minZ="-7736" maxZ="-7576" rad="1000">
|
||||
<node X="-117606" Y="145039" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 18" id="60159" type="ScriptZone" shape="Cylinder" minZ="-7744" maxZ="-7584" rad="1000">
|
||||
<node X="-118432" Y="149616" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 19" id="60160" type="ScriptZone" shape="Cylinder" minZ="-7744" maxZ="-7584" rad="1000">
|
||||
<node X="-118432" Y="151472" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 20" id="60161" type="ScriptZone" shape="Cylinder" minZ="-7744" maxZ="-7584" rad="1000">
|
||||
<node X="-114704" Y="151552" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 21" id="60162" type="ScriptZone" shape="Cylinder" minZ="-7744" maxZ="-7584" rad="1000">
|
||||
<node X="-110986" Y="151456" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 22" id="60163" type="ScriptZone" shape="Cylinder" minZ="-7744" maxZ="-7584" rad="1000">
|
||||
<node X="-110991" Y="149616" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 23" id="60164" type="ScriptZone" shape="Cylinder" minZ="-7736" maxZ="-7576" rad="1000">
|
||||
<node X="-111792" Y="145040" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 24" id="60165" type="ScriptZone" shape="Cylinder" minZ="-7736" maxZ="-7576" rad="1000">
|
||||
<node X="-114700" Y="143834" />
|
||||
</zone>
|
||||
</list>
|
@ -26,6 +26,17 @@ import com.l2jmobius.gameserver.network.OutgoingPackets;
|
||||
|
||||
public class ExSendUIEvent implements IClientOutgoingPacket
|
||||
{
|
||||
// UI Types
|
||||
public static int TYPE_COUNT_DOWN = 0;
|
||||
public static int TYPE_REMOVE = 1;
|
||||
public static int TYPE_ISTINA = 2;
|
||||
public static int TYPE_COUNTER = 3;
|
||||
public static int TYPE_GP_TIMER = 4;
|
||||
public static int TYPE_NORNIL = 5;
|
||||
public static int TYPE_DRACO_INCUBATION_1 = 6;
|
||||
public static int TYPE_DRACO_INCUBATION_2 = 7;
|
||||
public static int TYPE_CLAN_PROGRESS_BAR = 8;
|
||||
|
||||
private final int _objectId;
|
||||
private final int _type;
|
||||
private final int _countUp;
|
||||
@ -36,6 +47,28 @@ public class ExSendUIEvent implements IClientOutgoingPacket
|
||||
private final int _npcstringId;
|
||||
private List<String> _params = null;
|
||||
|
||||
/**
|
||||
* Remove UI
|
||||
* @param player
|
||||
*/
|
||||
public ExSendUIEvent(L2PcInstance player)
|
||||
{
|
||||
this(player, TYPE_REMOVE, 0, 0, 0, 0, 0, -1);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param player
|
||||
* @param uiType
|
||||
* @param currentPoints
|
||||
* @param maxPoints
|
||||
* @param npcString
|
||||
* @param params
|
||||
*/
|
||||
public ExSendUIEvent(L2PcInstance player, int uiType, int currentPoints, int maxPoints, NpcStringId npcString, String... params)
|
||||
{
|
||||
this(player, uiType, -1, currentPoints, maxPoints, -1, -1, npcString.getId(), params);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param player
|
||||
* @param hide
|
||||
|
@ -0,0 +1,294 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package ai.areas.TalkingIsland.HarnakUndergroundRuinsZone;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
|
||||
import com.l2jmobius.gameserver.ThreadPoolManager;
|
||||
import com.l2jmobius.gameserver.ai.CtrlIntention;
|
||||
import com.l2jmobius.gameserver.instancemanager.ZoneManager;
|
||||
import com.l2jmobius.gameserver.model.actor.L2Npc;
|
||||
import com.l2jmobius.gameserver.model.actor.instance.L2MonsterInstance;
|
||||
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
|
||||
import com.l2jmobius.gameserver.model.spawns.SpawnTemplate;
|
||||
import com.l2jmobius.gameserver.model.zone.L2ZoneType;
|
||||
import com.l2jmobius.gameserver.network.NpcStringId;
|
||||
import com.l2jmobius.gameserver.network.serverpackets.ExSendUIEvent;
|
||||
import com.l2jmobius.gameserver.network.serverpackets.ExShowScreenMessage;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* Harnak Underground Ruins
|
||||
* @video https://www.youtube.com/watch?v=0IdcAB3aYO0
|
||||
* @author LasTravel, Gigi
|
||||
* @date 2017-03-10 - [13:09:05]
|
||||
*/
|
||||
public class HarnakUndergroundRuinsZone extends AbstractNpcAI
|
||||
{
|
||||
//@formatter:off
|
||||
private static final int[] NORMAL_MOBS = {22931, 22932, 22933, 22934, 22935, 22936, 22937, 22938, 23349};
|
||||
//@formatter:on
|
||||
static Map<L2ZoneType, zoneInfo> _roomInfo = new HashMap<>(24);
|
||||
final static Set<SpawnTemplate> _templates = ConcurrentHashMap.newKeySet();
|
||||
|
||||
public HarnakUndergroundRuinsZone()
|
||||
{
|
||||
addKillId(NORMAL_MOBS);
|
||||
addSpawnId(NORMAL_MOBS);
|
||||
startQuestTimer("HARNAK_SPAWN", 15000, null, null, false);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
|
||||
{
|
||||
if (event.equals("HARNAK_SPAWN"))
|
||||
{
|
||||
for (int zoneId = 60142; zoneId <= 60165; zoneId++)
|
||||
{
|
||||
L2ZoneType zone = ZoneManager.getInstance().getZoneById(zoneId);
|
||||
_roomInfo.put(zone, new zoneInfo());
|
||||
String zoneName = zone.getName().toLowerCase().replace(" ", "_");
|
||||
_templates.stream().forEach(t -> t.spawn(g -> String.valueOf(g.getName()).equalsIgnoreCase(zoneName), null));
|
||||
}
|
||||
}
|
||||
return super.onAdvEvent(event, npc, player);
|
||||
}
|
||||
|
||||
public static final class zoneInfo
|
||||
{
|
||||
private int currentPoints = 0;
|
||||
private int currentMonitorizedDamage = 0;
|
||||
private int zoneStage = 0;
|
||||
|
||||
void setZoneStage(int a)
|
||||
{
|
||||
zoneStage = a;
|
||||
}
|
||||
|
||||
void setCurrentPoint(int a)
|
||||
{
|
||||
currentPoints = a;
|
||||
}
|
||||
|
||||
void setMonitorizedDamage(int a)
|
||||
{
|
||||
currentMonitorizedDamage = a;
|
||||
}
|
||||
|
||||
int getZoneStage()
|
||||
{
|
||||
return zoneStage;
|
||||
}
|
||||
|
||||
int getCurrentPoints()
|
||||
{
|
||||
return currentPoints;
|
||||
}
|
||||
|
||||
int getCurrentMonitorizedDamage()
|
||||
{
|
||||
return currentMonitorizedDamage;
|
||||
}
|
||||
|
||||
void reset()
|
||||
{
|
||||
currentPoints = 0;
|
||||
currentMonitorizedDamage = 0;
|
||||
zoneStage = 0;
|
||||
}
|
||||
}
|
||||
|
||||
private static final class changeZoneStage implements Runnable
|
||||
{
|
||||
private final L2ZoneType zone;
|
||||
|
||||
public changeZoneStage(L2ZoneType a)
|
||||
{
|
||||
zone = a;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run()
|
||||
{
|
||||
try
|
||||
{
|
||||
zoneInfo currentInfo = _roomInfo.get(zone);
|
||||
switch (currentInfo.getZoneStage())
|
||||
{
|
||||
case 0:
|
||||
{
|
||||
zone.broadcastPacket(new ExShowScreenMessage(NpcStringId.MONITOR_THE_DAMAGE_FOR_30_SEC, ExShowScreenMessage.TOP_CENTER, 3000));
|
||||
break;
|
||||
}
|
||||
case 1:
|
||||
{
|
||||
zone.broadcastPacket(new ExShowScreenMessage(NpcStringId.SECONDS_LEFT, ExShowScreenMessage.TOP_CENTER, 3000));
|
||||
break;
|
||||
}
|
||||
case 2:
|
||||
{
|
||||
zone.broadcastPacket(new ExShowScreenMessage(NpcStringId.SECONDS_LEFT2, ExShowScreenMessage.TOP_CENTER, 3000));
|
||||
break;
|
||||
}
|
||||
case 3:
|
||||
{
|
||||
zone.broadcastPacket(new ExShowScreenMessage(NpcStringId.SECONDS_LEFT3, ExShowScreenMessage.TOP_CENTER, 3000));
|
||||
break;
|
||||
}
|
||||
case 4:
|
||||
{
|
||||
zone.broadcastPacket(new ExShowScreenMessage(NpcStringId.SECONDS_LEFT4, ExShowScreenMessage.TOP_CENTER, 3000));
|
||||
break;
|
||||
}
|
||||
case 5:
|
||||
{
|
||||
zone.broadcastPacket(new ExShowScreenMessage(NpcStringId.SECONDS_LEFT5, ExShowScreenMessage.TOP_CENTER, 3000));
|
||||
break;
|
||||
}
|
||||
case 6:
|
||||
{
|
||||
if (currentInfo.getCurrentMonitorizedDamage() >= 10)
|
||||
{
|
||||
zone.broadcastPacket(new ExShowScreenMessage(NpcStringId.DEMONIC_SYSTEM_WILL_ACTIVATE, ExShowScreenMessage.TOP_CENTER, 3000));
|
||||
String zoneName = zone.getName().toLowerCase().replace(" ", "_");
|
||||
_templates.stream().forEach(t -> t.despawn(g -> String.valueOf(g.getName()).equalsIgnoreCase(zoneName)));
|
||||
_templates.stream().forEach(t -> t.spawn(g -> String.valueOf(g.getName()).equalsIgnoreCase(zoneName.concat("_demonic")), null));
|
||||
zone.getPlayersInside().forEach(temp -> temp.sendPacket(new ExSendUIEvent(temp, false, false, 600, 0, NpcStringId.DEMONIC_SYSTEM_ACTIVATED)));
|
||||
currentInfo.setZoneStage(7);
|
||||
ThreadPoolManager.getInstance().scheduleGeneral(new changeZoneStage(zone), 600000); // 10min
|
||||
}
|
||||
else
|
||||
{
|
||||
currentInfo.reset();
|
||||
return;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 7:
|
||||
{
|
||||
currentInfo.reset();
|
||||
for (L2PcInstance player : zone.getPlayersInside())
|
||||
{
|
||||
if (player != null)
|
||||
{
|
||||
player.sendPacket(new ExSendUIEvent(player));
|
||||
}
|
||||
}
|
||||
String zoneName = zone.getName().toLowerCase().replace(" ", "_");
|
||||
_templates.stream().forEach(t -> t.despawn(g -> String.valueOf(g.getName()).equalsIgnoreCase(zoneName.concat("_demonic"))));
|
||||
_templates.stream().forEach(t -> t.spawn(g -> String.valueOf(g.getName()).equalsIgnoreCase(zoneName), null));
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (currentInfo.getZoneStage() < 6)
|
||||
{
|
||||
currentInfo.setZoneStage(currentInfo.getZoneStage() + 1);
|
||||
ThreadPoolManager.getInstance().scheduleGeneral(new changeZoneStage(zone), 5000);
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
|
||||
{
|
||||
for (Entry<L2ZoneType, zoneInfo> currentZone : _roomInfo.entrySet())
|
||||
{
|
||||
if (currentZone.getKey().isInsideZone(npc))
|
||||
{
|
||||
zoneInfo currentInfo = currentZone.getValue();
|
||||
int currentPoints = currentInfo.getCurrentPoints();
|
||||
if (currentPoints == 300)
|
||||
{
|
||||
if (currentInfo.getZoneStage() < 1)
|
||||
{
|
||||
return super.onKill(npc, killer, isSummon);
|
||||
}
|
||||
int currentDamage = currentInfo.getCurrentMonitorizedDamage();
|
||||
int calcDamage = currentDamage + 1;
|
||||
if (calcDamage >= 10)
|
||||
{
|
||||
calcDamage = 10;
|
||||
}
|
||||
currentInfo.setMonitorizedDamage(calcDamage);
|
||||
for (L2PcInstance player : currentZone.getKey().getPlayersInside())
|
||||
{
|
||||
if (player != null)
|
||||
{
|
||||
player.sendPacket(new ExSendUIEvent(player, ExSendUIEvent.TYPE_NORNIL, calcDamage, 10, NpcStringId.MONITOR_THE_DAMAGE));
|
||||
}
|
||||
}
|
||||
return super.onKill(npc, killer, isSummon);
|
||||
}
|
||||
|
||||
int calcPoints = currentPoints + 1;
|
||||
if (calcPoints >= 300)
|
||||
{
|
||||
calcPoints = 300;
|
||||
ThreadPoolManager.getInstance().scheduleGeneral(new changeZoneStage(currentZone.getKey()), 1000);
|
||||
}
|
||||
currentInfo.setCurrentPoint(calcPoints);
|
||||
for (L2PcInstance player : currentZone.getKey().getPlayersInside())
|
||||
{
|
||||
if (player != null)
|
||||
{
|
||||
player.sendPacket(new ExSendUIEvent(player, ExSendUIEvent.TYPE_NORNIL, calcPoints, 300, NpcStringId.DANGER_INCREASING_DANGER_INCREASING));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (npc.getDisplayEffect() > 0)
|
||||
{
|
||||
L2MonsterInstance copy = (L2MonsterInstance) addSpawn(npc.getId(), npc.getX(), npc.getY(), npc.getZ(), 0, true, 0, false);
|
||||
copy.setTarget(killer);
|
||||
copy.addDamageHate(killer, 500, 99999);
|
||||
copy.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, killer);
|
||||
}
|
||||
return super.onKill(npc, killer, isSummon);
|
||||
}
|
||||
|
||||
@Override
|
||||
public final String onSpawn(L2Npc npc)
|
||||
{
|
||||
if (getRandom(20) > 18)
|
||||
{
|
||||
npc.setDisplayEffect(1);
|
||||
}
|
||||
return super.onSpawn(npc);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSpawnActivate(SpawnTemplate template)
|
||||
{
|
||||
_templates.add(template);
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new HarnakUndergroundRuinsZone();
|
||||
}
|
||||
}
|
@ -1,254 +1,547 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
|
||||
<spawn name="HarnakUndergroundRuins">
|
||||
<spawn name="HarnakUndergroundRuinsZone" ai="HarnakUndergroundRuinsZone">
|
||||
<group>
|
||||
<npc id="33303" x="-114704" y="147908" z="-7720" respawnTime="60sec" /> <!-- First Warp Device of Harnak -->
|
||||
<npc id="33304" x="-114713" y="149261" z="-10784" respawnTime="60sec" /> <!-- Second Warp Device of Harnak -->
|
||||
<npc id="33305" x="-114711" y="150662" z="-13872" respawnTime="60sec" /> <!-- Harnak's Soul Circle -->
|
||||
<!-- <npc id="33322" x="-114703" y="179277" z="-13784" heading="0" respawnTime="60sec" />
|
||||
<npc id="33323" x="-111797" y="180482" z="-13784" heading="0" respawnTime="60sec" />
|
||||
<npc id="33324" x="-110984" y="185054" z="-13784" heading="0" respawnTime="60sec" />
|
||||
<npc id="33325" x="-110992" y="186886" z="-13792" heading="0" respawnTime="60sec" />
|
||||
<npc id="33326" x="-114699" y="186995" z="-13784" heading="0" respawnTime="60sec" />
|
||||
<npc id="33327" x="-118429" y="186915" z="-13784" heading="0" respawnTime="60sec" />
|
||||
<npc id="33328" x="-118432" y="185061" z="-13784" heading="0" respawnTime="60sec" />
|
||||
<npc id="33329" x="-117612" y="180489" z="-13784" heading="0" respawnTime="60sec" />Prison of Souls -->
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_1" spawnByDefault="false">
|
||||
<npc id="23349" x="-117855" y="180233" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-117923" y="180616" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-117378" y="180369" z="-13806" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_1">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room1" minZ="-7698" maxZ="-7298">
|
||||
<node x="-117328" y="145770" />
|
||||
<node x="-117908" y="145775" />
|
||||
<node x="-118354" y="145352" />
|
||||
<node x="-118305" y="144760" />
|
||||
<node x="-117888" y="144346" />
|
||||
<node x="-117300" y="144328" />
|
||||
<node x="-116873" y="144738" />
|
||||
<node x="-116869" y="145320" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 1 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_1_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-117855" y="180233" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-117923" y="180616" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-117378" y="180369" z="-13806" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_2">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room2" minZ="-7683" maxZ="-7283">
|
||||
<node x="-115035" y="144543" />
|
||||
<node x="-115457" y="144140" />
|
||||
<node x="-115448" y="143518" />
|
||||
<node x="-115009" y="143098" />
|
||||
<node x="-114389" y="143087" />
|
||||
<node x="-113960" y="143528" />
|
||||
<node x="-113976" y="144135" />
|
||||
<node x="-114403" y="144512" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 2 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_2" spawnByDefault="false">
|
||||
<npc id="23349" x="-118437" y="184716" z="-13809" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-118790" y="185153" z="-13809" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-118051" y="185217" z="-13809" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_3">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room3" minZ="-7681" maxZ="-7281">
|
||||
<node x="-112555" y="145322" />
|
||||
<node x="-112540" y="144740" />
|
||||
<node x="-112107" y="144298" />
|
||||
<node x="-111505" y="144329" />
|
||||
<node x="-111103" y="144763" />
|
||||
<node x="-111088" y="145353" />
|
||||
<node x="-111500" y="145780" />
|
||||
<node x="-112070" y="145797" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 3 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_2_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-118437" y="184716" z="-13809" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-118790" y="185153" z="-13809" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-118051" y="185217" z="-13809" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_4">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room4" minZ="-7687" maxZ="-7287">
|
||||
<node x="-111316" y="148897" />
|
||||
<node x="-110644" y="148897" />
|
||||
<node x="-110231" y="149353" />
|
||||
<node x="-110265" y="149970" />
|
||||
<node x="-110710" y="150367" />
|
||||
<node x="-111331" y="150346" />
|
||||
<node x="-111738" y="149892" />
|
||||
<node x="-111711" y="149286" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 4 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_3" spawnByDefault="false">
|
||||
<npc id="23349" x="-117965" y="186874" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-118584" y="186550" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-118495" y="187324" z="-13810" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_5">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room5" minZ="-7681" maxZ="-7281">
|
||||
<node x="-111701" y="151151" />
|
||||
<node x="-111284" y="150742" />
|
||||
<node x="-110691" y="150736" />
|
||||
<node x="-110274" y="151160" />
|
||||
<node x="-110282" y="151747" />
|
||||
<node x="-110699" y="152148" />
|
||||
<node x="-111284" y="152162" />
|
||||
<node x="-111700" y="151746" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 5 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_3_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-117965" y="186874" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-118584" y="186550" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-118495" y="187324" z="-13810" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_6">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room6" minZ="-7670" maxZ="-7270">
|
||||
<node x="-114406" y="150843" />
|
||||
<node x="-113984" y="151258" />
|
||||
<node x="-113983" y="151843" />
|
||||
<node x="-114414" y="152244" />
|
||||
<node x="-114997" y="152252" />
|
||||
<node x="-115391" y="151828" />
|
||||
<node x="-115395" y="151262" />
|
||||
<node x="-114991" y="150843" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 6 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_4" spawnByDefault="false">
|
||||
<npc id="23349" x="-114702" y="186579" z="-13811" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-114346" y="187150" z="-13811" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-115019" y="187114" z="-13811" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_7">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room7" minZ="-7698" maxZ="-7298">
|
||||
<node x="-117666" y="151195" />
|
||||
<node x="-117697" y="151810" />
|
||||
<node x="-118154" y="152202" />
|
||||
<node x="-118770" y="152192" />
|
||||
<node x="-119183" y="151725" />
|
||||
<node x="-119151" y="151124" />
|
||||
<node x="-118696" y="150708" />
|
||||
<node x="-118080" y="150737" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 7 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_4_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-114702" y="186579" z="-13811" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-114346" y="187150" z="-13811" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-115019" y="187114" z="-13811" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_1_Room_8">
|
||||
<territories>
|
||||
<territory name="spawnzone_floor1_room8" minZ="-7684" maxZ="-7284">
|
||||
<node x="-118153" y="148925" />
|
||||
<node x="-117756" y="149340" />
|
||||
<node x="-117747" y="149906" />
|
||||
<node x="-118149" y="150304" />
|
||||
<node x="-118724" y="150307" />
|
||||
<node x="-119112" y="149899" />
|
||||
<node x="-119121" y="149331" />
|
||||
<node x="-118717" y="148943" />
|
||||
</territory>
|
||||
</territories>
|
||||
<!-- Room 8 -->
|
||||
<npc id="22934" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_5" spawnByDefault="false">
|
||||
<npc id="23349" x="-111389" y="186899" z="-13812" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-110837" y="187235" z="-13812" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-110843" y="186525" z="-13812" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_2">
|
||||
<!-- Room 1 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room1" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room1" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room1" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room1" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room1" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room1" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<!-- Room 2 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room2" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<!-- Room 3 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room3" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room3" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room3" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room3" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room3" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room3" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<!-- Room 4 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room4" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room4" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room4" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room4" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room4" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room4" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<!-- Room 5 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room5" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room5" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room5" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room5" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room5" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room5" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<!-- Room 6 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room6" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room6" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room6" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room6" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room6" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room6" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<!-- Room 7 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room7" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room7" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room7" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room7" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room7" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room7" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<!-- Room 8 -->
|
||||
<npc id="22934" count="2" zone="spawnzone_floor2_room8" respawnTime="45sec" respawnRandom="5sec" /> <!-- Rakzan -->
|
||||
<npc id="22931" count="2" zone="spawnzone_floor2_room8" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Bathus -->
|
||||
<npc id="22933" count="2" zone="spawnzone_floor2_room8" respawnTime="45sec" respawnRandom="5sec" /> <!-- Krakia Lotus -->
|
||||
<npc id="22937" count="2" zone="spawnzone_floor2_room8" respawnTime="45sec" respawnRandom="5sec" /> <!-- Babonti -->
|
||||
<npc id="22936" count="2" zone="spawnzone_floor2_room8" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Ele -->
|
||||
<npc id="22935" count="2" zone="spawnzone_floor2_room8" respawnTime="45sec" respawnRandom="5sec" /> <!-- Weiss Khan -->
|
||||
<group name="harnak_underground_ruins_room_5_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-111389" y="186899" z="-13812" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-110837" y="187235" z="-13812" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-110843" y="186525" z="-13812" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="Harnak_Floor_3">
|
||||
<!-- Room 1 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room1" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<!-- Room 2 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room2" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<!-- Room 3 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room3" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<!-- Room 4 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room4" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<!-- Room 5 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room5" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<!-- Room 6 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room6" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<!-- Room 7 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room7" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<!-- Room 8 -->
|
||||
<npc id="23349" count="3" zone="spawnzone_floor3_room8" respawnTime="30sec" respawnRandom="5sec" /> <!-- Nocturm -->
|
||||
<group name="harnak_underground_ruins_room_6" spawnByDefault="false">
|
||||
<npc id="23349" x="-110997" y="184612" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-110604" y="185126" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-111264" y="185353" z="-13810" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_6_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-110997" y="184612" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-110604" y="185126" z="-13810" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-111264" y="185353" z="-13810" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_7" spawnByDefault="false">
|
||||
<npc id="23349" x="-112069" y="180762" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-111435" y="180657" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-111794" y="180134" z="-13806" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_7_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-112069" y="180762" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-111435" y="180657" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-111794" y="180134" z="-13806" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_8" spawnByDefault="false">
|
||||
<npc id="23349" x="-114382" y="179030" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-115089" y="179096" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23349" x="-114734" y="179603" z="-13806" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_8_demonic" spawnByDefault="false">
|
||||
<npc id="23350" x="-114382" y="179030" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-115089" y="179096" z="-13806" heading="0" respawnTime="60sec" />
|
||||
<npc id="23350" x="-114734" y="179603" z="-13806" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_9" spawnByDefault="false">
|
||||
<npc id="22931" x="-117303" y="146321" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-117367" y="146571" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-117558" y="146719" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-117797" y="146862" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-118005" y="146707" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118097" y="146484" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-117905" y="146241" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-117695" y="145929" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-117434" y="146076" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-117405" y="146213" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-117148" y="146436" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-117186" y="146540" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_9_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-117303" y="146321" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-117367" y="146571" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-117558" y="146719" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-117797" y="146862" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-118005" y="146707" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118097" y="146484" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-117905" y="146241" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-117695" y="145929" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-117434" y="146076" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-117405" y="146213" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-117148" y="146436" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-117186" y="146540" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_10" spawnByDefault="false">
|
||||
<npc id="22931" x="-118095" y="150885" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118030" y="151103" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118407" y="151262" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118492" y="151443" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-118669" y="151145" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118781" y="151061" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-118875" y="150841" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118689" y="150661" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118429" y="150653" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118230" y="150795" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-117991" y="151003" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118163" y="151071" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_10_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-118095" y="150885" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118030" y="151103" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118407" y="151262" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118492" y="151443" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-118669" y="151145" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118781" y="151061" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-118875" y="150841" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118689" y="150661" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118429" y="150653" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118230" y="150795" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-117991" y="151003" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118163" y="151071" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_11" spawnByDefault="false">
|
||||
<npc id="22931" x="-118122" y="152901" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118185" y="153118" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118359" y="153120" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118487" y="153112" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-118653" y="153130" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118890" y="152743" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-118685" y="152504" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118501" y="152360" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118267" y="152376" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118194" y="152484" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-118107" y="152850" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-117999" y="153098" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_11_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-118122" y="152901" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118185" y="153118" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118359" y="153120" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118487" y="153112" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-118653" y="153130" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118890" y="152743" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-118685" y="152504" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118501" y="152360" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118267" y="152376" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118194" y="152484" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-118107" y="152850" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-117999" y="153098" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_12" spawnByDefault="false">
|
||||
<npc id="22931" x="-114380" y="152995" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114302" y="153083" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114493" y="153382" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114882" y="153222" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-114937" y="153219" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-115046" y="152983" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-115120" y="152751" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114939" y="152592" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114543" y="152589" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114356" y="152555" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-114413" y="152922" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-114270" y="153193" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_12_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-114380" y="152995" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114302" y="153083" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114493" y="153382" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114882" y="153222" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-114937" y="153219" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-115046" y="152983" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-115120" y="152751" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114939" y="152592" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114543" y="152589" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114356" y="152555" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-114413" y="152922" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-114270" y="153193" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_13" spawnByDefault="false">
|
||||
<npc id="22931" x="-110690" y="152718" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-110588" y="153097" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110801" y="153127" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111186" y="153240" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-111245" y="153123" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-111301" y="152899" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-111388" y="152642" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-111060" y="152491" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110962" y="152464" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-110628" y="152451" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-110668" y="152820" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-110717" y="153068" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_13_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-110690" y="152718" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-110588" y="153097" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110801" y="153127" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111186" y="153240" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111245" y="153123" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-111301" y="152899" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-111388" y="152642" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-111060" y="152491" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-110962" y="152464" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110628" y="152451" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-110668" y="152820" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-110717" y="153068" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-110717" y="153068" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_14" spawnByDefault="false">
|
||||
<npc id="22931" x="-110694" y="151060" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-110766" y="151290" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110961" y="151292" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111175" y="151304" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-111221" y="151300" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-111308" y="151080" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-111257" y="150685" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-111059" y="150677" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110814" y="150651" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-110786" y="150636" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-110532" y="151023" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-110733" y="151112" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_14_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-110694" y="151060" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-110766" y="151290" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110961" y="151292" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111175" y="151304" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-111221" y="151300" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-111308" y="151080" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-111257" y="150685" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-111059" y="150677" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110814" y="150651" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-110786" y="150636" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-110532" y="151023" z="-10728" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-110733" y="151112" z="-10728" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_15" spawnByDefault="false">
|
||||
<npc id="22931" x="-111323" y="146447" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-111554" y="146711" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-111613" y="146699" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111994" y="146705" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-112071" y="146736" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-112149" y="146514" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-112220" y="146105" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-112011" y="146085" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-111621" y="145919" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111584" y="146213" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-111494" y="146444" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-111561" y="146664" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_15_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-111323" y="146447" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-111554" y="146711" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-111613" y="146699" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111994" y="146705" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-112071" y="146736" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-112149" y="146514" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-112220" y="146105" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-112011" y="146085" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-111621" y="145919" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111584" y="146213" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-111494" y="146444" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-111561" y="146664" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_16" spawnByDefault="false">
|
||||
<npc id="22931" x="-114243" y="145098" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114478" y="145330" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114649" y="145632" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114882" y="145632" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-115084" y="145496" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-115178" y="145292" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-114953" y="145046" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114922" y="144731" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114706" y="144893" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114330" y="144866" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-114245" y="145080" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-114260" y="145315" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_16_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-114243" y="145098" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114478" y="145330" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114649" y="145632" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114882" y="145632" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-115084" y="145496" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-115178" y="145292" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-114953" y="145046" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114922" y="144731" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114706" y="144893" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114330" y="144866" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-114245" y="145080" z="-10720" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-114260" y="145315" z="-10720" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_17" spawnByDefault="false">
|
||||
<npc id="22931" x="-117260" y="144985" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-117342" y="145197" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-117548" y="145320" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-117813" y="145368" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-117996" y="145376" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-117939" y="144969" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-118017" y="144767" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-117823" y="144768" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-117454" y="144721" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-117213" y="144697" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-117259" y="144925" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-117202" y="145316" z="-7656" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_17_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-117260" y="144985" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-117342" y="145197" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-117548" y="145320" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-117813" y="145368" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-117996" y="145376" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-117939" y="144969" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-118017" y="144767" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-117823" y="144768" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-117454" y="144721" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-117213" y="144697" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-117259" y="144925" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-117202" y="145316" z="-7656" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_18" spawnByDefault="false">
|
||||
<npc id="22931" x="-117938" y="149693" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118008" y="149911" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118352" y="149899" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118455" y="150077" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-118650" y="149794" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118765" y="149719" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-118682" y="149345" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118678" y="149327" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118435" y="149322" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118049" y="149286" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-117973" y="149630" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118164" y="149715" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_18_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-117938" y="149693" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118008" y="149911" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118352" y="149899" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118455" y="150077" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-118650" y="149794" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118765" y="149719" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-118682" y="149345" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118678" y="149327" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118435" y="149322" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118049" y="149286" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-117973" y="149630" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118164" y="149715" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_19" spawnByDefault="false">
|
||||
<npc id="22931" x="-118088" y="151538" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118199" y="151765" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118227" y="151779" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118451" y="151796" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-118827" y="151648" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118773" y="151588" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-118864" y="151189" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-118529" y="151176" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-118441" y="151144" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-118073" y="151261" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-118101" y="151508" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-118025" y="151595" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_19_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-118088" y="151538" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118199" y="151765" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118227" y="151779" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118451" y="151796" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-118827" y="151648" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118773" y="151588" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-118864" y="151189" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-118529" y="151176" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-118441" y="151144" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-118073" y="151261" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-118101" y="151508" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-118025" y="151595" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_20" spawnByDefault="false">
|
||||
<npc id="22931" x="-114210" y="151604" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114462" y="151848" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114489" y="151979" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114765" y="152032" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-114937" y="151717" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-115167" y="151623" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-115129" y="151266" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114934" y="151082" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114521" y="151227" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114460" y="151215" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-114404" y="151577" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-114259" y="151819" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_20_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-114210" y="151604" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114462" y="151848" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114489" y="151979" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114765" y="152032" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-114937" y="151717" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-115167" y="151623" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-115129" y="151266" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114934" y="151082" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114521" y="151227" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114460" y="151215" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-114404" y="151577" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-114259" y="151819" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_21" spawnByDefault="false">
|
||||
<npc id="22931" x="-110675" y="151364" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-110600" y="151637" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110951" y="151767" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111019" y="151925" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-111231" y="151652" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-111471" y="151397" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-111251" y="151303" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-111067" y="151031" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110983" y="151160" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-110625" y="151131" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-110643" y="151512" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-110562" y="151741" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_21_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-110675" y="151364" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-110600" y="151637" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110951" y="151767" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111019" y="151925" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-111231" y="151652" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-111471" y="151397" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-111251" y="151303" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-111067" y="151031" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110983" y="151160" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-110625" y="151131" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-110643" y="151512" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-110562" y="151741" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_22" spawnByDefault="false">
|
||||
<npc id="22931" x="-110529" y="149695" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-110581" y="149943" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110949" y="150091" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111176" y="149920" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-111359" y="149796" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-111453" y="149713" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-111245" y="149500" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-111088" y="149193" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-110803" y="149306" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-110755" y="149450" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-110674" y="149475" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-110736" y="149759" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_22_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-110529" y="149695" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-110581" y="149943" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110949" y="150091" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111176" y="149920" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-111359" y="149796" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-111453" y="149713" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-111245" y="149500" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-111088" y="149193" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-110803" y="149306" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-110755" y="149450" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-110674" y="149475" z="-7664" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-110736" y="149759" z="-7664" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_23" spawnByDefault="false">
|
||||
<npc id="22931" x="-111443" y="144976" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-111387" y="145339" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-111711" y="145495" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111837" y="145503" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-112168" y="145200" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-112133" y="145146" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-112061" y="144754" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-112022" y="144734" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-111608" y="144551" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-111416" y="144701" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-111299" y="145067" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-111357" y="145296" z="-7656" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_23_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-111443" y="144976" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-111387" y="145339" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-111711" y="145495" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111837" y="145503" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-112168" y="145200" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-112133" y="145146" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-112061" y="144754" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-112022" y="144734" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-111608" y="144551" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-111416" y="144701" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-111299" y="145067" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-111357" y="145296" z="-7656" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_24" spawnByDefault="false">
|
||||
<npc id="22931" x="-114214" y="143763" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114284" y="144134" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114632" y="144139" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114896" y="144272" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-114926" y="144007" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-115191" y="143784" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22931" x="-115089" y="143545" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22933" x="-114947" y="143557" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22934" x="-114691" y="143519" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22935" x="-114460" y="143623" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22936" x="-114375" y="143843" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22937" x="-114274" y="143930" z="-7656" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
<group name="harnak_underground_ruins_room_24_demonic" spawnByDefault="false">
|
||||
<npc id="22939" x="-114214" y="143763" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114284" y="144134" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114632" y="144139" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114896" y="144272" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-114926" y="144007" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-115191" y="143784" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22939" x="-115089" y="143545" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22941" x="-114947" y="143557" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22942" x="-114691" y="143519" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22943" x="-114460" y="143623" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22944" x="-114375" y="143843" z="-7656" heading="0" respawnTime="60sec" />
|
||||
<npc id="22945" x="-114274" y="143930" z="-7656" heading="0" respawnTime="60sec" />
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
@ -801,4 +801,76 @@
|
||||
<node X="-7726" Y="24753" />
|
||||
<node X="-19865" Y="24305" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 1" id="60142" type="ScriptZone" shape="Cylinder" minZ="-13864" maxZ="-13704" rad="1000">
|
||||
<node X="-117612" Y="180489" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 2" id="60143" type="ScriptZone" shape="Cylinder" minZ="-13864" maxZ="-13704" rad="1000">
|
||||
<node X="-118432" Y="185061" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 3" id="60144" type="ScriptZone" shape="Cylinder" minZ="-13864" maxZ="-13704" rad="1000">
|
||||
<node X="-118429" Y="186915" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 4" id="60145" type="ScriptZone" shape="Cylinder" minZ="-13864" maxZ="-13704" rad="1000">
|
||||
<node X="-114699" Y="186995" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 5" id="60146" type="ScriptZone" shape="Cylinder" minZ="-13872" maxZ="-13712" rad="1000">
|
||||
<node X="-110992" Y="186886" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 6" id="60147" type="ScriptZone" shape="Cylinder" minZ="-13864" maxZ="-13704" rad="1000">
|
||||
<node X="-110984" Y="185054" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 7" id="60148" type="ScriptZone" shape="Cylinder" minZ="-13864" maxZ="-13704" rad="1000">
|
||||
<node X="-111797" Y="180482" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 8" id="60149" type="ScriptZone" shape="Cylinder" minZ="-13864" maxZ="-13704" rad="1000">
|
||||
<node X="-114703" Y="179277" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 9" id="60150" type="ScriptZone" shape="Cylinder" minZ="-10800" maxZ="-10640" rad="1000">
|
||||
<node X="-117618" Y="146395" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 10" id="60151" type="ScriptZone" shape="Cylinder" minZ="-10800" maxZ="-10640" rad="1000">
|
||||
<node X="-118439" Y="150966" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 11" id="60152" type="ScriptZone" shape="Cylinder" minZ="-10808" maxZ="-10648" rad="1000">
|
||||
<node X="-118432" Y="152816" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 12" id="60153" type="ScriptZone" shape="Cylinder" minZ="-10808" maxZ="-10648" rad="1000">
|
||||
<node X="-114711" Y="152908" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 13" id="60154" type="ScriptZone" shape="Cylinder" minZ="-10808" maxZ="-10648" rad="1000">
|
||||
<node X="-110998" Y="152801" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 14" id="60155" type="ScriptZone" shape="Cylinder" minZ="-10808" maxZ="-10648" rad="1000">
|
||||
<node X="-111002" Y="150978" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 15" id="60156" type="ScriptZone" shape="Cylinder" minZ="-10800" maxZ="-10640" rad="1000">
|
||||
<node X="-111809" Y="146397" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 16" id="60157" type="ScriptZone" shape="Cylinder" minZ="-10800" maxZ="-10640" rad="1000">
|
||||
<node X="-114706" Y="145183" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 17" id="60158" type="ScriptZone" shape="Cylinder" minZ="-7736" maxZ="-7576" rad="1000">
|
||||
<node X="-117606" Y="145039" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 18" id="60159" type="ScriptZone" shape="Cylinder" minZ="-7744" maxZ="-7584" rad="1000">
|
||||
<node X="-118432" Y="149616" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 19" id="60160" type="ScriptZone" shape="Cylinder" minZ="-7744" maxZ="-7584" rad="1000">
|
||||
<node X="-118432" Y="151472" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 20" id="60161" type="ScriptZone" shape="Cylinder" minZ="-7744" maxZ="-7584" rad="1000">
|
||||
<node X="-114704" Y="151552" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 21" id="60162" type="ScriptZone" shape="Cylinder" minZ="-7744" maxZ="-7584" rad="1000">
|
||||
<node X="-110986" Y="151456" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 22" id="60163" type="ScriptZone" shape="Cylinder" minZ="-7744" maxZ="-7584" rad="1000">
|
||||
<node X="-110991" Y="149616" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 23" id="60164" type="ScriptZone" shape="Cylinder" minZ="-7736" maxZ="-7576" rad="1000">
|
||||
<node X="-111792" Y="145040" />
|
||||
</zone>
|
||||
<zone name="Harnak Underground Ruins Room 24" id="60165" type="ScriptZone" shape="Cylinder" minZ="-7736" maxZ="-7576" rad="1000">
|
||||
<node X="-114700" Y="143834" />
|
||||
</zone>
|
||||
</list>
|
@ -26,6 +26,17 @@ import com.l2jmobius.gameserver.network.OutgoingPackets;
|
||||
|
||||
public class ExSendUIEvent implements IClientOutgoingPacket
|
||||
{
|
||||
// UI Types
|
||||
public static int TYPE_COUNT_DOWN = 0;
|
||||
public static int TYPE_REMOVE = 1;
|
||||
public static int TYPE_ISTINA = 2;
|
||||
public static int TYPE_COUNTER = 3;
|
||||
public static int TYPE_GP_TIMER = 4;
|
||||
public static int TYPE_NORNIL = 5;
|
||||
public static int TYPE_DRACO_INCUBATION_1 = 6;
|
||||
public static int TYPE_DRACO_INCUBATION_2 = 7;
|
||||
public static int TYPE_CLAN_PROGRESS_BAR = 8;
|
||||
|
||||
private final int _objectId;
|
||||
private final int _type;
|
||||
private final int _countUp;
|
||||
@ -36,6 +47,28 @@ public class ExSendUIEvent implements IClientOutgoingPacket
|
||||
private final int _npcstringId;
|
||||
private List<String> _params = null;
|
||||
|
||||
/**
|
||||
* Remove UI
|
||||
* @param player
|
||||
*/
|
||||
public ExSendUIEvent(L2PcInstance player)
|
||||
{
|
||||
this(player, TYPE_REMOVE, 0, 0, 0, 0, 0, -1);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param player
|
||||
* @param uiType
|
||||
* @param currentPoints
|
||||
* @param maxPoints
|
||||
* @param npcString
|
||||
* @param params
|
||||
*/
|
||||
public ExSendUIEvent(L2PcInstance player, int uiType, int currentPoints, int maxPoints, NpcStringId npcString, String... params)
|
||||
{
|
||||
this(player, uiType, -1, currentPoints, maxPoints, -1, -1, npcString.getId(), params);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param player
|
||||
* @param hide
|
||||
|
Loading…
Reference in New Issue
Block a user