Updated Baium.

Contributed by Edoo.
This commit is contained in:
MobiusDevelopment 2020-01-15 11:33:50 +00:00
parent f9d513cbaf
commit 1ce7fd581d
17 changed files with 38 additions and 1043 deletions

View File

@ -1,3 +0,0 @@
<html><body>Researcher Keplon:<br>
Don't do this to me! I would love to give them out to you, but I am not so well off to give them out for nothing.
</body></html>

View File

@ -1,3 +0,0 @@
<html><body>Researcher Euclie:<br>
No way, no. I can't give it out for free. I didn't get this for free either.
</body></html>

View File

@ -1,3 +0,0 @@
<html><body>Researcher Pithgon:<br>
If you have no Adena, I have no interest trading with you. Sorry.
</body></html>

View File

@ -1,143 +0,0 @@
/*
* 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.TowerOfInsolence.ToIVortex;
import java.util.HashMap;
import java.util.Map;
import org.l2jmobius.gameserver.model.Location;
import org.l2jmobius.gameserver.model.actor.Npc;
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
import org.l2jmobius.gameserver.model.itemcontainer.Inventory;
import ai.AbstractNpcAI;
/**
* Tower of Insolence Vortex teleport AI.<br>
* Updated to High Five by pmq.<br>
* Reworked by xban1x.
* @author Plim
*/
public class ToIVortex extends AbstractNpcAI
{
// NPCs
private static final int KEPLON = 30949;
private static final int EUCLIE = 30950;
private static final int PITHGON = 30951;
private static final int DIMENSION_VORTEX_1 = 30952;
private static final int DIMENSION_VORTEX_2 = 30953;
private static final int DIMENSION_VORTEX_3 = 30954;
// Items
private static final int GREEN_DIMENSION_STONE = 4401;
private static final int BLUE_DIMENSION_STONE = 4402;
private static final int RED_DIMENSION_STONE = 4403;
private static final Map<String, Integer> TOI_FLOOR_ITEMS = new HashMap<>();
// Locations
private static final Map<String, Location> TOI_FLOORS = new HashMap<>();
// Misc
private static final Map<String, Integer> DIMENSION_TRADE = new HashMap<>();
static
{
TOI_FLOORS.put("1", new Location(114356, 13423, -5096));
TOI_FLOORS.put("2", new Location(114666, 13380, -3608));
TOI_FLOORS.put("3", new Location(111982, 16028, -2120));
TOI_FLOORS.put("4", new Location(114636, 13413, -640));
TOI_FLOORS.put("5", new Location(114152, 19902, 928));
TOI_FLOORS.put("6", new Location(117131, 16044, 1944));
TOI_FLOORS.put("7", new Location(113026, 17687, 2952));
TOI_FLOORS.put("8", new Location(115571, 13723, 3960));
TOI_FLOORS.put("9", new Location(114649, 14144, 4976));
TOI_FLOORS.put("10", new Location(118507, 16605, 5984));
TOI_FLOOR_ITEMS.put("1", GREEN_DIMENSION_STONE);
TOI_FLOOR_ITEMS.put("2", GREEN_DIMENSION_STONE);
TOI_FLOOR_ITEMS.put("3", GREEN_DIMENSION_STONE);
TOI_FLOOR_ITEMS.put("4", BLUE_DIMENSION_STONE);
TOI_FLOOR_ITEMS.put("5", BLUE_DIMENSION_STONE);
TOI_FLOOR_ITEMS.put("6", BLUE_DIMENSION_STONE);
TOI_FLOOR_ITEMS.put("7", RED_DIMENSION_STONE);
TOI_FLOOR_ITEMS.put("8", RED_DIMENSION_STONE);
TOI_FLOOR_ITEMS.put("9", RED_DIMENSION_STONE);
TOI_FLOOR_ITEMS.put("10", RED_DIMENSION_STONE);
DIMENSION_TRADE.put("GREEN", GREEN_DIMENSION_STONE);
DIMENSION_TRADE.put("BLUE", BLUE_DIMENSION_STONE);
DIMENSION_TRADE.put("RED", RED_DIMENSION_STONE);
}
private ToIVortex()
{
addStartNpc(KEPLON, EUCLIE, PITHGON, DIMENSION_VORTEX_1, DIMENSION_VORTEX_2, DIMENSION_VORTEX_3);
addTalkId(KEPLON, EUCLIE, PITHGON, DIMENSION_VORTEX_1, DIMENSION_VORTEX_2, DIMENSION_VORTEX_3);
}
@Override
public String onAdvEvent(String event, Npc npc, PlayerInstance player)
{
final int npcId = npc.getId();
switch (event)
{
case "1":
case "2":
case "3":
case "4":
case "5":
case "6":
case "7":
case "8":
case "9":
case "10":
{
final Location loc = TOI_FLOORS.get(event);
final int itemId = TOI_FLOOR_ITEMS.get(event);
if (hasQuestItems(player, itemId))
{
takeItems(player, itemId, 1);
player.teleToLocation(loc, true);
}
else
{
return "no-stones.htm";
}
break;
}
case "GREEN":
case "BLUE":
case "RED":
{
if (player.getAdena() >= 10000)
{
takeItems(player, Inventory.ADENA_ID, 10000);
giveItems(player, DIMENSION_TRADE.get(event), 1);
}
else
{
return npcId + "no-adena.htm";
}
break;
}
}
return super.onAdvEvent(event, npc, player);
}
public static void main(String[] args)
{
new ToIVortex();
}
}

View File

@ -1,3 +0,0 @@
<html><body>Dimensional Vortex:<br>
You do not have the Dimensional Stone required for teleportation.
</body></html>

View File

@ -0,0 +1,3 @@
<html><head><body>Dimensional Vortex:<br>
The Dimensional Vortex emits a faint light which twinkles out. The vortex becomes inactive. It seems like, in order to go to the place where the Dimensional Vortex is leading, you will need some special object.
</body></html>

View File

@ -0,0 +1,5 @@
<html><body>Dimensional Vortex:<br>
The Dimensional Vortex emits a faint light, in the midst of which an image appears. A giant that normally appears as a stone statue has come alive and is fighting with many people. Even angels have joined the fray. It seems that the angels are angry at the humans who have broken the seal of the stone statue.<br>
It appears impossible to cross over to that place right now. You have no choice but to wait until the fight is over.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Quest Baium 30952-04.html">Ask about the stone statue that has come alive.</button>
</body></html>

View File

@ -0,0 +1,5 @@
<html><body>Dimensional Vortex:<br>
The Dimensional Vortex emits a faint light, in the midst of which an image appears. A large, open space... but the gigantic, human-like stone statue is no longer there.<br>
It seems that while the statue is not visible, one could cross over to that place.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Quest Baium 30952-04.html">Ask about the stone statue.</button>
</body></html>

View File

@ -1,7 +1,7 @@
<html><body>Angelic Vortex:<br>
In ancient times a mighty emperor named Baium became so enamored of his own power that he began to fancy himself a god. He conscripted all of his people to build an awesome tower that reached almost to heaven.<br>
The gods were not amused. They struck him down, cursed him with immortality and imprisoned him in his own tower for eternity! A statue of the foolish emperor stands there to this day.<br>
Occasionally, the old emperor himself is woken up by those who seek his power. Unfortunately, when Baium is disturbed, so are the angels who guard him.<br>
Although the angels are certainly no friend of Baium, they regard Humans with equal disdain.<font color="LEVEL"> Ultimate success against Baium depends upon the defeat of the guardian angels.</font><br>
This is all I can tell you. Good luck!
<html><body>Dimensional Vortex:<br>
In ancient times a mighty emperor named Baium became so enamored of his own power that he began to fancy himself a god. He conscripted all of his people to build an awesome tower that reached almost to heaven.<br>
The gods were not amused. They struck him down, cursed him with immortality and imprisoned him in his own tower for eternity! A statue of the foolish emperor stands there to this day.<br>
Occasionally, the old emperor himself is woken up by those who seek his power. Unfortunately, when Baium is disturbed, so are the angels who guard him.<br>
Although the angels are certainly no friend of Baium, they regard Humans with equal disdain.<font color="LEVEL"> Ultimate success against Baium depends upon the defeat of the guardian angels.</font><br>
This is all I can tell you. Good luck!
</body></html>

View File

@ -0,0 +1,3 @@
<html><body>Dimensional Vortex:<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Quest Baium enter">Move to Baium</Button>
</body></html>

View File

@ -1,3 +0,0 @@
<html><head><body>Angelic Vortex:<br>
The Angelic Vortex emits a faint light which twinkles out. The vortex becomes inactive. It seems like, in order to go to the place where the Angelic Vortex is leading, you will need some special object.
</body></html>

View File

@ -1,5 +0,0 @@
<html><body>Angelic Vortex:<br>
The Angelic Vortex emits a faint light, in the midst of which an image appears. A giant that normally appears as a stone statue has come alive and is fighting with many people. Even angels have joined the fray. It seems that the angels are angry at the humans who have broken the seal of the stone statue.<br>
It appears impossible to cross over to that place right now. You have no choice but to wait until the fight is over.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Quest Baium 31862-04.html">Ask about the stone statue that has come alive.</button>
</body></html>

View File

@ -1,5 +0,0 @@
<html><body>Angelic Vortex:<br>
The Angelic Vortex emits a faint light, in the midst of which an image appears. A large, open space... but the gigantic, human-like stone statue is no longer there.<br>
It seems that while the statue is not visible, one could cross over to that place.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Quest Baium 31862-04.html">Ask about the stone statue.</button>
</body></html>

View File

@ -1,4 +0,0 @@
<html><body>Angelic Vortex:<br>
The Angelic Vortex emits a faint light, and in the midst of the light an image appears. In the deepest part of a spacious area, a gigantic stone statue is visible. The statue has a human-like appearance and is in a seated position, as though it was being held by some invisible force against its will.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Quest Baium enter">Go where the Angelic Vortex leads.</button>
</body></html>

View File

@ -48,6 +48,7 @@ import ai.AbstractNpcAI;
/**
* Baium AI.
* Updated to Prelude Of War Edoo.<br>
* @author St3eT
*/
public class Baium extends AbstractNpcAI
@ -55,7 +56,7 @@ public class Baium extends AbstractNpcAI
// NPCs
private static final int BAIUM = 29020; // Baium
private static final int BAIUM_STONE = 29025; // Baium
private static final int ANG_VORTEX = 31862; // Angelic Vortex
private static final int DIMENSION_VORTEX_1 = 30952; // Dimensional Vortex
private static final int ARCHANGEL = 29021; // Archangel
private static final int TELE_CUBE = 31842; // Teleportation Cubic
// Skills
@ -69,8 +70,6 @@ public class Baium extends AbstractNpcAI
private static final SkillHolder HEAL_OF_BAIUM = new SkillHolder(4135, 1); // Baium Heal
private static final SkillHolder BAIUM_PRESENT = new SkillHolder(4136, 1); // Baium's Gift
private static final SkillHolder ANTI_STRIDER = new SkillHolder(4258, 1); // Hinder Strider
// Items
private static final int FABRIC = 4295; // Blooded Fabric
// Zone
private static final NoRestartZone zone = ZoneManager.getInstance().getZoneById(70051, NoRestartZone.class); // Baium zone
// Status
@ -104,9 +103,9 @@ public class Baium extends AbstractNpcAI
private Baium()
{
addFirstTalkId(ANG_VORTEX);
addTalkId(ANG_VORTEX, TELE_CUBE, BAIUM_STONE);
addStartNpc(ANG_VORTEX, TELE_CUBE, BAIUM_STONE);
addFirstTalkId(DIMENSION_VORTEX_1);
addTalkId(DIMENSION_VORTEX_1, TELE_CUBE, BAIUM_STONE);
addStartNpc(DIMENSION_VORTEX_1, TELE_CUBE, BAIUM_STONE);
addAttackId(BAIUM, ARCHANGEL);
addKillId(BAIUM);
addSeeCreatureId(BAIUM);
@ -169,7 +168,7 @@ public class Baium extends AbstractNpcAI
{
switch (event)
{
case "31862-04.html":
case "30952-04.html":
{
return event;
}
@ -178,19 +177,14 @@ public class Baium extends AbstractNpcAI
String htmltext = null;
if (getStatus() == DEAD)
{
htmltext = "31862-03.html";
htmltext = "30952-03.html";
}
else if (getStatus() == IN_FIGHT)
{
htmltext = "31862-02.html";
}
else if (!hasQuestItems(player, FABRIC))
{
htmltext = "31862-01.html";
htmltext = "30952-02.html";
}
else
{
takeItems(player, FABRIC, 1);
player.teleToLocation(TELEPORT_IN_LOC);
}
return htmltext;

View File

@ -1,852 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
<spawn name="TowerOfInsolence">
<!-- UPDATE PRELUDE OF WAR -->
<group>
<npc id="23044" x="115374" y="16283" z="-5104" heading="14993" respawnTime="60sec" /> <!-- Exhausted Vengeful Spirit -->
<npc id="23044" x="114860" y="15507" z="-5104" heading="39998" respawnTime="60sec" /> <!-- Exhausted Vengeful Spirit -->
<npc id="23044" x="114015" y="16032" z="-5104" heading="14669" respawnTime="60sec" /> <!-- Exhausted Vengeful Spirit -->
<npc id="23044" x="114509" y="16707" z="-5104" heading="3119" respawnTime="60sec" /> <!-- Exhausted Vengeful Spirit -->
<npc id="23049" x="115221" y="16478" z="-5104" heading="59260" respawnTime="60sec" /> <!-- Knight's Vengeful Spirit -->
<npc id="23049" x="114803" y="15668" z="-5104" heading="34046" respawnTime="60sec" /> <!-- Knight's Vengeful Spirit -->
<npc id="23049" x="113978" y="15890" z="-5104" heading="31063" respawnTime="60sec" /> <!-- Knight's Vengeful Spirit -->
<npc id="23049" x="114419" y="16539" z="-5104" heading="8211" respawnTime="60sec" /> <!-- Knight's Vengeful Spirit -->
<npc id="23069" x="114758" y="16748" z="-5104" heading="62690" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23069" x="115353" y="16469" z="-5104" heading="57573" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23069" x="114804" y="15625" z="-5104" heading="41542" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23069" x="114056" y="16037" z="-5104" heading="17605" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23069" x="113815" y="17489" z="-5104" heading="2685" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23069" x="113125" y="17562" z="-5104" heading="37097" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23069" x="112788" y="16916" z="-5104" heading="48038" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23069" x="115984" y="16759" z="-5102" heading="53493" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23069" x="115930" y="17610" z="-5104" heading="22563" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23069" x="115693" y="14712" z="-5104" heading="53741" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23069" x="116500" y="15141" z="-5104" heading="6050" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23069" x="113010" y="15179" z="-5102" heading="30662" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23069" x="113735" y="14452" z="-5104" heading="59422" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23050" x="116139" y="16908" z="-5104" heading="56585" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="115735" y="17796" z="-5104" heading="19462" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="115556" y="14550" z="-5104" heading="44199" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="116503" y="15031" z="-5104" heading="4715" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="113090" y="15133" z="-5104" heading="31659" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="113739" y="14385" z="-5104" heading="55842" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="113620" y="17490" z="-5104" heading="8982" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="112916" y="16950" z="-5104" heading="38456" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="113007" y="17686" z="-5102" heading="15640" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23047" x="115996" y="16931" z="-5104" heading="51733" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="112913" y="17077" z="-5104" heading="33170" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="113734" y="17599" z="-5104" heading="3613" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="113222" y="17552" z="-5104" heading="34565" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="113694" y="14608" z="-5104" heading="48731" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="113158" y="14958" z="-5104" heading="27875" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="116758" y="15031" z="-5104" heading="65057" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="115628" y="14502" z="-5104" heading="36436" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="115920" y="17576" z="-5104" heading="10432" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23101" x="112678" y="16967" z="-5104" heading="34262" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23101" x="113003" y="17718" z="-5104" heading="15781" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23101" x="113771" y="17769" z="-5104" heading="1278" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23101" x="113748" y="14456" z="-5104" heading="51447" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23101" x="113019" y="15152" z="-5104" heading="21836" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23101" x="116064" y="14448" z="-5104" heading="47412" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23101" x="116071" y="15386" z="-5104" heading="61931" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23101" x="115439" y="17896" z="-5104" heading="17127" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23101" x="116553" y="16873" z="-5104" heading="55419" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="21077" x="115397" y="16233" z="-5104" heading="65239" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="116463" y="16965" z="-5104" heading="1501" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="115496" y="18090" z="-5104" heading="15961" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="113618" y="17956" z="-5104" heading="12080" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="112939" y="17779" z="-5104" heading="15846" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="112568" y="16893" z="-5104" heading="42549" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="112855" y="14987" z="-5104" heading="33000" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="113741" y="14637" z="-5104" heading="60309" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="116235" y="14312" z="-5104" heading="54404" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="116361" y="15398" z="-5104" heading="16808" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21076" x="113690" y="18170" z="-5104" heading="8250" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="112945" y="17867" z="-5104" heading="20978" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="112551" y="16978" z="-5104" heading="38384" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="112902" y="14950" z="-5104" heading="34617" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="113897" y="14330" z="-5104" heading="57038" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="116534" y="15479" z="-5104" heading="19438" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="115936" y="14133" z="-5104" heading="47746" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="115542" y="18001" z="-5104" heading="16044" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="116457" y="16971" z="-5104" heading="59832" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="23069" x="114397" y="16251" z="-3613" heading="35641" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23069" x="115153" y="16147" z="-3613" heading="60208" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23069" x="114568" y="15592" z="-3613" heading="52638" respawnTime="60sec" /> <!-- Vladimir's Warrior -->
<npc id="23050" x="115425" y="15136" z="-3613" heading="54135" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="116418" y="15162" z="-3613" heading="64980" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="115777" y="14237" z="-3613" heading="40486" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="116118" y="16851" z="-3611" heading="61375" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="115773" y="17826" z="-3613" heading="21937" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="115322" y="17348" z="-3613" heading="41607" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="112996" y="15392" z="-3613" heading="30491" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="113431" y="14342" z="-3613" heading="53194" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="113946" y="14701" z="-3613" heading="8977" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="112864" y="16927" z="-3613" heading="29651" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="113630" y="17095" z="-3613" heading="2017" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23050" x="113878" y="17842" z="-3612" heading="12398" respawnTime="60sec" /> <!-- Escort Knight's Vengeful Spirit -->
<npc id="23047" x="112943" y="15389" z="-3613" heading="27945" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="113534" y="14275" z="-3613" heading="52144" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="113931" y="14770" z="-3613" heading="8298" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="113858" y="17845" z="-3613" heading="18521" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="113633" y="17132" z="-3613" heading="46241" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="112858" y="16868" z="-3613" heading="36626" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="116097" y="15245" z="-3613" heading="62994" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="115684" y="14251" z="-3613" heading="45041" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="115444" y="15045" z="-3613" heading="20561" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="115972" y="16924" z="-3611" heading="60883" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="115827" y="17805" z="-3613" heading="18233" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23047" x="115333" y="17415" z="-3613" heading="40210" respawnTime="60sec" /> <!-- Terestian -->
<npc id="23045" x="112989" y="16831" z="-3613" heading="33040" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23045" x="113694" y="17210" z="-3613" heading="2766" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23045" x="113674" y="17936" z="-3613" heading="9767" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23045" x="113013" y="15254" z="-3613" heading="33783" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23045" x="113397" y="14417" z="-3613" heading="53353" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23045" x="114071" y="14780" z="-3613" heading="5478" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23045" x="116219" y="15311" z="-3611" heading="64283" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23045" x="115734" y="14226" z="-3613" heading="46950" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23045" x="115258" y="14921" z="-3613" heading="27895" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23045" x="116221" y="16723" z="-3613" heading="52592" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23045" x="115485" y="17202" z="-3613" heading="32631" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23101" x="116180" y="17578" z="-3613" heading="4696" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23101" x="113009" y="17317" z="-3613" heading="25811" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23101" x="113091" y="14627" z="-3613" heading="64836" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23101" x="116044" y="14638" z="-3613" heading="55057" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23046" x="116310" y="17647" z="-3613" heading="7029" respawnTime="60sec" /> <!-- Byron's Knight -->
<npc id="23045" x="115589" y="18075" z="-3613" heading="19956" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23046" x="113182" y="17473" z="-3611" heading="22461" respawnTime="60sec" /> <!-- Byron's Knight -->
<npc id="23046" x="113040" y="14643" z="-3613" heading="40034" respawnTime="60sec" /> <!-- Byron's Knight -->
<npc id="23046" x="116211" y="14592" z="-3613" heading="63010" respawnTime="60sec" /> <!-- Byron's Knight -->
<npc id="23048" x="116316" y="17592" z="-3613" heading="10698" respawnTime="60sec" /> <!-- Drill Demon -->
<npc id="23048" x="113331" y="14993" z="-3613" heading="36931" respawnTime="60sec" /> <!-- Drill Demon -->
<npc id="23048" x="116275" y="14683" z="-3613" heading="58779" respawnTime="60sec" /> <!-- Drill Demon -->
<npc id="23048" x="113301" y="17539" z="-3613" heading="29233" respawnTime="60sec" /> <!-- Drill Demon -->
<npc id="21077" x="114633" y="16346" z="-3613" heading="37268" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="114771" y="15655" z="-3613" heading="48198" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="115106" y="16186" z="-3613" heading="8917" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21076" x="114715" y="15500" z="-3613" heading="47720" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="115162" y="16126" z="-3613" heading="62739" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="114629" y="16365" z="-3613" heading="24434" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="115999" y="14575" z="-3613" heading="50449" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21077" x="116039" y="14757" z="-3613" heading="14127" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="116056" y="17541" z="-3611" heading="9858" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21076" x="116181" y="17424" z="-3613" heading="57688" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="113196" y="17339" z="-3613" heading="24536" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21077" x="113361" y="17378" z="-3613" heading="2420" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="113580" y="14661" z="-3613" heading="65240" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21076" x="113581" y="14742" z="-3613" heading="16255" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="23045" x="114197" y="15497" z="-2131" heading="56102" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23045" x="114258" y="16470" z="-2131" heading="8024" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23045" x="115104" y="16202" z="-2131" heading="64671" respawnTime="60sec" /> <!-- Wings of Viciousness -->
<npc id="23101" x="114299" y="16384" z="-2131" heading="22015" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23101" x="114284" y="15564" z="-2131" heading="43150" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23101" x="115097" y="16444" z="-2131" heading="26904" respawnTime="60sec" /> <!-- Slaughter Bathin -->
<npc id="23046" x="114931" y="16436" z="-2131" heading="33270" respawnTime="60sec" /> <!-- Byron's Knight -->
<npc id="23046" x="114245" y="15625" z="-2131" heading="39961" respawnTime="60sec" /> <!-- Byron's Knight -->
<npc id="23046" x="114594" y="16252" z="-2131" heading="13965" respawnTime="60sec" /> <!-- Byron's Knight -->
<npc id="23070" x="114523" y="16174" z="-2131" heading="41449" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="114163" y="15641" z="-2131" heading="51488" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="114996" y="16232" z="-2131" heading="13028" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23048" x="115556" y="14439" z="-2131" heading="43675" respawnTime="60sec" /> <!-- Drill Demon -->
<npc id="23048" x="116468" y="15045" z="-2131" heading="5611" respawnTime="60sec" /> <!-- Drill Demon -->
<npc id="23048" x="115983" y="15106" z="-2131" heading="46230" respawnTime="60sec" /> <!-- Drill Demon -->
<npc id="23048" x="115412" y="17897" z="-2131" heading="17277" respawnTime="60sec" /> <!-- Drill Demon -->
<npc id="23048" x="116376" y="17228" z="-2131" heading="58467" respawnTime="60sec" /> <!-- Drill Demon -->
<npc id="23048" x="115919" y="17141" z="-2131" heading="24100" respawnTime="60sec" /> <!-- Drill Demon -->
<npc id="23048" x="112957" y="15292" z="-2129" heading="28244" respawnTime="60sec" /> <!-- Drill Demon -->
<npc id="23048" x="113656" y="14142" z="-2129" heading="53787" respawnTime="60sec" /> <!-- Drill Demon -->
<npc id="23048" x="113900" y="14679" z="-2131" heading="9549" respawnTime="60sec" /> <!-- Drill Demon -->
<npc id="23056" x="113490" y="14199" z="-2131" heading="42096" respawnTime="60sec" /> <!-- Vampire Queen -->
<npc id="23056" x="113836" y="14729" z="-2131" heading="7520" respawnTime="60sec" /> <!-- Vampire Queen -->
<npc id="23056" x="112864" y="15279" z="-2131" heading="25718" respawnTime="60sec" /> <!-- Vampire Queen -->
<npc id="23056" x="115926" y="15083" z="-2131" heading="60998" respawnTime="60sec" /> <!-- Vampire Queen -->
<npc id="23056" x="115428" y="14377" z="-2131" heading="11446" respawnTime="60sec" /> <!-- Vampire Queen -->
<npc id="23056" x="116554" y="14969" z="-2131" heading="1516" respawnTime="60sec" /> <!-- Vampire Queen -->
<npc id="23056" x="115581" y="17824" z="-2131" heading="15950" respawnTime="60sec" /> <!-- Vampire Queen -->
<npc id="23056" x="115993" y="17022" z="-2131" heading="51429" respawnTime="60sec" /> <!-- Vampire Queen -->
<npc id="23056" x="116688" y="17050" z="-2131" heading="64232" respawnTime="60sec" /> <!-- Vampire Queen -->
<npc id="21077" x="115708" y="17664" z="-2131" heading="23833" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="116571" y="17057" z="-2131" heading="59229" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="116009" y="17137" z="-2131" heading="25603" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="113685" y="14752" z="-2131" heading="45537" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="112965" y="15449" z="-2131" heading="26351" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="113546" y="14305" z="-2131" heading="56942" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="115607" y="14337" z="-2131" heading="46584" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21077" x="116139" y="14996" z="-2131" heading="3109" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21076" x="115926" y="16853" z="-2131" heading="51740" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="116596" y="16804" z="-2131" heading="62794" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="113597" y="14200" z="-2131" heading="49093" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="112879" y="15151" z="-2131" heading="21578" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="113723" y="14885" z="-2131" heading="63426" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="115309" y="14524" z="-2131" heading="37267" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="116338" y="14669" z="-2131" heading="64918" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21077" x="116930" y="15065" z="-2131" heading="57509" respawnTime="60sec" /> <!-- Bathin's Wizard -->
<npc id="21076" x="116815" y="15080" z="-2131" heading="30337" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="21076" x="115578" y="17934" z="-2131" heading="14661" respawnTime="60sec" /> <!-- Bathin's Knight -->
<npc id="23057" x="113659" y="14138" z="-2131" heading="46065" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="112835" y="15273" z="-2131" heading="21011" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="113884" y="14777" z="-2131" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="115512" y="14481" z="-2131" heading="46138" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="116497" y="15022" z="-2131" heading="3854" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="115693" y="17732" z="-2131" heading="10786" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="115965" y="16970" z="-2131" heading="32635" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="116617" y="16933" z="-2131" heading="57379" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23072" x="116130" y="17602" z="-2131" heading="14172" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="116195" y="14379" z="-2131" heading="57934" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="112716" y="15067" z="-2131" heading="36711" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="113640" y="14142" z="-2131" heading="57933" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="116723" y="14983" z="-2131" heading="64026" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="115494" y="18016" z="-2131" heading="22890" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23071" x="116272" y="17470" z="-2131" heading="3235" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="115614" y="17930" z="-2131" heading="26230" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="113790" y="14176" z="-2131" heading="54065" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="112794" y="14967" z="-2131" heading="26466" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="116636" y="15124" z="-2131" heading="49373" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="115946" y="14529" z="-2131" heading="51838" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23070" x="113755" y="17806" z="-647" heading="32767" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="112922" y="17094" z="-649" heading="42612" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="113654" y="16370" z="-649" heading="57675" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="112823" y="16079" z="-647" heading="31541" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="113738" y="15455" z="-649" heading="50212" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="112757" y="15301" z="-647" heading="33084" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="113044" y="14370" z="-649" heading="53314" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="113740" y="14044" z="-649" heading="15685" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="114492" y="15320" z="-649" heading="8434" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="115380" y="14494" z="-649" heading="56066" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="116467" y="15074" z="-649" heading="10197" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="115470" y="15922" z="-649" heading="24769" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="116358" y="16808" z="-647" heading="3696" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="116301" y="17753" z="-649" heading="16689" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="115642" y="18319" z="-649" heading="16697" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23070" x="114691" y="16636" z="-649" heading="42459" respawnTime="60sec" /> <!-- Lazearth' Warrior -->
<npc id="23051" x="116348" y="14875" z="-649" heading="22326" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="115494" y="14101" z="-647" heading="36869" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="114756" y="15289" z="-649" heading="31066" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="113907" y="14155" z="-647" heading="46079" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="113106" y="14598" z="-647" heading="26169" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="112757" y="15347" z="-649" heading="22682" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="113823" y="15485" z="-647" heading="65165" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="112989" y="16001" z="-649" heading="34566" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="112995" y="16829" z="-649" heading="26245" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="113672" y="17887" z="-649" heading="9263" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="114657" y="16626" z="-649" heading="44597" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="115571" y="18138" z="-649" heading="10809" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="116513" y="16835" z="-647" heading="49806" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="116969" y="16026" z="-649" heading="402" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23057" x="116878" y="16023" z="-649" heading="98" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="116198" y="15067" z="-649" heading="55318" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="114710" y="15371" z="-649" heading="33915" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="115294" y="14638" z="-649" heading="56157" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="114611" y="13838" z="-649" heading="49498" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="113770" y="14174" z="-649" heading="44001" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="112969" y="14486" z="-649" heading="30869" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="112699" y="15267" z="-649" heading="20603" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="112905" y="16068" z="-647" heading="33047" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="113010" y="17043" z="-649" heading="24558" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="114031" y="17700" z="-649" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="114871" y="16610" z="-647" heading="58360" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="115585" y="18129" z="-649" heading="11904" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="116388" y="16747" z="-649" heading="49352" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23053" x="116326" y="14701" z="-649" heading="53393" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="115451" y="14360" z="-649" heading="51934" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="114830" y="15345" z="-649" heading="25429" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="114632" y="14003" z="-649" heading="48903" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="113862" y="14142" z="-649" heading="47372" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="113093" y="14422" z="-649" heading="64442" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="112561" y="15057" z="-649" heading="28994" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="112946" y="16041" z="-649" heading="36131" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="112982" y="17174" z="-649" heading="22782" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="113802" y="17737" z="-649" heading="5732" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="114663" y="16577" z="-647" heading="55964" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="115576" y="17983" z="-649" heading="11617" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="116425" y="16800" z="-649" heading="55636" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="116773" y="16089" z="-649" heading="1755" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23055" x="116341" y="15033" z="-649" heading="57317" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="115522" y="14254" z="-649" heading="57583" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="114639" y="15544" z="-649" heading="22324" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="113633" y="14008" z="-649" heading="42685" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="112850" y="14449" z="-647" heading="33758" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="112687" y="15305" z="-649" heading="20213" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="112425" y="16115" z="-649" heading="31568" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="112864" y="16961" z="-649" heading="28534" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="113863" y="17762" z="-649" heading="2850" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="114678" y="16617" z="-649" heading="54325" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="115539" y="18081" z="-649" heading="49264" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="116455" y="16863" z="-647" heading="54335" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="117013" y="16154" z="-647" heading="1614" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23054" x="116618" y="15333" z="-649" heading="64992" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="115441" y="14222" z="-649" heading="50805" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="114808" y="13884" z="-647" heading="52739" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="113799" y="14097" z="-649" heading="40607" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="112625" y="15228" z="-649" heading="21207" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="113848" y="15589" z="-649" heading="6794" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="112440" y="15937" z="-649" heading="32351" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="112755" y="17012" z="-649" heading="10599" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="113841" y="18082" z="-649" heading="14251" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="114742" y="16543" z="-649" heading="57947" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="115688" y="18264" z="-649" heading="9433" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="116995" y="16876" z="-647" heading="61593" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="117049" y="16147" z="-647" heading="288" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23072" x="116418" y="14782" z="-649" heading="54915" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="115593" y="14046" z="-647" heading="53194" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="113370" y="14286" z="-648" heading="37365" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="112300" y="15068" z="-649" heading="30803" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="112405" y="15995" z="-649" heading="33051" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="112661" y="17037" z="-649" heading="14420" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="113894" y="18025" z="-649" heading="5921" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="115718" y="17779" z="-649" heading="1297" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="116551" y="16693" z="-647" heading="52831" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="117010" y="16046" z="-647" heading="64815" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23071" x="116622" y="15107" z="-649" heading="48337" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="115555" y="14032" z="-649" heading="39473" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="114568" y="14338" z="-649" heading="19275" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23072" x="114600" y="14356" z="-649" heading="51279" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23071" x="113837" y="13760" z="-647" heading="51794" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="112820" y="14237" z="-649" heading="45283" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="112309" y="15167" z="-649" heading="14112" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="112133" y="16134" z="-647" heading="24846" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="112894" y="17464" z="-649" heading="12200" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="113932" y="17960" z="-649" heading="7552" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="115424" y="18278" z="-649" heading="19311" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="116587" y="17754" z="-647" heading="62499" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="116942" y="16761" z="-649" heading="40860" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="117034" y="15895" z="-649" heading="60531" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="115470" y="16001" z="-647" heading="30547" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23051" x="116228" y="14028" z="924" heading="43465" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="115497" y="13977" z="924" heading="30542" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="115096" y="13653" z="924" heading="40047" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="113758" y="13695" z="926" heading="33930" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="113212" y="14484" z="924" heading="19538" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="115403" y="14851" z="926" heading="43951" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="116278" y="15585" z="924" heading="12266" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="115545" y="16462" z="926" heading="22426" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23057" x="115394" y="16448" z="924" heading="29965" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="116097" y="15709" z="924" heading="57023" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="115383" y="14874" z="924" heading="41437" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="115083" y="13519" z="924" heading="54578" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="115535" y="14009" z="924" heading="10930" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="116328" y="14218" z="924" heading="1589" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="112730" y="14336" z="924" heading="29375" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="113443" y="15199" z="924" heading="35915" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="113104" y="16549" z="926" heading="16350" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23057" x="115058" y="17130" z="962" heading="59096" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23051" x="113144" y="16367" z="924" heading="30130" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23051" x="113832" y="17339" z="924" heading="10729" respawnTime="60sec" /> <!-- Byron's Confidant -->
<npc id="23057" x="113896" y="17271" z="924" heading="57028" respawnTime="60sec" /> <!-- Bonehead Slave -->
<npc id="23107" x="114456" y="16020" z="924" heading="36991" respawnTime="60sec" /> <!-- Elmoreden's Warrior -->
<npc id="23107" x="114784" y="15390" z="924" heading="52717" respawnTime="60sec" /> <!-- Elmoreden's Warrior -->
<npc id="23107" x="114805" y="16011" z="924" heading="46596" respawnTime="60sec" /> <!-- Elmoreden's Warrior -->
<npc id="23107" x="114523" y="15297" z="924" heading="42948" respawnTime="60sec" /> <!-- Elmoreden's Warrior -->
<npc id="23107" x="114791" y="16686" z="924" heading="11105" respawnTime="60sec" /> <!-- Elmoreden's Warrior -->
<npc id="23107" x="114531" y="17261" z="924" heading="18960" respawnTime="60sec" /> <!-- Elmoreden's Warrior -->
<npc id="23107" x="114841" y="17445" z="924" heading="5328" respawnTime="60sec" /> <!-- Elmoreden's Warrior -->
<npc id="23053" x="115764" y="14979" z="924" heading="62744" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="115953" y="15462" z="924" heading="42930" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="115674" y="16335" z="924" heading="31418" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="114660" y="17751" z="924" heading="31696" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="113844" y="17061" z="924" heading="49450" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="113133" y="16388" z="924" heading="38515" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="113594" y="15207" z="924" heading="364" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="115298" y="13617" z="924" heading="57993" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="116322" y="14108" z="926" heading="18664" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="113496" y="13985" z="926" heading="34045" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="113173" y="14451" z="924" heading="22744" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23053" x="112680" y="14389" z="924" heading="33654" respawnTime="60sec" /> <!-- Brutal Warrior -->
<npc id="23055" x="113784" y="13807" z="924" heading="55367" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="112775" y="14212" z="924" heading="29149" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="115097" y="13599" z="924" heading="61357" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="116128" y="14605" z="924" heading="11102" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="113521" y="15169" z="924" heading="23574" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="113074" y="16368" z="924" heading="17248" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="113699" y="16928" z="926" heading="41195" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="114868" y="17710" z="926" heading="1016" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="116092" y="16929" z="924" heading="63558" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="115775" y="16205" z="924" heading="39600" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="116092" y="15576" z="924" heading="51378" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23055" x="115502" y="14773" z="924" heading="42393" respawnTime="60sec" /> <!-- Demon Priest -->
<npc id="23106" x="114599" y="15367" z="924" heading="27398" respawnTime="60sec" /> <!-- Elmoreden's Maid -->
<npc id="23106" x="114750" y="15595" z="924" heading="10424" respawnTime="60sec" /> <!-- Elmoreden's Maid -->
<npc id="23106" x="114793" y="15951" z="924" heading="14279" respawnTime="60sec" /> <!-- Elmoreden's Maid -->
<npc id="23106" x="114592" y="16423" z="924" heading="19889" respawnTime="60sec" /> <!-- Elmoreden's Maid -->
<npc id="23106" x="114809" y="16799" z="924" heading="10788" respawnTime="60sec" /> <!-- Elmoreden's Maid -->
<npc id="23106" x="114512" y="17061" z="924" heading="25083" respawnTime="60sec" /> <!-- Elmoreden's Maid -->
<npc id="23106" x="114782" y="17375" z="924" heading="9328" respawnTime="60sec" /> <!-- Elmoreden's Maid -->
<npc id="23106" x="114603" y="17712" z="924" heading="21476" respawnTime="60sec" /> <!-- Elmoreden's Maid -->
<npc id="23105" x="114715" y="15211" z="924" heading="50591" respawnTime="60sec" /> <!-- Elmoreden's Archer -->
<npc id="23105" x="114835" y="15984" z="924" heading="14250" respawnTime="60sec" /> <!-- Elmoreden's Archer -->
<npc id="23105" x="114541" y="16566" z="924" heading="25769" respawnTime="60sec" /> <!-- Elmoreden's Archer -->
<npc id="23105" x="114833" y="17080" z="924" heading="12117" respawnTime="60sec" /> <!-- Elmoreden's Archer -->
<npc id="23105" x="114466" y="17489" z="924" heading="25031" respawnTime="60sec" /> <!-- Elmoreden's Archer -->
<npc id="23105" x="113052" y="16745" z="924" heading="38233" respawnTime="60sec" /> <!-- Elmoreden's Archer -->
<npc id="23105" x="113794" y="16141" z="924" heading="56931" respawnTime="60sec" /> <!-- Elmoreden's Archer -->
<npc id="23105" x="113888" y="15068" z="926" heading="48703" respawnTime="60sec" /> <!-- Elmoreden's Archer -->
<npc id="23105" x="115573" y="14713" z="924" heading="40959" respawnTime="60sec" /> <!-- Elmoreden's Archer -->
<npc id="23105" x="116248" y="16343" z="926" heading="13487" respawnTime="60sec" /> <!-- Elmoreden's Archer -->
<npc id="23104" x="116195" y="16359" z="924" heading="35823" respawnTime="60sec" /> <!-- Elmoreden's Lady -->
<npc id="23104" x="114831" y="17887" z="924" heading="7042" respawnTime="60sec" /> <!-- Elmoreden's Lady -->
<npc id="23104" x="113497" y="16101" z="924" heading="46570" respawnTime="60sec" /> <!-- Elmoreden's Lady -->
<npc id="23104" x="115420" y="15666" z="924" heading="7497" respawnTime="60sec" /> <!-- Elmoreden's Lady -->
<npc id="23104" x="116007" y="16873" z="924" heading="11242" respawnTime="60sec" /> <!-- Elmoreden's Lady -->
<npc id="23104" x="113055" y="16521" z="924" heading="42076" respawnTime="60sec" /> <!-- Elmoreden's Lady -->
<npc id="23104" x="113906" y="16625" z="924" heading="7395" respawnTime="60sec" /> <!-- Elmoreden's Lady -->
<npc id="23104" x="113920" y="15050" z="924" heading="49962" respawnTime="60sec" /> <!-- Elmoreden's Lady -->
<npc id="23104" x="114857" y="15048" z="924" heading="64421" respawnTime="60sec" /> <!-- Elmoreden's Lady -->
<npc id="23104" x="116268" y="15637" z="924" heading="15106" respawnTime="60sec" /> <!-- Elmoreden's Lady -->
<npc id="23054" x="116147" y="16204" z="924" heading="15768" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="115650" y="14739" z="924" heading="46295" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="113795" y="14758" z="924" heading="43370" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="113220" y="16753" z="924" heading="16237" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="114234" y="17897" z="924" heading="8514" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23054" x="115578" y="17556" z="924" heading="61814" respawnTime="60sec" /> <!-- Demon Knight -->
<npc id="23058" x="113610" y="16322" z="1943" heading="5391" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="113658" y="15749" z="1943" heading="50023" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="113016" y="15733" z="1945" heading="32072" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="113047" y="16441" z="1945" heading="15693" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="114545" y="14436" z="1943" heading="55800" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="114342" y="14986" z="1943" heading="22533" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="114934" y="15119" z="1943" heading="6774" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="114887" y="15779" z="1944" heading="62671" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="115035" y="16248" z="1943" heading="14520" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="114417" y="16093" z="1943" heading="34293" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23059" x="114713" y="15843" z="1943" heading="58988" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="114270" y="16319" z="1943" heading="24111" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="114354" y="14956" z="1943" heading="19449" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="114707" y="14426" z="1943" heading="50821" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="114941" y="15083" z="1943" heading="9088" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="113585" y="14704" z="1943" heading="55681" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="113001" y="15681" z="1943" heading="38622" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="113119" y="16214" z="1943" heading="16633" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="113554" y="16146" z="1943" heading="63947" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="113742" y="15629" z="1943" heading="52140" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23109" x="113089" y="15832" z="1943" heading="61633" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="113136" y="16390" z="1945" heading="15766" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="113496" y="16284" z="1943" heading="1332" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="113611" y="15753" z="1943" heading="51244" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="113697" y="14730" z="1943" heading="55203" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="114456" y="14550" z="1943" heading="55808" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="114615" y="14968" z="1943" heading="10549" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="114357" y="16010" z="1943" heading="24877" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="114885" y="16024" z="1943" heading="61243" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="114851" y="16397" z="1943" heading="17153" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23060" x="115800" y="17309" z="1943" heading="25216" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="115753" y="17041" z="1943" heading="43582" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="114923" y="17189" z="1943" heading="53893" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="114420" y="17561" z="1943" heading="25551" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="113248" y="17026" z="1943" heading="38261" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="113540" y="17358" z="1943" heading="8633" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23110" x="113312" y="17129" z="1943" heading="29031" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="113625" y="16999" z="1943" heading="51724" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="114254" y="17061" z="1943" heading="46497" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="114951" y="17070" z="1943" heading="64364" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="114325" y="17624" z="1943" heading="25311" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="115655" y="17320" z="1943" heading="39893" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="114380" y="16399" z="1945" heading="27889" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="114260" y="15825" z="1944" heading="46198" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="115081" y="14628" z="1943" heading="21505" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="114336" y="14609" z="1943" heading="38720" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="113534" y="14695" z="1943" heading="55342" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="112981" y="16416" z="1943" heading="19820" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23072" x="113529" y="14874" z="1943" heading="57956" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="114505" y="14530" z="1943" heading="60564" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="114955" y="14955" z="1943" heading="8588" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="116005" y="15042" z="1943" heading="5556" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="114581" y="17667" z="1943" heading="20008" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="115002" y="17112" z="1943" heading="49352" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="115992" y="17174" z="1945" heading="57045" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23071" x="115666" y="17218" z="1943" heading="29497" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="114892" y="17581" z="1943" heading="12367" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="113514" y="17282" z="1943" heading="33919" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="113627" y="15072" z="1945" heading="20607" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="114276" y="17035" z="1943" heading="35140" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="113332" y="17183" z="1943" heading="35992" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23108" x="113463" y="17265" z="1943" heading="36315" respawnTime="60sec" /> <!-- Binder -->
<npc id="23108" x="114676" y="17387" z="1943" heading="1484" respawnTime="60sec" /> <!-- Binder -->
<npc id="23108" x="115959" y="17115" z="1943" heading="61381" respawnTime="60sec" /> <!-- Binder -->
<npc id="23108" x="114648" y="16045" z="1943" heading="47167" respawnTime="60sec" /> <!-- Binder -->
<npc id="23108" x="115853" y="14892" z="1943" heading="6169" respawnTime="60sec" /> <!-- Binder -->
<npc id="23108" x="113356" y="15006" z="1945" heading="22601" respawnTime="60sec" /> <!-- Binder -->
<npc id="23108" x="113536" y="15962" z="1943" heading="13378" respawnTime="60sec" /> <!-- Binder -->
<npc id="23073" x="113411" y="15990" z="1943" heading="65177" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23073" x="115740" y="14761" z="1945" heading="2453" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23073" x="115687" y="14922" z="1943" heading="19701" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23073" x="115098" y="17698" z="1943" heading="9903" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23110" x="113596" y="16365" z="1943" heading="6839" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23058" x="116865" y="14629" z="2953" heading="14367" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="117090" y="15430" z="2955" heading="11243" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="117065" y="16223" z="2953" heading="16519" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="116928" y="17062" z="2953" heading="16092" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="116346" y="17586" z="2955" heading="27758" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="115560" y="18507" z="2953" heading="21608" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="114637" y="18437" z="2955" heading="32952" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23058" x="113604" y="18300" z="2955" heading="35453" respawnTime="60sec" /> <!-- Platinum Tribe Soldier -->
<npc id="23059" x="116696" y="14639" z="2953" heading="43398" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="116895" y="15380" z="2954" heading="14289" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="116897" y="16201" z="2953" heading="15704" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="117030" y="16884" z="2953" heading="12389" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="116322" y="17460" z="2953" heading="27461" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="114716" y="18502" z="2953" heading="32881" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="113948" y="18267" z="2955" heading="36430" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="115376" y="18346" z="2954" heading="64740" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23109" x="115489" y="18463" z="2953" heading="15377" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="114915" y="18489" z="2953" heading="32619" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="113655" y="18430" z="2953" heading="31782" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="116523" y="17481" z="2953" heading="54988" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="116905" y="16875" z="2953" heading="54009" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="117041" y="16204" z="2953" heading="50477" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="117060" y="15538" z="2953" heading="49734" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23109" x="116792" y="14648" z="2953" heading="49976" respawnTime="60sec" /> <!-- Bound Warrior -->
<npc id="23060" x="116401" y="14379" z="2955" heading="28366" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="117021" y="15452" z="2953" heading="56756" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="116989" y="16131" z="2955" heading="52524" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="116802" y="16922" z="2953" heading="15617" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="116487" y="17611" z="2953" heading="20384" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="115605" y="18445" z="2953" heading="60009" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="114590" y="18533" z="2953" heading="32660" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="113661" y="18406" z="2955" heading="35896" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23110" x="113984" y="18314" z="2953" heading="32700" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="114634" y="18313" z="2953" heading="11269" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="115408" y="18079" z="2953" heading="59611" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="116580" y="17884" z="2953" heading="689" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="116558" y="14441" z="2953" heading="52263" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23072" x="115428" y="16694" z="2953" heading="19320" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="114387" y="17452" z="2955" heading="36726" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="113307" y="16886" z="2955" heading="38862" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="113070" y="16101" z="2953" heading="47799" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="113478" y="15030" z="2953" heading="54174" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="114448" y="14660" z="2953" heading="49977" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="115505" y="15259" z="2953" heading="2089" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23071" x="115505" y="15259" z="2953" heading="2089" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="115330" y="16459" z="2958" heading="18161" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="114293" y="17590" z="2955" heading="25936" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="113125" y="17024" z="2955" heading="37051" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="113128" y="16208" z="2953" heading="48141" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="113498" y="15013" z="2955" heading="23433" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="114334" y="14751" z="2953" heading="63020" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23108" x="115494" y="15149" z="2953" heading="57730" respawnTime="60sec" /> <!-- Binder -->
<npc id="23108" x="114462" y="17550" z="2955" heading="24376" respawnTime="60sec" /> <!-- Binder -->
<npc id="23108" x="113306" y="16973" z="2953" heading="37007" respawnTime="60sec" /> <!-- Binder -->
<npc id="23108" x="113518" y="15050" z="2953" heading="52751" respawnTime="60sec" /> <!-- Binder -->
<npc id="23108" x="114297" y="14842" z="2953" heading="721" respawnTime="60sec" /> <!-- Binder -->
<npc id="23108" x="115479" y="16524" z="2954" heading="16555" respawnTime="60sec" /> <!-- Binder -->
<npc id="23108" x="114312" y="16013" z="2990" heading="42711" respawnTime="60sec" /> <!-- Binder -->
<npc id="23073" x="114380" y="15800" z="2990" heading="55223" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23073" x="114039" y="15928" z="2990" heading="29022" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23073" x="114149" y="16224" z="2990" heading="12672" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23073" x="114543" y="16138" z="2990" heading="63294" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23061" x="114286" y="16590" z="2990" heading="55999" respawnTime="60sec" /> <!-- Platinum Tribe Shaman -->
<npc id="23061" x="113902" y="16294" z="2990" heading="39957" respawnTime="60sec" /> <!-- Platinum Tribe Shaman -->
<npc id="23061" x="113984" y="15651" z="2990" heading="50906" respawnTime="60sec" /> <!-- Platinum Tribe Shaman -->
<npc id="23061" x="114577" y="15639" z="2990" heading="682" respawnTime="60sec" /> <!-- Platinum Tribe Shaman -->
<npc id="23061" x="114797" y="16142" z="2990" heading="12294" respawnTime="60sec" /> <!-- Platinum Tribe Shaman -->
<npc id="23059" x="114806" y="17143" z="3963" heading="48933" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="116079" y="16832" z="3963" heading="62164" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="116239" y="15619" z="3963" heading="61298" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="115448" y="17310" z="3963" heading="25218" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="114384" y="16020" z="3963" heading="42943" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="114446" y="14893" z="3963" heading="945" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="113871" y="14757" z="3964" heading="35234" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="115079" y="14495" z="3963" heading="61754" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="114710" y="15948" z="3963" heading="11381" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23059" x="115124" y="17284" z="3965" heading="12996" respawnTime="60sec" /> <!-- Platinum Tribe Archer -->
<npc id="23060" x="115131" y="17305" z="3963" heading="12996" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="116173" y="16676" z="3963" heading="58721" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="115807" y="15481" z="3963" heading="45454" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="115362" y="17491" z="3963" heading="16740" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="114661" y="16154" z="3963" heading="44766" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="114458" y="14836" z="3963" heading="58277" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23060" x="113763" y="14787" z="3963" heading="34310" respawnTime="60sec" /> <!-- Platinum Tribe Warrior -->
<npc id="23110" x="114250" y="14408" z="3965" heading="56530" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="114063" y="15174" z="3965" heading="18797" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="115113" y="14507" z="3963" heading="62679" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="114500" y="15873" z="3963" heading="14288" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="114901" y="16088" z="3963" heading="3216" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23110" x="114915" y="17677" z="3965" heading="18736" respawnTime="60sec" /> <!-- Bound Archer -->
<npc id="23072" x="115006" y="17210" z="3963" heading="60819" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="114563" y="16143" z="3963" heading="43583" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="114074" y="14854" z="3965" heading="43548" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="115078" y="14467" z="3963" heading="62144" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="116229" y="16503" z="3963" heading="50162" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23072" x="115883" y="15601" z="3963" heading="45096" respawnTime="60sec" /> <!-- Birestian -->
<npc id="23071" x="115805" y="15410" z="3965" heading="38128" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23108" x="116057" y="15480" z="3963" heading="2826" respawnTime="60sec" /> <!-- Binder -->
<npc id="23073" x="115929" y="15389" z="3963" heading="39214" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23061" x="115867" y="15857" z="3963" heading="16669" respawnTime="60sec" /> <!-- Platinum Tribe Shaman -->
<npc id="23063" x="115443" y="15428" z="3963" heading="40759" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="115548" y="15628" z="3963" heading="11341" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="116224" y="16656" z="3963" heading="14472" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="115628" y="17441" z="3965" heading="9843" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="115074" y="17706" z="3963" heading="27605" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="114332" y="16219" z="3963" heading="39501" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="114819" y="15640" z="3965" heading="55947" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="113967" y="14955" z="3963" heading="41554" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="114213" y="14838" z="3963" heading="60674" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23073" x="113835" y="14550" z="3965" heading="48836" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23073" x="114613" y="15044" z="3963" heading="60882" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23073" x="115136" y="16155" z="3963" heading="6339" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23073" x="115430" y="15564" z="3963" heading="37342" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23071" x="114865" y="17070" z="3963" heading="36856" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="114727" y="16328" z="3963" heading="43916" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="114234" y="14766" z="3963" heading="48976" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23071" x="115009" y="14481" z="3963" heading="61823" respawnTime="60sec" /> <!-- Beastian -->
<npc id="23073" x="115162" y="14620" z="3963" heading="7692" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23073" x="114046" y="14688" z="3963" heading="30333" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23073" x="114421" y="16449" z="3964" heading="15740" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23073" x="114956" y="17223" z="3963" heading="21688" respawnTime="60sec" /> <!-- Kenneth Bastian -->
<npc id="23061" x="116167" y="16586" z="3963" heading="49151" respawnTime="60sec" /> <!-- Platinum Tribe Shaman -->
<npc id="23061" x="115887" y="15605" z="3963" heading="45322" respawnTime="60sec" /> <!-- Platinum Tribe Shaman -->
<npc id="23061" x="114196" y="15897" z="3963" heading="33833" respawnTime="60sec" /> <!-- Platinum Tribe Shaman -->
<npc id="23061" x="114043" y="15067" z="3963" heading="41068" respawnTime="60sec" /> <!-- Platinum Tribe Shaman -->
<npc id="23061" x="114653" y="14378" z="3963" heading="49471" respawnTime="60sec" /> <!-- Platinum Tribe Shaman -->
<npc id="23063" x="115187" y="17186" z="3963" heading="33319" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="113420" y="16187" z="4973" heading="49730" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="113455" y="15287" z="4973" heading="47110" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="114683" y="15456" z="4973" heading="9819" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="115339" y="14910" z="4973" heading="55380" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="115877" y="15446" z="4975" heading="12689" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="116027" y="16211" z="4973" heading="12820" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="115766" y="16972" z="4973" heading="18956" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="115209" y="17347" z="4973" heading="26616" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23063" x="114208" y="17228" z="4975" heading="21852" respawnTime="60sec" /> <!-- Heaven's Palace Knight -->
<npc id="23064" x="114076" y="17327" z="4973" heading="1796" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="113357" y="16380" z="4973" heading="44823" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="113512" y="15391" z="4973" heading="49038" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="114789" y="15305" z="4973" heading="4246" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="115488" y="14845" z="4973" heading="58119" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="115825" y="15427" z="4973" heading="13092" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="115962" y="16242" z="4973" heading="11360" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="115820" y="16840" z="4973" heading="19787" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="115238" y="17206" z="4973" heading="27373" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23112" x="114163" y="17184" z="4973" heading="24545" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="113422" y="16551" z="4973" heading="42048" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="113511" y="15659" z="4973" heading="46282" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="113519" y="15225" z="4973" heading="49344" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="114944" y="15186" z="4973" heading="3715" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="114708" y="15306" z="4973" heading="33040" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="115441" y="14993" z="4973" heading="59609" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="115902" y="15181" z="4973" heading="4102" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="116003" y="16301" z="4975" heading="48005" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="115736" y="16968" z="4973" heading="18531" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="115247" y="17370" z="4973" heading="23874" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="113960" y="17352" z="4973" heading="41942" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="113598" y="16230" z="4973" heading="54625" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23065" x="113598" y="16230" z="4973" heading="54625" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="113571" y="15530" z="4973" heading="47897" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="113752" y="15047" z="4973" heading="59363" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="114599" y="15418" z="4973" heading="9002" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="115486" y="14868" z="4973" heading="57020" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="116008" y="15067" z="4973" heading="2045" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="116169" y="16115" z="4973" heading="15750" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="115321" y="17229" z="4973" heading="24049" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="114013" y="17465" z="4973" heading="28243" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23111" x="113309" y="16679" z="4973" heading="42860" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="113455" y="15673" z="4973" heading="50654" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="113619" y="14931" z="4973" heading="47191" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="114580" y="15598" z="4973" heading="7610" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="115552" y="14949" z="4973" heading="27194" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="115935" y="15751" z="4973" heading="10900" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="115643" y="16179" z="4973" heading="27876" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="115744" y="16747" z="4973" heading="12847" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="115276" y="17471" z="4973" heading="42661" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="114108" y="17413" z="4973" heading="41565" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23066" x="113383" y="16670" z="4973" heading="12866" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="113864" y="16149" z="4973" heading="56189" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="113638" y="15732" z="4973" heading="36526" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="113300" y="15157" z="4973" heading="41950" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114264" y="15240" z="4973" heading="12063" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="115694" y="15008" z="4973" heading="64722" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="115992" y="15871" z="4973" heading="16547" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="115718" y="16620" z="4973" heading="19050" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="115345" y="17414" z="4973" heading="20803" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114010" y="17525" z="4973" heading="37822" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23074" x="113567" y="16598" z="4973" heading="58314" respawnTime="60sec" /> <!-- Heaven's Palace Noble Warrior -->
<npc id="23074" x="113252" y="15455" z="4973" heading="37417" respawnTime="60sec" /> <!-- Heaven's Palace Noble Warrior -->
<npc id="23074" x="114512" y="15350" z="4973" heading="6630" respawnTime="60sec" /> <!-- Heaven's Palace Noble Warrior -->
<npc id="23074" x="115817" y="14945" z="4973" heading="61898" respawnTime="60sec" /> <!-- Heaven's Palace Noble Warrior -->
<npc id="23074" x="115416" y="15924" z="4973" heading="27357" respawnTime="60sec" /> <!-- Heaven's Palace Noble Warrior -->
<npc id="23074" x="114604" y="16727" z="4973" heading="25343" respawnTime="60sec" /> <!-- Heaven's Palace Noble Warrior -->
<npc id="23074" x="114125" y="16040" z="4973" heading="55466" respawnTime="60sec" /> <!-- Heaven's Palace Noble Warrior -->
<npc id="23064" x="117152" y="16744" z="5983" heading="13966" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="116703" y="17114" z="5983" heading="26449" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="116522" y="17907" z="5984" heading="18433" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="115028" y="18556" z="5983" heading="16559" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="114480" y="18294" z="5983" heading="38274" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="113704" y="18506" z="5983" heading="30959" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="113167" y="17681" z="5983" heading="42860" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="112430" y="17313" z="5983" heading="37806" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="112396" y="16421" z="5985" heading="51463" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="112069" y="15629" z="5985" heading="25887" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="112475" y="15144" z="5983" heading="56081" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23065" x="112450" y="15274" z="5983" heading="18365" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="112207" y="15585" z="5983" heading="16790" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="112094" y="15501" z="5983" heading="39435" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="112339" y="15126" z="5983" heading="55956" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="112390" y="16170" z="5983" heading="10013" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="112345" y="16460" z="5983" heading="17989" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="112403" y="17221" z="5983" heading="11280" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="112664" y="17345" z="5983" heading="4626" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="112883" y="17987" z="5983" heading="12160" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="113128" y="17922" z="5983" heading="62831" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="113541" y="18516" z="5983" heading="11564" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="113913" y="18509" z="5983" heading="217" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="114305" y="18410" z="5983" heading="63598" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="114513" y="18448" z="5983" heading="60587" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="115223" y="18605" z="5983" heading="64572" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="115132" y="18433" z="5983" heading="44076" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="116410" y="17961" z="5983" heading="4592" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="116663" y="17785" z="5983" heading="56576" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="116918" y="16953" z="5985" heading="35906" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="116765" y="16688" z="5983" heading="43690" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="117124" y="16471" z="5983" heading="59865" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="117090" y="16713" z="5983" heading="17839" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="116983" y="14976" z="5983" heading="4405" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="116952" y="14857" z="5983" heading="46493" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="116449" y="14083" z="5985" heading="43216" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="116260" y="14191" z="5983" heading="27353" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="114997" y="13577" z="5983" heading="32953" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="115008" y="13691" z="5983" heading="15380" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="114341" y="13439" z="5983" heading="33443" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23064" x="114465" y="13462" z="5983" heading="59228" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="115047" y="13591" z="5983" heading="7536" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="116026" y="14012" z="5983" heading="9848" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23064" x="116831" y="14881" z="5983" heading="7368" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23065" x="115488" y="13835" z="5983" heading="2287" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23065" x="115597" y="13915" z="5983" heading="6603" respawnTime="60sec" /> <!-- Heaven's Palace Terminator -->
<npc id="23064" x="115617" y="13788" z="5985" heading="14241" respawnTime="60sec" /> <!-- Heaven's Palace Fighter -->
<npc id="23068" x="114548" y="16286" z="5983" heading="9859" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="114832" y="16190" z="5983" heading="59899" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="114512" y="15754" z="5983" heading="42548" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23074" x="114414" y="15852" z="5983" heading="24575" respawnTime="60sec" /> <!-- Heaven's Palace Noble Warrior -->
<npc id="23074" x="114636" y="15787" z="5983" heading="62565" respawnTime="60sec" /> <!-- Heaven's Palace Noble Warrior -->
<npc id="23074" x="114987" y="16190" z="5983" heading="8910" respawnTime="60sec" /> <!-- Heaven's Palace Noble Warrior -->
<npc id="23074" x="114770" y="16432" z="5983" heading="24008" respawnTime="60sec" /> <!-- Heaven's Palace Noble Warrior -->
<npc id="23074" x="114352" y="16295" z="5983" heading="34704" respawnTime="60sec" /> <!-- Heaven's Palace Noble Warrior -->
<npc id="23074" x="114180" y="16115" z="5983" heading="32665" respawnTime="60sec" /> <!-- Heaven's Palace Noble Warrior -->
<npc id="23066" x="114382" y="15667" z="5983" heading="52342" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114868" y="15912" z="5983" heading="62345" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114496" y="16476" z="5983" heading="20780" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114545" y="16007" z="5983" heading="43062" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114364" y="13504" z="5983" heading="59263" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="115407" y="13958" z="5983" heading="19198" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="116230" y="14501" z="5983" heading="9803" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="116724" y="15306" z="5983" heading="12574" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="116635" y="17013" z="5983" heading="21682" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="116318" y="17775" z="5983" heading="21663" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="115085" y="18676" z="5983" heading="17262" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114053" y="18574" z="5983" heading="24488" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="113004" y="17945" z="5985" heading="35489" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="112500" y="17414" z="5983" heading="44111" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="112282" y="16289" z="5983" heading="48436" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23112" x="115115" y="16556" z="6993" heading="53676" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="114705" y="16024" z="6993" heading="54788" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="113849" y="16945" z="6995" heading="39701" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="115352" y="15185" z="6993" heading="56845" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="115919" y="15057" z="6993" heading="60344" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="114028" y="14942" z="6993" heading="43916" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="113218" y="15039" z="6995" heading="31355" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="114694" y="14151" z="6993" heading="53343" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="115315" y="14199" z="6995" heading="63448" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="114743" y="17881" z="6993" heading="14527" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="114085" y="17912" z="6994" heading="30397" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23112" x="113761" y="15574" z="6993" heading="42391" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim Escort -->
<npc id="23111" x="113259" y="14986" z="6993" heading="21278" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="113733" y="15478" z="6993" heading="7451" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="114067" y="15106" z="6993" heading="59331" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="114536" y="15963" z="6993" heading="11338" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="115035" y="16417" z="6993" heading="8027" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="115364" y="15320" z="6993" heading="50938" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="115829" y="14977" z="6993" heading="55481" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="113864" y="16687" z="6993" heading="24429" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="113576" y="17336" z="6993" heading="20575" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="114837" y="14059" z="6993" heading="55285" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="115279" y="14274" z="6993" heading="2555" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="114575" y="17831" z="6993" heading="24644" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23111" x="113986" y="17955" z="6993" heading="25536" respawnTime="60sec" /> <!-- Heaven's Palace Seraphim -->
<npc id="23066" x="114014" y="18052" z="6993" heading="13452" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114624" y="17917" z="6993" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114292" y="17655" z="6993" heading="40395" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114986" y="16470" z="6993" heading="45654" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="115196" y="15504" z="6993" heading="57124" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="115846" y="14854" z="6995" heading="56702" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="113912" y="16673" z="6993" heading="22773" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="113351" y="17360" z="6995" heading="24538" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="113906" y="15590" z="6993" heading="45246" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="113177" y="15073" z="6995" heading="39778" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114572" y="14215" z="6993" heading="10804" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="115404" y="14059" z="6993" heading="977" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114562" y="15989" z="6993" heading="12107" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23075" x="115450" y="15000" z="6993" heading="51108" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="116081" y="14726" z="6994" heading="62060" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="115212" y="15791" z="6995" heading="19867" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="114652" y="15433" z="6993" heading="39416" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="113959" y="14954" z="6995" heading="37751" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="114924" y="14027" z="6993" heading="55271" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="115294" y="14055" z="6993" heading="37541" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="114606" y="16145" z="6993" heading="22050" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="113893" y="16768" z="6993" heading="24087" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="113294" y="17423" z="6993" heading="24500" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23068" x="115958" y="14517" z="6995" heading="54391" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="115407" y="15368" z="6993" heading="23140" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="114506" y="15570" z="6993" heading="31058" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="113605" y="14435" z="6993" heading="48279" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="113973" y="15706" z="6995" heading="13240" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="113664" y="16708" z="6993" heading="25556" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="113145" y="17495" z="6993" heading="22101" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="114675" y="17715" z="6995" heading="17605" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="113963" y="17949" z="6993" heading="24513" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="114766" y="14113" z="6993" heading="54726" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="115007" y="14477" z="6993" heading="17864" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23067" x="114914" y="14496" z="6993" heading="30665" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="114749" y="13895" z="6993" heading="42168" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="113759" y="17164" z="6993" heading="19696" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="113364" y="17153" z="6993" heading="38062" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="114825" y="17939" z="6995" heading="24987" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="114189" y="18032" z="6993" heading="32639" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="115621" y="15361" z="6995" heading="60246" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="116071" y="14557" z="6993" heading="53433" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23066" x="113628" y="15700" z="7993" heading="45956" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="113790" y="16219" z="7993" heading="10222" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114935" y="16986" z="7995" heading="25774" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114237" y="16935" z="7993" heading="36017" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114400" y="16310" z="7993" heading="37905" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114907" y="16000" z="7993" heading="60420" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="115543" y="16481" z="7993" heading="15884" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="115565" y="15685" z="7993" heading="49683" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114977" y="15094" z="7993" heading="40035" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23066" x="114262" y="15157" z="7993" heading="33202" respawnTime="60sec" /> <!-- Heaven's Palace Priest -->
<npc id="23075" x="114433" y="15083" z="7993" heading="34071" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="114906" y="15130" z="7993" heading="64865" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="115624" y="15678" z="7993" heading="7480" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="115503" y="16495" z="7993" heading="17057" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="114488" y="16322" z="7993" heading="29364" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="114991" y="15926" z="7993" heading="58562" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="114246" y="17019" z="7993" heading="33198" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="115012" y="16828" z="7993" heading="60442" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="113739" y="15640" z="7993" heading="49436" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23075" x="113673" y="16162" z="7995" heading="12615" respawnTime="60sec" /> <!-- Heaven's Palace Noble Knight -->
<npc id="23068" x="113551" y="15907" z="7993" heading="48055" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="113671" y="16518" z="7993" heading="18453" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="114194" y="17038" z="7993" heading="8870" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="114929" y="17096" z="7993" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="114224" y="16242" z="7993" heading="40907" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="114843" y="15882" z="7993" heading="64363" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="114301" y="16975" z="7993" heading="34270" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="115146" y="16917" z="7993" heading="64226" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="114302" y="16277" z="7993" heading="45200" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="114718" y="15742" z="7993" heading="55855" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="114904" y="16427" z="7993" heading="9793" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="115604" y="15757" z="7993" heading="46560" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="114387" y="15246" z="7993" heading="31888" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="115063" y="15129" z="7993" heading="50887" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23068" x="115478" y="16508" z="7993" heading="20501" respawnTime="60sec" /> <!-- Heaven's Palace Sniper -->
<npc id="23067" x="114262" y="15923" z="7993" heading="32567" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="114959" y="15849" z="7993" heading="63349" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="114322" y="16051" z="7993" heading="28244" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="114675" y="15964" z="7993" heading="63015" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="115071" y="16843" z="7993" heading="43186" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="113674" y="16215" z="7993" heading="49818" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="115741" y="15999" z="7993" heading="2890" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="115020" y="15092" z="7993" heading="9753" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="23067" x="114374" y="15202" z="7993" heading="27798" respawnTime="60sec" /> <!-- Heaven's Palace Judge -->
<npc id="31862" x="112624" y="14032" z="10080" heading="0" respawnTime="60sec" /> <!-- Angelic Vortex -->
<npc id="30952" x="114232" y="12376" z="-5126" heading="10847" respawnTime="60sec" /> <!-- Dimensional Vortex 1 -->
</group>
</spawn>
</list>

View File

@ -851,16 +851,16 @@
</drop>
</dropLists>
</npc>
<npc id="29021" level="74" type="Monster" name="Archangel">
<!-- Confirmed CT2.5 -->
<npc id="29021" level="117" type="Monster" name="Archangel">
<!-- NEW UPDATE: PRELUDE OF WAR -->
<race>DIVINE</race>
<sex>MALE</sex>
<equipment rhand="93" /> <!-- Winged Spear -->
<acquire exp="9855" sp="2" />
<acquire exp="32431118400" sp="29187936" />
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
<vitals hp="186915" hpRegen="158" mp="1475" mpRegen="3" />
<attack physical="1395" magical="371" random="10" critical="4" accuracy="0" attackSpeed="253" type="POLE" range="80" distance="80" width="120" />
<defence physical="5108" magical="1686" evasion="-18" />
<vitals hp="3964047.77781" hpRegen="9.5" mp="3958.491" mpRegen="3.3" />
<attack physical="106139" magical="100061" random="30" critical="4.75" accuracy="4.75" attackSpeed="250" type="POLE" range="40" distance="80" width="120" />
<defence physical="10541" magical="6125" evasion="-18" />
<speed>
<walk ground="50" />
<run ground="170" />