Updated Primeval Island and added missing spawns to Storm Island.

Contributed by Edoo.
This commit is contained in:
MobiusDevelopment
2020-01-19 11:08:39 +00:00
parent e921e0b0c5
commit 7d7081c138
13 changed files with 930 additions and 1153 deletions

View File

@@ -0,0 +1,3 @@
<html><body>Expedition Guard:<br>
There are many dangerous monsters outside the camps. Don't let your guard down.
</body></html>

View File

@@ -0,0 +1,8 @@
<html><body>Expedition Teleporter:<br>
We will safely send you to our camps.<br>
Where would you like to go?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_teleport OTHER 0">Eastern Camp</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_teleport OTHER 1">Western Camp</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_teleport OTHER 2">Southern Camp</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_teleport OTHER 3">Northern Camp</Button>
</body></html>

View File

@@ -1,3 +0,0 @@
<html><body>Orahochin:<br>
Oh ho -- you have sought me out while battling the dinosaurs, have you? And now you ask me to teleport you to that place? That island was created as as a sanctuary; it is my duty is to protect its inhabitants from external harm. I certainly have no intention of making that place a refuge for reckless adventurers! It is my policy not to teleport any who are engaged in battle, so return after the battle has ended.
</body></html>

View File

@@ -1,6 +0,0 @@
<html><body>Orahochin:<br>
Welcome! I am Orahochin, proud warrior of the Elroki tribe! I was sent here to guard this place. In truth, I guard the hope and future of the tribe itself. You don't understand? Ah, my young friend, I hope your feet are quicker than your wits! Ha ha!<br>
See the island over there? There you will find a village of innocent, peaceful Elroki natives. They are far different than the degraded Elrokhians you find here, that I can assure you.<br>
To protect them, I will transport only those to the island that mean them no harm. Ah... You don't seem like the dangerous sort -- I will teleport you to the island if you wish.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Quest ElrokiTeleporters">Teleport.</Button>
</body></html>

View File

@@ -1,3 +0,0 @@
<html><body>Gariachin:<br>
Oh, no! This is not good, not good at all. My sincerest apologies -- I cannot tell you what happened in detail -- but I cannot teleport you to your destination at the moment. I'm terribly sorry for the inconvenience.
</body></html>

View File

@@ -1,5 +0,0 @@
<html><body>Gariachin:<br>
Welcome! I am Gariachin. I am entrusted with the teleportation of visitors to this island. It may sound strange to you, but I've come to love this island and respect its people. It is a precious place, housing the hope, wisdom and future of the Elroki tribe.<br>
I will transport you to the southern beach of the Primeval Plains. If you have the chance, will you send my regards to my friend, Orahochin?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Quest ElrokiTeleporters">Teleport.</Button>
</body></html>

View File

@@ -1,63 +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.PrimevalIsle.ElrokiTeleporters;
import org.l2jmobius.gameserver.model.Location;
import org.l2jmobius.gameserver.model.actor.Npc;
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
import ai.AbstractNpcAI;
/**
* Elroki teleport AI.
* @author Plim
*/
public class ElrokiTeleporters extends AbstractNpcAI
{
// NPCs
private static final int ORAHOCHIN = 32111;
private static final int GARIACHIN = 32112;
// Locations
private static final Location TELEPORT_ORAHOCIN = new Location(4990, -1879, -3178);
private static final Location TELEPORT_GARIACHIN = new Location(7557, -5513, -3221);
private ElrokiTeleporters()
{
addFirstTalkId(ORAHOCHIN, GARIACHIN);
addStartNpc(ORAHOCHIN, GARIACHIN);
addTalkId(ORAHOCHIN, GARIACHIN);
}
@Override
public String onTalk(Npc npc, PlayerInstance talker)
{
if (!talker.isInCombat())
{
talker.teleToLocation((npc.getId() == ORAHOCHIN) ? TELEPORT_ORAHOCIN : TELEPORT_GARIACHIN);
}
else
{
return npc.getId() + "-no.html";
}
return super.onTalk(npc, talker);
}
public static void main(String[] args)
{
new ElrokiTeleporters();
}
}

View File

@@ -1,500 +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.PrimevalIsle;
import org.l2jmobius.commons.util.CommonUtil;
import org.l2jmobius.gameserver.ai.CtrlIntention;
import org.l2jmobius.gameserver.enums.ChatType;
import org.l2jmobius.gameserver.geoengine.GeoEngine;
import org.l2jmobius.gameserver.handler.IItemHandler;
import org.l2jmobius.gameserver.handler.ItemHandler;
import org.l2jmobius.gameserver.model.Location;
import org.l2jmobius.gameserver.model.World;
import org.l2jmobius.gameserver.model.actor.Attackable;
import org.l2jmobius.gameserver.model.actor.Creature;
import org.l2jmobius.gameserver.model.actor.Npc;
import org.l2jmobius.gameserver.model.actor.Playable;
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
import org.l2jmobius.gameserver.model.holders.SkillHolder;
import org.l2jmobius.gameserver.model.items.instance.ItemInstance;
import org.l2jmobius.gameserver.model.skills.Skill;
import org.l2jmobius.gameserver.network.NpcStringId;
import org.l2jmobius.gameserver.util.Util;
import ai.AbstractNpcAI;
/**
* Primeval Isle AI.
* @author St3eT
*/
public class PrimevalIsle extends AbstractNpcAI
{
// NPC
private static final int EGG = 18344; // Ancient Egg
private static final int SAILREN = 29065; // Sailren
private static final int ORNIT = 22742; // Ornithomimus
private static final int DEINO = 22743; // Deinonychus
private static final int[] SPRIGNANT =
{
18345, // Sprigant (Anesthesia)
18346, // Sprigant (Deadly Poison)
};
private static final int[] MONSTERS =
{
22196, // Velociraptor
22198, // Velociraptor
22200, // Ornithomimus
22202, // Ornithomimus
22203, // Deinonychus
22205, // Deinonychus
22208, // Pachycephalosaurus
22210, // Pachycephalosaurus
22211, // Wild Strider
22213, // Wild Strider
22223, // Velociraptor
22224, // Ornithomimus
22225, // Deinonychus
22226, // Pachycephalosaurus
22227, // Wild Strider
22742, // Ornithomimus
22743, // Deinonychus
};
private static final int[] TREX =
{
22215, // Tyrannosaurus
22216, // Tyrannosaurus
22217, // Tyrannosaurus
};
private static final int[] VEGETABLE =
{
22200, // Ornithomimus
22201, // Ornithomimus
22202, // Ornithomimus
22203, // Deinonychus
22204, // Deinonychus
22205, // Deinonychus
22224, // Ornithomimus
22225, // Deinonychus
};
// Item
private static final int DEINONYCHUS = 14828; // Deinonychus Mesozoic Stone
// Skill
private static final SkillHolder ANESTHESIA = new SkillHolder(5085, 1); // Anesthesia
private static final SkillHolder DEADLY_POISON = new SkillHolder(5086, 1); // Deadly Poison
private static final SkillHolder SELFBUFF1 = new SkillHolder(5087, 1); // Berserk
private static final SkillHolder SELFBUFF2 = new SkillHolder(5087, 2); // Berserk
private static final SkillHolder LONGRANGEDMAGIC1 = new SkillHolder(5120, 1); // Stun
private static final SkillHolder PHYSICALSPECIAL1 = new SkillHolder(5083, 4); // Stun
private static final SkillHolder PHYSICALSPECIAL2 = new SkillHolder(5081, 4); // Silence
private static final SkillHolder PHYSICALSPECIAL3 = new SkillHolder(5082, 4); // NPC Spinning, Slashing Trick
private static final SkillHolder CREW_SKILL = new SkillHolder(6172, 1); // Presentation - Tyranno
private static final SkillHolder INVIN_BUFF_ON = new SkillHolder(5225, 1); // Invincible
private PrimevalIsle()
{
addSpawnId(TREX);
addSpawnId(SPRIGNANT);
addSpawnId(MONSTERS);
addAggroRangeEnterId(TREX);
addSpellFinishedId(TREX);
addAttackId(EGG);
addAttackId(TREX);
addAttackId(MONSTERS);
addKillId(EGG, SAILREN, DEINO, ORNIT);
addSeeCreatureId(TREX);
addSeeCreatureId(MONSTERS);
}
@Override
public String onSpellFinished(Npc npc, PlayerInstance player, Skill skill)
{
if (skill.getId() == CREW_SKILL.getSkillId())
{
startQuestTimer("START_INVUL", 4000, npc, null);
final Npc target = (Npc) npc.getTarget();
if (target != null)
{
target.doDie(npc);
}
}
if (npc.isInCombat())
{
final Attackable mob = (Attackable) npc;
final Creature target = mob.getMostHated();
if (((npc.getCurrentHp() / npc.getMaxHp()) * 100) < 60)
{
if (skill.getId() == SELFBUFF1.getSkillId())
{
npc.setScriptValue(3);
if ((target != null))
{
npc.setTarget(target);
mob.setRunning();
mob.addDamageHate(target, 0, 555);
mob.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, target);
}
}
}
else if (((npc.getCurrentHp() / npc.getMaxHp()) * 100) < 30)
{
if (skill.getId() == SELFBUFF1.getSkillId())
{
npc.setScriptValue(1);
if ((target != null))
{
npc.setTarget(target);
mob.setRunning();
mob.addDamageHate(target, 0, 555);
mob.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, target);
}
}
else if (skill.getId() == SELFBUFF2.getSkillId())
{
npc.setScriptValue(5);
if ((target != null))
{
npc.setTarget(target);
mob.setRunning();
mob.addDamageHate(target, 0, 555);
mob.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, target);
}
}
}
}
return super.onSpellFinished(npc, player, skill);
}
@Override
public String onAdvEvent(String event, Npc npc, PlayerInstance player)
{
switch (event)
{
case "USE_SKILL":
{
if ((npc != null) && !npc.isDead())
{
npc.doCast((npc.getId() == SPRIGNANT[0] ? ANESTHESIA.getSkill() : DEADLY_POISON.getSkill()));
startQuestTimer("USE_SKILL", 15000, npc, null);
}
break;
}
case "GHOST_DESPAWN":
{
if ((npc != null) && !npc.isDead())
{
if (!npc.isInCombat())
{
npc.deleteMe();
}
else
{
startQuestTimer("GHOST_DESPAWN", 1800000, npc, null);
}
}
break;
}
case "TREX_ATTACK":
{
if ((npc != null) && (player != null))
{
npc.setScriptValue(0);
if (player.isInsideRadius3D(npc, 800))
{
npc.setTarget(player);
npc.doCast(LONGRANGEDMAGIC1.getSkill());
addAttackPlayerDesire(npc, player);
}
}
break;
}
case "START_INVUL":
{
if ((npc != null) && !npc.isDead())
{
npc.doCast(INVIN_BUFF_ON.getSkill());
startQuestTimer("START_INVUL_2", 30000, npc, null);
}
break;
}
case "START_INVUL_2":
{
if ((npc != null) && !npc.isDead())
{
INVIN_BUFF_ON.getSkill().applyEffects(npc, npc);
}
break;
}
}
return super.onAdvEvent(event, npc, player);
}
@Override
public String onSeeCreature(Npc npc, Creature creature, boolean isSummon)
{
if (CommonUtil.contains(MONSTERS, npc.getId()))
{
if (creature.isPlayer())
{
final Attackable mob = (Attackable) npc;
final int ag_type = npc.getParameters().getInt("ag_type", 0);
final int probPhysicalSpecial1 = npc.getParameters().getInt("ProbPhysicalSpecial1", 0);
final int probPhysicalSpecial2 = npc.getParameters().getInt("ProbPhysicalSpecial2", 0);
final SkillHolder physicalSpecial1 = npc.getParameters().getObject("PhysicalSpecial1", SkillHolder.class);
final SkillHolder physicalSpecial2 = npc.getParameters().getObject("PhysicalSpecial2", SkillHolder.class);
if (((getRandom(100) < 30) && (npc.getId() == DEINO)) || ((npc.getId() == ORNIT) && npc.isScriptValue(0)))
{
mob.clearAggroList();
npc.setScriptValue(1);
npc.setRunning();
final int distance = 3000;
final int heading = Util.calculateHeadingFrom(creature, npc);
final double angle = Util.convertHeadingToDegree(heading);
final double radian = Math.toRadians(angle);
final double sin = Math.sin(radian);
final double cos = Math.cos(radian);
final int newX = (int) (npc.getX() + (cos * distance));
final int newY = (int) (npc.getY() + (sin * distance));
final Location loc = GeoEngine.getInstance().canMoveToTargetLoc(npc.getX(), npc.getY(), npc.getZ(), newX, newY, npc.getZ(), npc.getInstanceWorld());
npc.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, loc, 0);
}
else if (ag_type == 1)
{
if (getRandom(100) <= (probPhysicalSpecial1 * npc.getVariables().getInt("SKILL_MULTIPLER")))
{
if (!npc.isSkillDisabled(physicalSpecial1.getSkill()))
{
npc.setTarget(creature);
npc.doCast(physicalSpecial1.getSkill());
}
}
else if ((getRandom(100) <= (probPhysicalSpecial2 * npc.getVariables().getInt("SKILL_MULTIPLER"))) && !npc.isSkillDisabled(physicalSpecial2.getSkill()))
{
npc.setTarget(creature);
npc.doCast(physicalSpecial2.getSkill());
}
}
}
}
else if (CommonUtil.contains(VEGETABLE, creature.getId()))
{
npc.setTarget(creature);
npc.doCast(CREW_SKILL.getSkill());
npc.setRunning();
npc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, creature);
}
return super.onSeeCreature(npc, creature, isSummon);
}
@Override
public String onAggroRangeEnter(Npc npc, PlayerInstance player, boolean isSummon)
{
if (npc.isScriptValue(0))
{
npc.setScriptValue(1);
npc.broadcastSay(ChatType.NPC_GENERAL, "?");
((Attackable) npc).clearAggroList();
startQuestTimer("TREX_ATTACK", 6000, npc, player);
}
return super.onAggroRangeEnter(npc, player, isSummon);
}
@Override
public String onAttack(Npc npc, PlayerInstance attacker, int damage, boolean isSummon)
{
if (npc.getId() == EGG)
{
if ((getRandom(100) <= 80) && npc.isScriptValue(0))
{
npc.setScriptValue(1);
final Playable playable = isSummon ? attacker.getServitors().values().stream().findFirst().orElse(attacker.getPet()) : attacker;
World.getInstance().forEachVisibleObjectInRange(npc, Attackable.class, 500, monster ->
{
if ((getRandomBoolean()))
{
addAttackPlayerDesire(monster, playable);
}
});
}
}
else if (CommonUtil.contains(TREX, npc.getId()))
{
final Attackable mob = (Attackable) npc;
final Creature target = mob.getMostHated();
if (((npc.getCurrentHp() / npc.getMaxHp()) * 100) <= 30)
{
if (npc.isScriptValue(3))
{
if (!npc.isSkillDisabled(SELFBUFF1.getSkill()))
{
npc.doCast(SELFBUFF1.getSkill());
}
}
else if (npc.isScriptValue(1) && !npc.isSkillDisabled(SELFBUFF2.getSkill()))
{
npc.doCast(SELFBUFF2.getSkill());
}
}
else if ((((npc.getCurrentHp() / npc.getMaxHp()) * 100) <= 60) && (npc.isScriptValue(3)) && !npc.isSkillDisabled(SELFBUFF1.getSkill()))
{
npc.doCast(SELFBUFF1.getSkill());
}
if (Util.calculateDistance(npc, attacker, true, false) > 100)
{
if (!npc.isSkillDisabled(LONGRANGEDMAGIC1.getSkill()) && (getRandom(100) <= (10 * npc.getScriptValue())))
{
npc.setTarget(attacker);
npc.doCast(LONGRANGEDMAGIC1.getSkill());
}
}
else
{
if (!npc.isSkillDisabled(LONGRANGEDMAGIC1.getSkill()) && (getRandom(100) <= (10 * npc.getScriptValue())))
{
npc.setTarget(target);
npc.doCast(LONGRANGEDMAGIC1.getSkill());
}
if (!npc.isSkillDisabled(PHYSICALSPECIAL1.getSkill()) && (getRandom(100) <= (5 * npc.getScriptValue())))
{
npc.setTarget(target);
npc.doCast(PHYSICALSPECIAL1.getSkill());
}
if (!npc.isSkillDisabled(PHYSICALSPECIAL2.getSkill()) && (getRandom(100) <= (3 * npc.getScriptValue())))
{
npc.setTarget(target);
npc.doCast(PHYSICALSPECIAL2.getSkill());
}
if (!npc.isSkillDisabled(PHYSICALSPECIAL3.getSkill()) && (getRandom(100) <= (5 * npc.getScriptValue())))
{
npc.setTarget(target);
npc.doCast(PHYSICALSPECIAL3.getSkill());
}
}
}
else
{
Creature target = null;
final int probPhysicalSpecial1 = npc.getParameters().getInt("ProbPhysicalSpecial1", 0);
final int probPhysicalSpecial2 = npc.getParameters().getInt("ProbPhysicalSpecial2", 0);
final SkillHolder selfRangeBuff1 = npc.getParameters().getObject("SelfRangeBuff1", SkillHolder.class);
final SkillHolder physicalSpecial1 = npc.getParameters().getObject("PhysicalSpecial1", SkillHolder.class);
final SkillHolder physicalSpecial2 = npc.getParameters().getObject("PhysicalSpecial2", SkillHolder.class);
if (((npc.getCurrentHp() / npc.getMaxHp()) * 100) <= 50)
{
npc.getVariables().set("SKILL_MULTIPLER", 2);
}
else
{
npc.getVariables().set("SKILL_MULTIPLER", 1);
}
if ((((npc.getCurrentHp() / npc.getMaxHp()) * 100) <= 30) && (npc.getVariables().getInt("SELFBUFF_USED") == 0))
{
final Attackable mob = (Attackable) npc;
target = mob.getMostHated();
mob.clearAggroList();
if (!npc.isSkillDisabled(selfRangeBuff1.getSkill()))
{
npc.getVariables().set("SELFBUFF_USED", 1);
npc.doCast(selfRangeBuff1.getSkill());
npc.setRunning();
npc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, target);
}
}
if (target != null)
{
if ((getRandom(100) <= (probPhysicalSpecial1 * npc.getVariables().getInt("SKILL_MULTIPLER"))) && !npc.isSkillDisabled(physicalSpecial1.getSkill()))
{
npc.setTarget(target);
npc.doCast(physicalSpecial1.getSkill());
}
if ((getRandom(100) <= (probPhysicalSpecial2 * npc.getVariables().getInt("SKILL_MULTIPLER"))) && !npc.isSkillDisabled(physicalSpecial2.getSkill()))
{
npc.setTarget(target);
npc.doCast(physicalSpecial2.getSkill());
}
}
}
return super.onAttack(npc, attacker, damage, isSummon);
}
@Override
public String onKill(Npc npc, PlayerInstance killer, boolean isSummon)
{
if ((npc.getId() == DEINO) || ((npc.getId() == ORNIT) && !npc.isScriptValue(1)))
{
return super.onKill(npc, killer, isSummon);
}
if ((npc.getId() == SAILREN) || (getRandom(100) < 3))
{
final PlayerInstance player = npc.getId() == SAILREN ? getRandomPartyMember(killer) : killer;
if (player.isInventoryUnder80(false))
{
giveItems(player, DEINONYCHUS, 1);
final ItemInstance summonItem = player.getInventory().getItemByItemId(DEINONYCHUS);
final IItemHandler handler = ItemHandler.getInstance().getHandler(summonItem.getEtcItem());
if ((handler != null) && !player.hasPet())
{
handler.useItem(player, summonItem, true);
}
showOnScreenMsg(player, NpcStringId.LIFE_STONE_FROM_THE_BEGINNING_ACQUIRED, 2, 6000);
}
else
{
showOnScreenMsg(player, NpcStringId.WHEN_INVENTORY_WEIGHT_NUMBER_ARE_MORE_THAN_80_THE_LIFE_STONE_FROM_THE_BEGINNING_CANNOT_BE_ACQUIRED, 2, 6000);
}
}
return super.onKill(npc, killer, isSummon);
}
@Override
public String onSpawn(Npc npc)
{
if (CommonUtil.contains(SPRIGNANT, npc.getId()))
{
cancelQuestTimer("USE_SKILL", npc, null);
startQuestTimer("USE_SKILL", 15000, npc, null);
}
else if (CommonUtil.contains(TREX, npc.getId()))
{
final int collectGhost = npc.getParameters().getInt("CollectGhost", 0);
final int collectDespawn = npc.getParameters().getInt("CollectGhostDespawnTime", 30);
if (collectGhost == 1)
{
cancelQuestTimer("GHOST_DESPAWN", npc, null);
startQuestTimer("GHOST_DESPAWN", collectDespawn * 60000, npc, null);
}
}
else
{
npc.getVariables().set("SELFBUFF_USED", 0);
npc.getVariables().set("SKILL_MULTIPLER", 1);
}
return super.onSpawn(npc);
}
public static void main(String[] args)
{
new PrimevalIsle();
}
}

View File

@@ -0,0 +1,897 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
<spawn name="PrimevalIsle">
<group>
<!-- NPC -->
<npc id="34526" x="9752" y="-21720" z="-3651" heading="27297" respawnTime="60sec" /> <!-- Expedition Teleporter -->
<npc id="34527" x="9608" y="-21544" z="-3620" heading="25330" respawnTime="60sec" /> <!-- Expedition Guard -->
<npc id="34527" x="9320" y="-21976" z="-3661" heading="17193" respawnTime="60sec" /> <!-- Expedition Guard -->
<npc id="34526" x="21912" y="-6168" z="-1985" heading="38859" respawnTime="60sec" /> <!-- Expedition Teleporter -->
<npc id="34526" x="14776" y="-19304" z="-3119" heading="7069" respawnTime="60sec" /> <!-- Expedition Teleporter -->
<npc id="34526" x="28200" y="-12440" z="-2250" heading="27871" respawnTime="60sec" /> <!-- Expedition Teleporter -->
<npc id="19723" x="14696" y="-19368" z="-3095" heading="52457" respawnTime="60sec" /> <!-- Common Decoration - Campfire -->
<npc id="19723" x="22056" y="-6120" z="-1982" heading="21161" respawnTime="60sec" /> <!-- Common Decoration - Campfire -->
<!-- MONSTER -->
<npc id="24438" x="13994" y="-17411" z="-3040" heading="45478" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20291" y="-21347" z="-3008" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="21501" y="-15017" z="-3072" heading="35394" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="27957" y="-15092" z="-2592" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24628" y="-20888" z="-2592" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="21014" y="-12492" z="-2704" heading="34228" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="15831" y="-17587" z="-3217" heading="36791" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="16601" y="-16695" z="-3232" heading="46776" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="14187" y="-14327" z="-3200" heading="19512" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="16433" y="-14860" z="-3169" heading="53930" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="16828" y="-15716" z="-3200" heading="46776" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18917" y="-19494" z="-3328" heading="39678" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20099" y="-16677" z="-3072" heading="50973" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18599" y="-17658" z="-3216" heading="45638" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19751" y="-18203" z="-3248" heading="54007" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18895" y="-14436" z="-2992" heading="37369" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="21226" y="-19092" z="-3248" heading="8790" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20676" y="-18312" z="-3200" heading="29597" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20858" y="-18057" z="-3136" heading="13415" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="23691" y="-20688" z="-2720" heading="2098" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="23813" y="-19178" z="-2800" heading="40874" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="21014" y="-14673" z="-3072" heading="58892" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="22899" y="-15499" z="-3040" heading="13792" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="22360" y="-15116" z="-3041" heading="26323" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24935" y="-17794" z="-2737" heading="14110" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="26837" y="-17189" z="-2721" heading="2555" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="25133" y="-14833" z="-2736" heading="13178" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="27289" y="-17133" z="-2688" heading="1285" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="27247" y="-12938" z="-2336" heading="9592" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="26734" y="-12967" z="-2400" heading="46861" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24300" y="-12260" z="-2528" heading="19382" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="22820" y="-10983" z="-2672" heading="52543" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="26991" y="-11802" z="-2448" heading="11492" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="27629" y="-11835" z="-2320" heading="22415" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20372" y="-10947" z="-2832" heading="11057" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19292" y="-10868" z="-2880" heading="13418" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19916" y="-11127" z="-2832" heading="49701" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="16554" y="-10619" z="-3280" heading="44140" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="14134" y="-12048" z="-3024" heading="52072" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="13243" y="-12371" z="-2992" heading="17289" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="14622" y="-13249" z="-3168" heading="26674" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="17083" y="-13234" z="-3121" heading="38724" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="17141" y="-12939" z="-3120" heading="14324" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="25544" y="-17736" z="-2751" heading="52603" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24968" y="-17928" z="-2741" heading="35079" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24577" y="-17818" z="-2748" heading="29999" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24395" y="-18960" z="-2745" heading="47490" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24528" y="-19452" z="-2720" heading="53152" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24444" y="-19903" z="-2706" heading="46716" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24615" y="-20216" z="-2649" heading="57806" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24288" y="-20543" z="-2669" heading="58112" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24280" y="-20904" z="-2629" heading="48111" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24043" y="-20741" z="-2663" heading="26515" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="23896" y="-20424" z="-2742" heading="19356" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="23944" y="-20120" z="-2765" heading="14912" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20808" y="-20808" z="-3150" heading="36843" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20568" y="-20136" z="-3281" heading="20027" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20024" y="-19288" z="-3308" heading="20732" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18620" y="-19628" z="-3296" heading="34820" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18520" y="-19448" z="-3287" heading="17251" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18680" y="-18616" z="-3249" heading="11547" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18920" y="-18280" z="-3229" heading="10069" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19240" y="-18120" z="-3243" heading="5001" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19672" y="-17688" z="-3185" heading="10067" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20326" y="-17599" z="-3137" heading="1525" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20408" y="-17208" z="-3074" heading="15476" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20328" y="-16648" z="-3054" heading="17863" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19960" y="-15704" z="-3086" heading="19859" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19400" y="-15432" z="-3077" heading="27914" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19480" y="-14904" z="-3045" heading="14971" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19640" y="-14856" z="-3038" heading="3551" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20508" y="-14828" z="-3046" heading="390" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="21095" y="-14500" z="-3072" heading="6206" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="21064" y="-11720" z="-2777" heading="31416" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="21000" y="-10456" z="-2852" heading="15516" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="21272" y="-10056" z="-2845" heading="10390" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20812" y="-9189" z="-2794" heading="22911" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20502" y="-9147" z="-2793" heading="32372" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20440" y="-9336" z="-2815" heading="50020" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20568" y="-9432" z="-2827" heading="58202" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20008" y="-9544" z="-2827" heading="34828" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19848" y="-9672" z="-2828" heading="39807" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19752" y="-9800" z="-2834" heading="42441" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="17671" y="-12027" z="-3103" heading="40739" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="17288" y="-11992" z="-3135" heading="32972" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="17176" y="-12392" z="-3118" heading="45886" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="17304" y="-12776" z="-3120" heading="52508" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="17752" y="-13400" z="-3131" heading="55647" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="17528" y="-13832" z="-3136" heading="44163" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="17224" y="-14072" z="-3156" heading="39739" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="16696" y="-14680" z="-3190" heading="41576" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="16472" y="-15288" z="-3185" heading="45289" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="16472" y="-15912" z="-3197" heading="49097" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="17201" y="-16253" z="-3216" heading="61776" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="17830" y="-16324" z="-3188" heading="65269" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18447" y="-16887" z="-3186" heading="54260" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18952" y="-17192" z="-3192" heading="61584" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18786" y="-17985" z="-3213" heading="46152" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18728" y="-18552" z="-3246" heading="49153" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19400" y="-19608" z="-3325" heading="55370" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20008" y="-19576" z="-3313" heading="421" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20568" y="-18456" z="-3235" heading="16749" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20344" y="-18136" z="-3197" heading="22754" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20200" y="-17672" z="-3153" heading="19522" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20136" y="-15880" z="-3070" heading="15673" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20664" y="-15480" z="-3054" heading="5764" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="21352" y="-15480" z="-3050" heading="54" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="21752" y="-15176" z="-3061" heading="6621" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="22408" y="-14616" z="-3071" heading="7369" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="23256" y="-14632" z="-3058" heading="65340" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="23256" y="-16664" z="-2982" heading="48487" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24488" y="-17176" z="-2777" heading="62853" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="25832" y="-16776" z="-2743" heading="2058" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="26136" y="-17080" z="-2744" heading="45428" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="21560" y="-17496" z="-2962" heading="31447" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20671" y="-17471" z="-3049" heading="34211" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19731" y="-15703" z="-3086" heading="5549" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19192" y="-15112" z="-3059" heading="24575" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="16534" y="-16067" z="-3207" heading="43694" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24440" x="19776" y="-18928" z="-3312" heading="29550" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="19506" y="-15408" z="-3088" heading="45143" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="20416" y="-20909" z="-3104" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="20166" y="-21128" z="-3056" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="21166" y="-20033" z="-3312" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="21666" y="-17410" z="-2976" heading="48218" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="24092" y="-18763" z="-2768" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="23216" y="-16901" z="-2976" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="26446" y="-17868" z="-2704" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="27228" y="-15892" z="-2656" heading="63512" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="24628" y="-21069" z="-2560" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="23718" y="-14304" z="-3024" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="24714" y="-13583" z="-2480" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="26969" y="-13774" z="-2304" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="24556" y="-11814" z="-2544" heading="12097" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="24358" y="-11423" z="-2544" heading="47567" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="23796" y="-9840" z="-2560" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="20800" y="-12492" z="-2736" heading="8316" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="19938" y="-12196" z="-2768" heading="54770" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="20190" y="-9774" z="-2864" heading="28636" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="16957" y="-11057" z="-3200" heading="48183" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="15470" y="-9402" z="-3249" heading="19447" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="15883" y="-6539" z="-3056" heading="8564" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="15232" y="-7364" z="-3136" heading="7538" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="14879" y="-12764" z="-3152" heading="10867" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="19752" y="-16408" z="-3094" heading="3180" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="20072" y="-15816" z="-3075" heading="11124" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="20104" y="-15320" z="-3084" heading="15572" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="16803" y="-14676" z="-3182" heading="30669" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="16744" y="-14312" z="-3176" heading="16383" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="16807" y="-13755" z="-3160" heading="15392" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="16984" y="-13512" z="-3142" heading="9943" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="17073" y="-12763" z="-3128" heading="15144" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="16584" y="-12408" z="-3124" heading="32016" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="16072" y="-10712" z="-3303" heading="22481" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="16230" y="-10094" z="-3294" heading="13866" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="16456" y="-9752" z="-3275" heading="10894" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="16488" y="-8360" z="-3253" heading="17418" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="15992" y="-7864" z="-3212" heading="24575" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="15426" y="-9134" z="-3271" heading="44749" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="15157" y="-10637" z="-3304" heading="49733" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="15480" y="-11016" z="-3278" heading="57090" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="15512" y="-13656" z="-3180" heading="37389" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="15192" y="-14248" z="-3190" heading="43984" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="16120" y="-15336" z="-3181" heading="54132" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="16696" y="-16456" z="-3224" heading="51041" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="16404" y="-17385" z="-3229" heading="46831" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="16536" y="-17976" z="-3198" heading="52731" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="15825" y="-17986" z="-3205" heading="29309" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="17608" y="-17480" z="-3221" heading="3973" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="18951" y="-16642" z="-3152" heading="9543" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="21159" y="-15279" z="-3050" heading="4668" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="21720" y="-15637" z="-3044" heading="60691" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="22939" y="-16124" z="-3021" heading="61518" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="23560" y="-15576" z="-2993" heading="8525" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="25336" y="-12888" z="-2561" heading="15544" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="25384" y="-11592" z="-2507" heading="7695" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="26552" y="-10888" z="-2463" heading="5731" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="25256" y="-15736" z="-2758" heading="52012" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="25048" y="-16328" z="-2774" heading="45803" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24440" x="25383" y="-16870" z="-2774" heading="54802" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="24437" x="14803" y="-18319" z="-3184" heading="13313" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15809" y="-17684" z="-3216" heading="46886" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16434" y="-14637" z="-3169" heading="62148" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19580" y="-16612" z="-3120" heading="31467" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="18599" y="-17658" z="-3216" heading="45638" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="20581" y="-15799" z="-3056" heading="56814" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="21226" y="-19092" z="-3248" heading="8790" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="23813" y="-19178" z="-2800" heading="40874" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="26512" y="-16107" z="-2657" heading="5209" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25591" y="-15496" z="-2736" heading="43240" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="24109" y="-11614" z="-2544" heading="19382" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="24296" y="-11642" z="-2544" heading="51852" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="21724" y="-11239" z="-2768" heading="36497" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19865" y="-11852" z="-2784" heading="11057" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="20037" y="-10471" z="-2848" heading="58222" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16554" y="-10619" z="-3280" heading="44140" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14808" y="-12260" z="-3104" heading="38595" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15660" y="-9943" z="-3296" heading="7959" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14556" y="-14047" z="-3201" heading="11117" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15257" y="-13397" z="-3169" heading="52907" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5288" y="-12376" z="-3634" heading="15346" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5448" y="-12232" z="-3634" heading="7851" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5592" y="-12344" z="-3638" heading="58959" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5304" y="-12072" z="-3632" heading="25208" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7192" y="-10072" z="-3659" heading="7515" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7432" y="-9672" z="-3629" heading="16119" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7384" y="-9544" z="-3627" heading="19493" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7464" y="-9992" z="-3649" heading="47672" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7208" y="-10184" z="-3663" heading="39744" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7665" y="-7137" z="-3557" heading="13103" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7544" y="-6904" z="-3531" heading="29644" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7576" y="-7080" z="-3559" heading="50779" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7688" y="-6664" z="-3498" heading="3631" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3996" y="-7705" z="-3546" heading="43054" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4184" y="-7640" z="-3527" heading="4686" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4344" y="-7800" z="-3524" heading="57345" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3960" y="-8056" z="-3557" heading="38932" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3720" y="-7816" z="-3535" heading="24729" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3688" y="-8840" z="-3570" heading="49112" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3832" y="-8904" z="-3575" heading="60850" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3928" y="-8776" z="-3565" heading="9470" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3672" y="-8664" z="-3563" heading="28382" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3464" y="-8792" z="-3568" heading="38395" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3368" y="-8936" z="-3594" heading="42715" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3736" y="-9032" z="-3592" heading="561" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2477" y="-9462" z="-3628" heading="36687" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2216" y="-9528" z="-3562" heading="34713" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2216" y="-9720" z="-3579" heading="48904" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2328" y="-9720" z="-3614" heading="65274" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2573" y="-11392" z="-3591" heading="47181" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2401" y="-11288" z="-3572" heading="26955" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2378" y="-11686" z="-3530" heading="52021" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2584" y="-11848" z="-3574" heading="61899" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2024" y="-13384" z="-3350" heading="43871" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2200" y="-13592" z="-3381" heading="56478" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2216" y="-13432" z="-3394" heading="15191" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2120" y="-13352" z="-3373" heading="24909" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2552" y="-13928" z="-3449" heading="55787" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2360" y="-14088" z="-3435" heading="40168" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2523" y="-14172" z="-3465" heading="60155" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2744" y="-14104" z="-3478" heading="7938" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2760" y="-14808" z="-3619" heading="49390" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2744" y="-14552" z="-3554" heading="17046" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2616" y="-14552" z="-3550" heading="32641" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4120" y="-15544" z="-3614" heading="55707" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4040" y="-15288" z="-3637" heading="19824" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4312" y="-15448" z="-3604" heading="60597" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4296" y="-15896" z="-3610" heading="57397" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3969" y="-16058" z="-3617" heading="38145" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3128" y="-16712" z="-3617" heading="40230" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3080" y="-17096" z="-3628" heading="47703" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2888" y="-17240" z="-3562" heading="39693" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2792" y="-17064" z="-3541" heading="21996" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2936" y="-16920" z="-3587" heading="8594" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4059" y="-17881" z="-3625" heading="56997" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4391" y="-18072" z="-3661" heading="62958" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4456" y="-17848" z="-3654" heading="16383" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4605" y="-18161" z="-3674" heading="53502" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4488" y="-18440" z="-3670" heading="45545" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4752" y="-18557" z="-3676" heading="61139" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5112" y="-19224" z="-3637" heading="54080" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5240" y="-19528" z="-3612" heading="53608" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5496" y="-19763" z="-3608" heading="57087" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5544" y="-19528" z="-3611" heading="13235" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5507" y="-19272" z="-3626" heading="6510" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5384" y="-19144" z="-3641" heading="24144" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6267" y="-19821" z="-3611" heading="3883" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6056" y="-19944" z="-3611" heading="1412" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5944" y="-19816" z="-3610" heading="23881" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5864" y="-20120" z="-3613" heading="38615" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6136" y="-20264" z="-3603" heading="60384" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6264" y="-20200" z="-3578" heading="3148" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6184" y="-19960" z="-3599" heading="19714" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6954" y="-21099" z="-3470" heading="52842" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6903" y="-21392" z="-3432" heading="45270" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7096" y="-21512" z="-3408" heading="2902" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7176" y="-21288" z="-3441" heading="12375" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7080" y="-21112" z="-3466" heading="21591" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7545" y="-19256" z="-3671" heading="12443" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7690" y="-18965" z="-3664" heading="11488" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7142" y="-18114" z="-3636" heading="20194" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6888" y="-17736" z="-3644" heading="23597" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7080" y="-17448" z="-3638" heading="10250" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6875" y="-17338" z="-3645" heading="15044" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6776" y="-17496" z="-3648" heading="43242" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6008" y="-16376" z="-3712" heading="20592" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6150" y="-15934" z="-3724" heading="19295" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6344" y="-16056" z="-3705" heading="60770" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6312" y="-16280" z="-3700" heading="48053" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6339" y="-16568" z="-3686" heading="50143" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7856" y="-15367" z="-3683" heading="6878" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7896" y="-15080" z="-3697" heading="16343" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="8212" y="-14935" z="-3695" heading="9534" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7992" y="-14840" z="-3700" heading="29556" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="8216" y="-14584" z="-3698" heading="9075" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7871" y="-14629" z="-3702" heading="33631" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6222" y="-14098" z="-3716" heading="28663" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5934" y="-13941" z="-3709" heading="30353" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5752" y="-14040" z="-3705" heading="46016" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5944" y="-14390" z="-3704" heading="49151" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5649" y="-14508" z="-3704" heading="23931" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14312" y="-9768" z="-3283" heading="47693" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14632" y="-10024" z="-3303" heading="58398" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14760" y="-10312" z="-3311" heading="53703" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14568" y="-10264" z="-3313" heading="31320" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14312" y="-10216" z="-3313" heading="31320" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14424" y="-10088" z="-3308" heading="9041" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14648" y="-10136" z="-3307" heading="63701" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16143" y="-9977" z="-3290" heading="2909" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16568" y="-9880" z="-3265" heading="2908" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16392" y="-9992" z="-3280" heading="39187" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16264" y="-10168" z="-3291" heading="42094" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16488" y="-10296" z="-3277" heading="59873" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16069" y="-11236" z="-3273" heading="56411" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16024" y="-11528" z="-3230" heading="42001" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15880" y="-11416" z="-3245" heading="25872" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15816" y="-11240" z="-3266" heading="20021" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15944" y="-11144" z="-3280" heading="7102" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16312" y="-11656" z="-3207" heading="55990" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16408" y="-13608" z="-3177" heading="39481" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16152" y="-13768" z="-3186" heading="38869" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16184" y="-13912" z="-3182" heading="51433" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15944" y="-13752" z="-3188" heading="26748" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15704" y="-14279" z="-3169" heading="44583" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15784" y="-14504" z="-3153" heading="52356" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15896" y="-14296" z="-3169" heading="11151" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15832" y="-14136" z="-3174" heading="19910" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16216" y="-14888" z="-3169" heading="53951" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16564" y="-15094" z="-3184" heading="59743" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16584" y="-15288" z="-3186" heading="44816" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16392" y="-15352" z="-3184" heading="36311" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16950" y="-15197" z="-3173" heading="2810" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14391" y="-14191" z="-3208" heading="40131" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14552" y="-14376" z="-3200" heading="55616" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15064" y="-18248" z="-3192" heading="48260" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14791" y="-18693" z="-3177" heading="43577" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14520" y="-18440" z="-3179" heading="23456" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14648" y="-18200" z="-3180" heading="11587" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14872" y="-18104" z="-3192" heading="4634" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16168" y="-18744" z="-3204" heading="6640" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16411" y="-18587" z="-3195" heading="6168" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16264" y="-18488" z="-3191" heading="25125" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16056" y="-18488" z="-3190" heading="32453" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="18024" y="-17784" z="-3220" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="18352" y="-17897" z="-3210" heading="62159" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="18312" y="-18040" z="-3208" heading="45851" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="18152" y="-18008" z="-3214" heading="30708" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="17928" y="-17640" z="-3224" heading="17699" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19336" y="-19288" z="-3330" heading="61725" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19485" y="-19536" z="-3329" heading="54994" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19304" y="-19432" z="-3329" heading="28093" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="20072" y="-18904" z="-3289" heading="10531" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="20248" y="-18520" z="-3255" heading="11873" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="20024" y="-18728" z="-3277" heading="40245" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="20487" y="-18752" z="-3269" heading="64988" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="22175" y="-17976" z="-2924" heading="13929" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="22125" y="-17587" z="-2966" heading="20400" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="21912" y="-17768" z="-2941" heading="39246" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="22022" y="-18236" z="-2881" heading="50846" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="22312" y="-17592" z="-2967" heading="12161" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="22216" y="-17240" z="-2983" heading="22441" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="24424" y="-18152" z="-2723" heading="65062" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="24118" y="-19674" z="-2784" heading="40480" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="24248" y="-19256" z="-2781" heading="13665" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="24024" y="-19240" z="-2798" heading="31931" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25554" y="-17861" z="-2735" heading="60585" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25480" y="-18056" z="-2719" heading="40276" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25688" y="-18312" z="-2659" heading="56154" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="26093" y="-18298" z="-2644" heading="251" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="26580" y="-18689" z="-2552" heading="61212" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="27038" y="-18682" z="-2501" heading="2772" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="26984" y="-18904" z="-2447" heading="45490" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="27368" y="-18840" z="-2448" heading="1659" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="27656" y="-18664" z="-2484" heading="5474" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="27384" y="-18632" z="-2475" heading="31518" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="27944" y="-17096" z="-2577" heading="37106" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="27924" y="-17191" z="-2568" heading="46489" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="28280" y="-17320" z="-2540" heading="4580" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="27865" y="-17119" z="-2589" heading="28155" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="26200" y="-16104" z="-2683" heading="32767" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25880" y="-15880" z="-2712" heading="26397" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25960" y="-15704" z="-2706" heading="12916" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25704" y="-15624" z="-2721" heading="29322" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25880" y="-15768" z="-2711" heading="58356" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25512" y="-15656" z="-2740" heading="29686" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25128" y="-10680" z="-2499" heading="20008" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="24904" y="-10760" z="-2521" heading="36131" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25048" y="-10936" z="-2510" heading="55968" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25320" y="-11048" z="-2496" heading="61463" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25352" y="-10856" z="-2491" heading="14308" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25080" y="-10776" z="-2505" heading="29625" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="20237" y="-8796" z="-2756" heading="26408" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19944" y="-8856" z="-2754" heading="36529" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19992" y="-8616" z="-2722" heading="14564" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="20199" y="-9033" z="-2783" heading="54645" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="20307" y="-8972" z="-2775" heading="6671" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19629" y="-10299" z="-2834" heading="48039" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19912" y="-10232" z="-2837" heading="62981" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19912" y="-10424" z="-2835" heading="49153" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19632" y="-10630" z="-2849" heading="39392" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19656" y="-10472" z="-2834" heading="17033" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="20152" y="-11560" z="-2824" heading="61788" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15880" y="-8856" z="-3267" heading="49525" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15985" y="-9247" z="-3266" heading="51732" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15496" y="-9480" z="-3262" heading="36911" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24436" x="15964" y="-18408" z="-3184" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="20002" y="-18075" z="-3216" heading="4918" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="24060" y="-18407" z="-2736" heading="22587" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="21526" y="-14486" z="-3104" heading="63875" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="27258" y="-16633" z="-2657" heading="62354" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="25152" y="-11442" z="-2512" heading="32732" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="15353" y="-8810" z="-3280" heading="35093" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="14932" y="-13501" z="-3184" heading="51680" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="5656" y="-6792" z="-3492" heading="2204" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="5816" y="-6808" z="-3511" heading="65127" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="5992" y="-6680" z="-3488" heading="6558" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="5688" y="-6648" z="-3455" heading="33662" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="5752" y="-6808" z="-3507" heading="52870" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4376" y="-6232" z="-3520" heading="13678" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4280" y="-6296" z="-3520" heading="31929" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4216" y="-6152" z="-3520" heading="21197" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4488" y="-6472" z="-3521" heading="56786" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4328" y="-6504" z="-3520" heading="34828" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4120" y="-6296" z="-3520" heading="24861" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3544" y="-9336" z="-3628" heading="46578" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3640" y="-9560" z="-3635" heading="53109" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3720" y="-9432" z="-3627" heading="10480" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3656" y="-9384" z="-3627" heading="24022" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3416" y="-9480" z="-3643" heading="36511" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3480" y="-9624" z="-3640" heading="53350" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3688" y="-9784" z="-3644" heading="58327" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="2376" y="-13816" z="-3412" heading="38155" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="2392" y="-13944" z="-3422" heading="50221" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="2504" y="-13848" z="-3443" heading="7142" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="2536" y="-13736" z="-3453" heading="12664" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="2376" y="-13736" z="-3420" heading="32277" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="2200" y="-13848" z="-3381" heading="38529" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="2216" y="-13688" z="-3379" heading="15484" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3496" y="-16008" z="-3628" heading="43045" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3464" y="-16312" z="-3637" heading="47976" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3432" y="-16104" z="-3627" heading="17992" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3608" y="-16072" z="-3626" heading="1944" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3688" y="-16328" z="-3647" heading="52474" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3560" y="-18664" z="-3527" heading="50875" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3480" y="-18824" z="-3518" heading="44640" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3656" y="-18984" z="-3549" heading="57719" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="5176" y="-20344" z="-3611" heading="63814" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="5208" y="-20136" z="-3611" heading="14439" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4984" y="-20024" z="-3611" heading="27931" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4952" y="-20120" z="-3611" heading="45118" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="5112" y="-20408" z="-3610" heading="54282" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="6376" y="-20904" z="-3499" heading="61279" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="6376" y="-21064" z="-3479" heading="49708" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="6664" y="-21272" z="-3458" heading="65388" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="6232" y="-21240" z="-3480" heading="31909" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7320" y="-19592" z="-3650" heading="14903" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7112" y="-19640" z="-3652" heading="35134" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7176" y="-19800" z="-3634" heading="52908" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7288" y="-19912" z="-3616" heading="56935" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7343" y="-17289" z="-3633" heading="11542" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7224" y="-17192" z="-3636" heading="29017" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7272" y="-17336" z="-3634" heading="51151" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7352" y="-17560" z="-3633" heading="52277" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7512" y="-17448" z="-3633" heading="6235" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7192" y="-15640" z="-3685" heading="21219" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7320" y="-15400" z="-3690" heading="11273" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7447" y="-15511" z="-3686" heading="58309" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7448" y="-15784" z="-3682" heading="42877" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7640" y="-15576" z="-3680" heading="8565" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7592" y="-15224" z="-3691" heading="17863" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="5048" y="-12392" z="-3633" heading="31781" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4952" y="-12200" z="-3625" heading="21549" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4792" y="-12328" z="-3618" heading="39690" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="15224" y="-9624" z="-3271" heading="61419" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="15560" y="-9704" z="-3259" heading="62848" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="15448" y="-9864" z="-3285" heading="42783" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="15272" y="-9896" z="-3289" heading="35025" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="15432" y="-9624" z="-3263" heading="10946" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="16264" y="-7080" z="-3158" heading="23385" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="16056" y="-7016" z="-3147" heading="29335" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="16168" y="-7128" z="-3163" heading="65055" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="16264" y="-7272" z="-3176" heading="55738" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="16872" y="-12936" z="-3129" heading="52575" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="16664" y="-13192" z="-3143" heading="46247" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="16600" y="-13080" z="-3137" heading="21798" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="16664" y="-12888" z="-3125" heading="13524" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="16760" y="-12712" z="-3118" heading="11175" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="14472" y="-13352" z="-3187" heading="23935" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="14696" y="-13448" z="-3189" heading="61796" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="14392" y="-13512" z="-3202" heading="35025" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="14312" y="-13384" z="-3189" heading="22683" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="15656" y="-18232" z="-3187" heading="38665" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="15832" y="-18488" z="-3181" heading="55200" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="15480" y="-18616" z="-3168" heading="36521" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="15704" y="-18392" z="-3178" heading="8295" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="20040" y="-20536" z="-3201" heading="54477" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="19848" y="-20680" z="-3150" heading="39841" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="19796" y="-20319" z="-3223" heading="15747" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="19880" y="-20376" z="-3219" heading="58385" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="20133" y="-20243" z="-3260" heading="4960" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="23608" y="-20296" z="-2764" heading="39478" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="23480" y="-20264" z="-2750" heading="30576" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="23560" y="-20152" z="-2768" heading="10261" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="23736" y="-20232" z="-2771" heading="61401" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="28056" y="-15320" z="-2605" heading="8064" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="28264" y="-15368" z="-2566" heading="63586" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="28056" y="-15144" z="-2576" heading="24159" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="28040" y="-14888" z="-2537" heading="17160" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="27912" y="-15080" z="-2588" heading="42812" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24441" x="19506" y="-15772" z="-3073" heading="49220" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="22253" y="-17062" z="-2992" heading="47449" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="23348" y="-20888" z="-2672" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="25047" y="-18477" z="-2720" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="27331" y="-16669" z="-2657" heading="21125" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="27714" y="-14692" z="-2560" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="26555" y="-11574" z="-2480" heading="28153" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="21295" y="-11123" z="-2800" heading="41953" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="19605" y="-11234" z="-2817" heading="57601" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="26740" y="-16596" z="-2688" heading="13790" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="16760" y="-13496" z="-3149" heading="28899" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="16568" y="-10280" z="-3268" heading="16784" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="15880" y="-7640" z="-3185" heading="9463" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="14600" y="-14232" z="-3205" heading="48871" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="15861" y="-18019" z="-3204" heading="48916" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="19432" y="-18184" z="-3259" heading="59457" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24441" x="22645" y="-15058" z="-3052" heading="2068" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="24438" x="16928" y="-16220" z="-3201" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18156" y="-15044" z="-3072" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18740" y="-20244" z="-3296" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19588" y="-18612" z="-3280" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="22476" y="-16607" z="-2992" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24086" y="-17759" z="-2768" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20586" y="-15408" z="-3072" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="23068" y="-15578" z="-3024" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24856" y="-18477" z="-2720" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="25856" y="-17759" z="-2736" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="27014" y="-19612" z="-2288" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="26149" y="-13201" z="-2480" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="27379" y="-13774" z="-2272" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="23426" y="-11814" z="-2544" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="25460" y="-12017" z="-2513" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="22298" y="-12492" z="-2624" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20481" y="-11899" z="-2816" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24437" x="5740" y="-21105" z="-3424" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6005" y="-21428" z="-3392" heading="56875" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4673" y="-18463" z="-3665" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5990" y="-20441" z="-3504" heading="35825" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7841" y="-19086" z="-3664" heading="2749" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7536" y="-19177" z="-3680" heading="50136" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3662" y="-20256" z="-3360" heading="54896" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3499" y="-19936" z="-3344" heading="39889" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3832" y="-16545" z="-3712" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2890" y="-17128" z="-3584" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6886" y="-17570" z="-3633" heading="2127" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7568" y="-16765" z="-3633" heading="65095" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7884" y="-17896" z="-3568" heading="26450" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2435" y="-14860" z="-3328" heading="1472" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3530" y="-16223" z="-3584" heading="23278" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4745" y="-16026" z="-3616" heading="24667" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6072" y="-16082" z="-3728" heading="11763" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3730" y="-12596" z="-3760" heading="13589" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3800" y="-12939" z="-3760" heading="10514" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2541" y="-14066" z="-3408" heading="43397" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2240" y="-13831" z="-3360" heading="51029" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5247" y="-13936" z="-3712" heading="55267" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2649" y="-11653" z="-3600" heading="31384" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3644" y="-9112" z="-3601" heading="10958" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="2424" y="-9830" z="-3664" heading="32760" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3475" y="-7014" z="-3344" heading="12488" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3883" y="-7791" z="-3457" heading="58561" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6373" y="-8269" z="-3760" heading="28750" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7613" y="-9365" z="-3600" heading="31384" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7807" y="-6790" z="-3504" heading="15331" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7096" y="-10205" z="-3680" heading="25226" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="8493" y="-14360" z="-3712" heading="58478" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="8447" y="-14972" z="-3680" heading="43838" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16248" y="-18905" z="-3216" heading="62181" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15545" y="-14345" z="-3168" heading="37252" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16797" y="-14914" z="-3200" heading="47955" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19867" y="-18814" z="-3296" heading="46214" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="20541" y="-21785" z="-2912" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="21517" y="-17370" z="-2976" heading="35667" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="21778" y="-17677" z="-2944" heading="42809" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="23732" y="-21793" z="-2480" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="24415" y="-18026" z="-2736" heading="47224" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="20601" y="-16115" z="-3040" heading="5817" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="21715" y="-15043" z="-3057" heading="18224" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="22988" y="-15056" z="-3041" heading="24773" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25238" y="-19192" z="-2609" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="25381" y="-18030" z="-2736" heading="37429" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="27696" y="-12843" z="-2304" heading="2912" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="22705" y="-12047" z="-2592" heading="11659" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="22557" y="-12195" z="-2592" heading="8985" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="20001" y="-11823" z="-2800" heading="5742" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19860" y="-8608" z="-2720" heading="23278" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14740" y="-13586" z="-3185" heading="56592" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="15961" y="-13299" z="-3169" heading="23849" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24436" x="6500" y="-21747" z="-3360" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7070" y="-20677" z="-3520" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="6337" y="-20992" z="-3472" heading="47823" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7750" y="-19025" z="-3649" heading="47856" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3725" y="-19583" z="-3456" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3567" y="-19023" z="-3488" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3428" y="-19970" z="-3328" heading="58624" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="2526" y="-17406" z="-3456" heading="25124" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4791" y="-18210" z="-3665" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7670" y="-18162" z="-3568" heading="60029" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7529" y="-18324" z="-3600" heading="6790" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="2329" y="-14459" z="-3312" heading="20401" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="2263" y="-14413" z="-3296" heading="43787" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3472" y="-16237" z="-3584" heading="64470" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4769" y="-15984" z="-3616" heading="57626" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="8400" y="-14727" z="-3681" heading="3944" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7743" y="-15212" z="-3681" heading="39560" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7344" y="-15943" z="-3665" heading="999" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="6104" y="-15894" z="-3713" heading="6434" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="2377" y="-14095" z="-3376" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3569" y="-13603" z="-3600" heading="53989" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4056" y="-13377" z="-3745" heading="18749" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="2223" y="-10800" z="-3504" heading="21869" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4885" y="-12207" z="-3616" heading="24852" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3972" y="-10085" z="-3680" heading="99" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3625" y="-9647" z="-3648" heading="30401" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4912" y="-9772" z="-3760" heading="20985" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="5639" y="-6667" z="-3456" heading="40267" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="4395" y="-5955" z="-3104" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="6605" y="-6511" z="-3456" heading="59625" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7524" y="-7265" z="-3600" heading="29596" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="6946" y="-7563" z="-3632" heading="23480" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="8533" y="-14092" z="-3728" heading="8330" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="15382" y="-16330" z="-3200" heading="1154" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="27994" y="-15015" z="-2576" heading="26953" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24439" x="5550" y="-21747" z="-3344" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4790" y="-21319" z="-3360" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4515" y="-18883" z="-3648" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4357" y="-19723" z="-3536" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4831" y="-20143" z="-3552" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7830" y="-20891" z="-3440" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7260" y="-20249" z="-3568" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7023" y="-19421" z="-3680" heading="6856" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7427" y="-19087" z="-3696" heading="17965" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6761" y="-18795" z="-3712" heading="42642" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3409" y="-19303" z="-3408" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3226" y="-18173" z="-3600" heading="16383" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3408" y="-18472" z="-3536" heading="54826" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="2534" y="-16823" z="-3424" heading="49249" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="2623" y="-16590" z="-3424" heading="51707" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4380" y="-16915" z="-3712" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5202" y="-16915" z="-3761" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5063" y="-16754" z="-3776" heading="60895" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6484" y="-16981" z="-3664" heading="30857" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6865" y="-17218" z="-3633" heading="13481" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7632" y="-17527" z="-3617" heading="36125" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7290" y="-17949" z="-3632" heading="41723" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4020" y="-14420" z="-3568" heading="34611" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3058" y="-16226" z="-3520" heading="5289" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="2622" y="-14776" z="-3360" heading="54344" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3202" y="-14387" z="-3472" heading="51752" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="2126" y="-14612" z="-3264" heading="39739" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="2799" y="-16284" z="-3456" heading="51410" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5339" y="-15805" z="-3616" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5276" y="-15717" z="-3600" heading="61603" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4948" y="-15117" z="-3616" heading="18012" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4015" y="-14728" z="-3552" heading="26687" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6743" y="-15042" z="-3712" heading="40455" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7329" y="-16262" z="-3680" heading="64669" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7186" y="-15079" z="-3712" heading="20920" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="2739" y="-14221" z="-3424" heading="50390" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3162" y="-13973" z="-3520" heading="41980" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3320" y="-13538" z="-3584" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3867" y="-12582" z="-3744" heading="15955" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3624" y="-12461" z="-3760" heading="7632" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="2143" y="-13640" z="-3344" heading="28869" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5940" y="-13991" z="-3697" heading="49806" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5858" y="-13460" z="-3744" heading="5177" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5727" y="-13232" z="-3744" heading="46388" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4480" y="-13080" z="-3649" heading="54075" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4256" y="-13549" z="-3760" heading="42499" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5112" y="-13453" z="-3696" heading="61702" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3443" y="-11119" z="-3664" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3091" y="-11798" z="-3664" heading="21092" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3226" y="-11598" z="-3664" heading="19588" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5676" y="-10581" z="-3617" heading="52082" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6335" y="-8905" z="-3728" heading="64221" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4372" y="-9162" z="-3616" heading="27867" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4035" y="-9273" z="-3616" heading="19890" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3077" y="-7069" z="-3328" heading="24676" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3490" y="-6459" z="-3152" heading="43726" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4665" y="-6367" z="-3264" heading="46465" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4799" y="-7319" z="-3488" heading="64813" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4834" y="-6816" z="-3408" heading="46528" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5402" y="-6969" z="-3488" heading="43631" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6492" y="-8691" z="-3745" heading="6152" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6315" y="-9882" z="-3760" heading="25283" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7001" y="-7352" z="-3600" heading="12697" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6356" y="-7920" z="-3760" heading="45919" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6044" y="-11899" z="-3648" heading="56213" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6312" y="-13399" z="-3744" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="8496" y="-14856" z="-3680" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="8408" y="-14648" z="-3681" heading="40150" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="8492" y="-14488" z="-3696" heading="27163" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="8353" y="-14856" z="-3696" heading="35185" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7256" y="-7672" z="-3626" heading="22642" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7240" y="-7384" z="-3605" heading="16846" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7080" y="-7336" z="-3592" heading="29373" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6760" y="-7416" z="-3615" heading="34987" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5449" y="-6437" z="-3401" heading="34630" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5298" y="-6693" z="-3449" heading="44076" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4970" y="-6958" z="-3496" heading="39640" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4808" y="-7240" z="-3519" heading="40391" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3824" y="-6862" z="-3516" heading="23512" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3463" y="-6846" z="-3508" heading="37786" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3352" y="-7288" z="-3501" heading="48141" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3211" y="-7472" z="-3494" heading="45716" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4024" y="-9208" z="-3614" heading="60221" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4216" y="-9080" z="-3603" heading="6132" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4312" y="-9304" z="-3622" heading="53703" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4056" y="-9592" z="-3638" heading="41774" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3395" y="-10724" z="-3670" heading="42092" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3433" y="-11168" z="-3652" heading="50993" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3260" y="-11621" z="-3668" heading="46942" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3160" y="-11384" z="-3654" heading="19627" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3448" y="-11528" z="-3680" heading="60803" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3080" y="-13256" z="-3578" heading="49990" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3064" y="-13640" z="-3545" heading="48903" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3144" y="-13400" z="-3571" heading="13024" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3176" y="-13672" z="-3554" heading="50500" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3921" y="-15541" z="-3620" heading="9457" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3912" y="-15848" z="-3613" heading="53903" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4168" y="-15800" z="-3605" heading="536" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4072" y="-15688" z="-3607" heading="23312" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4040" y="-16344" z="-3674" heading="49126" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4623" y="-16714" z="-3722" heading="59900" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4922" y="-16941" z="-3718" heading="58535" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4760" y="-17000" z="-3705" heading="35324" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4872" y="-17224" z="-3698" heading="53989" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="3940" y="-18017" z="-3608" heading="28424" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4360" y="-18632" z="-3628" heading="46929" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4362" y="-19299" z="-3590" heading="45708" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4536" y="-19320" z="-3600" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4520" y="-19112" z="-3619" heading="2899" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4806" y="-20352" z="-3611" heading="51270" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4936" y="-20728" z="-3597" heading="52638" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="4712" y="-20904" z="-3597" heading="40007" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5185" y="-21365" z="-3597" heading="57704" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7320" y="-20584" z="-3522" heading="59410" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7288" y="-19080" z="-3694" heading="16383" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7304" y="-17912" z="-3631" heading="16383" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7128" y="-17672" z="-3639" heading="22978" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7032" y="-17240" z="-3639" heading="18664" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6744" y="-17208" z="-3649" heading="31613" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6552" y="-16968" z="-3658" heading="23255" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7368" y="-16440" z="-3665" heading="6821" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6944" y="-15424" z="-3695" heading="20269" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7656" y="-15144" z="-3694" heading="60" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7463" y="-14962" z="-3654" heading="30791" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="7208" y="-14888" z="-3709" heading="29753" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6438" y="-14170" z="-3735" heading="22665" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6152" y="-14296" z="-3723" heading="36832" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="6040" y="-14552" z="-3721" heading="44597" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5781" y="-14523" z="-3707" heading="42504" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5608" y="-14104" z="-3705" heading="20518" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5464" y="-13176" z="-3684" heading="21084" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5560" y="-12968" z="-3658" heading="12348" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5224" y="-12920" z="-3650" heading="31054" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5073" y="-12420" z="-3636" heading="19520" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5206" y="-11950" z="-3633" heading="14128" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5384" y="-11720" z="-3632" heading="10663" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5602" y="-11548" z="-3632" heading="7146" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5512" y="-11112" z="-3641" heading="18573" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24439" x="5621" y="-10661" z="-3635" heading="14093" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="24438" x="13725" y="-17202" z="-2912" heading="11451" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="15489" y="-19599" z="-3136" heading="33780" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="14432" y="-17324" z="-3120" heading="954" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="14495" y="-18281" z="-3184" heading="39942" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="15336" y="-16539" z="-3200" heading="36376" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="16928" y="-17508" z="-3216" heading="65108" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18272" y="-17506" z="-3217" heading="53227" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="15897" y="-15401" z="-3184" heading="39942" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="14259" y="-14344" z="-3200" heading="23389" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="18156" y="-14680" z="-3009" heading="20244" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19506" y="-16500" z="-3120" heading="40300" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19118" y="-17877" z="-3201" heading="38291" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20416" y="-20690" z="-3168" heading="1722" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19284" y="-20535" z="-3168" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="23416" y="-21111" z="-2624" heading="39139" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="23901" y="-18620" z="-2768" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="23519" y="-18048" z="-2688" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="23718" y="-14407" z="-3040" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="22772" y="-15725" z="-3040" heading="3809" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="27272" y="-20076" z="-2208" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="26977" y="-16905" z="-2704" heading="6366" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="27471" y="-15492" z="-2640" heading="61862" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="25739" y="-13010" z="-2608" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="26354" y="-13965" z="-2400" heading="36130" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24556" y="-12220" z="-2528" heading="23617" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="25632" y="-11563" z="-2496" heading="57950" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24782" y="-11408" z="-2544" heading="22240" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="24104" y="-10190" z="-2544" heading="13481" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="21762" y="-13892" z="-3136" heading="57140" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20799" y="-10068" z="-2865" heading="3582" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20705" y="-9773" z="-2864" heading="29343" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="22097" y="-9952" z="-2785" heading="47915" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="20632" y="-8033" z="-2656" heading="31186" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="19505" y="-9946" z="-2848" heading="11031" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="16403" y="-9172" z="-3280" heading="9772" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="16317" y="-9014" z="-3280" heading="40690" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="14798" y="-9289" z="-3280" heading="61954" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="15375" y="-8485" z="-3264" heading="64016" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24438" x="17156" y="-12317" z="-3120" heading="29824" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="24437" x="16215" y="-15205" z="-3184" heading="6694" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="19227" y="-19567" z="-3313" heading="65273" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="20916" y="-20909" z="-3136" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="24381" y="-17323" z="-2784" heading="52129" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="27960" y="-18916" z="-2448" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="21791" y="-13388" z="-3136" heading="51751" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16100" y="-11489" z="-3232" heading="44238" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="14581" y="-10114" z="-3297" heading="49021" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="16539" y="-13842" z="-3184" heading="24436" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24436" x="19994" y="-20153" z="-3264" heading="33359" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="19806" y="-14510" z="-3008" heading="34867" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="20166" y="-20909" z="-3104" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="23476" y="-20526" z="-2736" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="22032" y="-15872" z="-3009" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="27444" y="-18916" z="-2448" heading="3407" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="27888" y="-18064" z="-2592" heading="28804" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="18852" y="-11602" z="-2800" heading="14531" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="15294" y="-9753" z="-3280" heading="9868" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="14370" y="-13944" z="-3216" heading="45515" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="16720" y="-12948" z="-3121" heading="60701" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="19033" y="-10711" z="-2816" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="22836" y="-19440" z="-2688" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24437" x="5346" y="-19478" z="-3616" heading="9120" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="7362" y="-21596" z="-3360" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="8172" y="-18772" z="-3616" heading="56020" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6308" y="-19807" z="-3632" heading="33373" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4862" y="-18216" z="-3665" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4169" y="-18216" z="-3632" heading="57701" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6703" y="-17124" z="-3633" heading="49856" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="3286" y="-16235" z="-3568" heading="61875" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="4225" y="-15484" z="-3568" heading="10692" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="1932" y="-13524" z="-3280" heading="27757" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="6106" y="-14292" z="-3697" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24437" x="5150" y="-12336" z="-3617" heading="24454" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="24436" x="5396" y="-20292" z="-3552" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="6294" y="-21596" z="-3392" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="8172" y="-18772" z="-3616" heading="56104" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7516" y="-19737" z="-3632" heading="43073" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3782" y="-18729" z="-3536" heading="36207" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3507" y="-18681" z="-3504" heading="1787" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7372" y="-17284" z="-3617" heading="50792" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3228" y="-14414" z="-3472" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="3286" y="-16235" z="-3568" heading="61875" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="1932" y="-13524" z="-3280" heading="27757" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="5150" y="-12336" z="-3617" heading="24454" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="24436" x="7060" y="-13284" z="-3712" heading="64056" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="32108" x="9295" y="-21759" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="3911" y="-19921" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="7393" y="-17864" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="2384" y="-16325" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="7049" y="-15082" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="2581" y="-10953" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="2839" y="-7120" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="9437" y="-10691" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="15342" y="-20151" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="14505" y="-17450" z="-1000" heading="40058" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="21715" y="-20295" z="-1000" heading="9259" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="24656" y="-21219" z="-900" heading="10105" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="20985" y="-14537" z="-800" heading="3411" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="21491" y="-15245" z="-836" heading="20132" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="27622" y="-19076" z="-1000" heading="10456" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="27933" y="-18073" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="23895" y="-14234" z="-628" heading="58130" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="23845" y="-11954" z="-700" heading="18015" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="27638" y="-11281" z="-900" heading="32761" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="21845" y="-7732" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="16052" y="-8284" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="17698" y="-6461" z="-1000" heading="57224" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="13777" y="-13921" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="8586" y="-25312" z="-1000" respawnTime="60sec" /> <!-- -->
</group>
</spawn>
</list>

View File

@@ -1171,6 +1171,22 @@
<npc id="24428" x="172049" y="189049" z="-2222" heading="5948" respawnTime="60sec" /> <!-- Fury Sylph Melan --> <npc id="24428" x="172049" y="189049" z="-2222" heading="5948" respawnTime="60sec" /> <!-- Fury Sylph Melan -->
<npc id="24428" x="172049" y="189049" z="-2222" heading="5948" respawnTime="60sec" /> <!-- Fury Sylph Melan --> <npc id="24428" x="172049" y="189049" z="-2222" heading="5948" respawnTime="60sec" /> <!-- Fury Sylph Melan -->
<npc id="24427" x="172049" y="189049" z="-2222" heading="5948" respawnTime="60sec" /> <!-- Fury Tier Nero --> <npc id="24427" x="172049" y="189049" z="-2222" heading="5948" respawnTime="60sec" /> <!-- Fury Tier Nero -->
<npc id="24432" x="193500" y="174287" z="-1872" heading="49758" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="190840" y="173010" z="-1920" heading="40208" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="187281" y="174187" z="-2542" heading="32293" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="185971" y="176016" z="-2845" heading="25539" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="182919" y="175836" z="-3154" heading="31384" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="180023" y="176115" z="-3254" heading="3920" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="179160" y="186789" z="-2365" heading="20538" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="176602" y="186905" z="-2232" heading="32767" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="174264" y="185766" z="-2113" heading="39753" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="172811" y="183226" z="-2193" heading="42155" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="177428" y="175779" z="-3301" heading="55829" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="175672" y="171700" z="-2322" heading="40358" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="180939" y="174277" z="-3201" heading="12197" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="182119" y="177230" z="-3209" heading="10747" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="185264" y="179654" z="-2833" heading="2058" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
<npc id="24432" x="190667" y="180061" z="-1844" heading="63459" respawnTime="7800sec" /> <!-- Fury Harpy Queen -->
</group> </group>
</spawn> </spawn>
</list> </list>

View File

@@ -1,570 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
<spawn name="PrimevalIsle">
<group>
<npc id="18344" x="14166" y="-17484" z="-3088" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="16736" y="-16956" z="-3232" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="15620" y="-16016" z="-3200" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="15120" y="-14388" z="-3168" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="19692" y="-20050" z="-3280" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="20152" y="-18138" z="-3216" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="19776" y="-15772" z="-3073" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="21041" y="-18281" z="-3152" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="22580" y="-20164" z="-2608" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="23364" y="-16019" z="-2993" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="25429" y="-18906" z="-2624" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="25856" y="-16560" z="-2736" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="26928" y="-19264" z="-2368" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="27626" y="-17214" z="-2624" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="27714" y="-15192" z="-2624" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="25460" y="-11611" z="-2512" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="26764" y="-11673" z="-2464" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="22088" y="-13789" z="-3168" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="21762" y="-13789" z="-3136" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="21442" y="-10724" z="-2832" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="18309" y="-11008" z="-2864" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="14581" y="-9014" z="-3264" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18344" x="15132" y="-12764" z="-3136" respawnTime="60sec" /> <!-- Dinosaur Egg -->
<npc id="18345" x="14754" y="-19035" z="-3168" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="15776" y="-18796" z="-3200" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="16870" y="-15128" z="-3184" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="20291" y="-19814" z="-3312" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="18836" y="-17822" z="-3201" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="19776" y="-15772" z="-3073" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="19828" y="-20535" z="-3184" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="21396" y="-17228" z="-2977" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="23092" y="-20888" z="-2656" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="24092" y="-18191" z="-2736" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="23068" y="-14990" z="-3056" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="25856" y="-16451" z="-2720" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="26742" y="-15692" z="-2656" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="25534" y="-13774" z="-2560" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="26149" y="-13010" z="-2576" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="22522" y="-12423" z="-2592" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="20784" y="-14098" z="-3024" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="20800" y="-11608" z="-2816" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="20481" y="-9820" z="-2880" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="20300" y="-8632" z="-2736" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="14798" y="-9839" z="-3296" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="15015" y="-9839" z="-3265" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="16144" y="-13360" z="-3169" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18345" x="14620" y="-14092" z="-3216" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="14816" y="-16588" z="-3152" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="18060" y="-19662" z="-3264" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="17708" y="-17348" z="-3232" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="16120" y="-14536" z="-3153" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="20916" y="-18719" z="-3264" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="21936" y="-17592" z="-2960" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="23348" y="-21431" z="-2544" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="22088" y="-14407" z="-3104" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="21396" y="-15226" z="-3056" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="22328" y="-16166" z="-2977" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="25561" y="-17650" z="-2753" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="24665" y="-18334" z="-2705" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="26842" y="-18800" z="-2512" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="27331" y="-16887" z="-2672" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="28200" y="-15092" z="-2544" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="27714" y="-15792" z="-2672" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="25329" y="-12819" z="-2545" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="26149" y="-12819" z="-2560" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="23368" y="-10282" z="-2640" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="22726" y="-10503" z="-2720" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="25912" y="-11002" z="-2465" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="20784" y="-14201" z="-3040" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="18852" y="-12196" z="-2768" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="19033" y="-10117" z="-2784" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="16968" y="-8189" z="-3216" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="16317" y="-9289" z="-3265" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="14879" y="-13211" z="-3168" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="18346" x="16903" y="-14105" z="-3153" respawnTime="60sec" /> <!-- Sprigant -->
<npc id="22196" x="13994" y="-17411" z="-3040" heading="45478" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22196" x="20291" y="-21347" z="-3008" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22196" x="21501" y="-15017" z="-3072" heading="35394" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22196" x="27957" y="-15092" z="-2592" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22196" x="24628" y="-20888" z="-2592" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22196" x="21014" y="-12492" z="-2704" heading="34228" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="15831" y="-17587" z="-3217" heading="36791" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="16601" y="-16695" z="-3232" heading="46776" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="14187" y="-14327" z="-3200" heading="19512" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="16433" y="-14860" z="-3169" heading="53930" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="16828" y="-15716" z="-3200" heading="46776" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="18917" y="-19494" z="-3328" heading="39678" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="20099" y="-16677" z="-3072" heading="50973" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="18599" y="-17658" z="-3216" heading="45638" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="19751" y="-18203" z="-3248" heading="54007" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="18895" y="-14436" z="-2992" heading="37369" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="21226" y="-19092" z="-3248" heading="8790" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="20676" y="-18312" z="-3200" heading="29597" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="20858" y="-18057" z="-3136" heading="13415" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="23691" y="-20688" z="-2720" heading="2098" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="23813" y="-19178" z="-2800" heading="40874" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="21014" y="-14673" z="-3072" heading="58892" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="22899" y="-15499" z="-3040" heading="13792" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="22360" y="-15116" z="-3041" heading="26323" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="24935" y="-17794" z="-2737" heading="14110" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="26837" y="-17189" z="-2721" heading="2555" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="25133" y="-14833" z="-2736" heading="13178" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="27289" y="-17133" z="-2688" heading="1285" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="27247" y="-12938" z="-2336" heading="9592" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="26734" y="-12967" z="-2400" heading="46861" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="24300" y="-12260" z="-2528" heading="19382" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="22820" y="-10983" z="-2672" heading="52543" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="26991" y="-11802" z="-2448" heading="11492" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="27629" y="-11835" z="-2320" heading="22415" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="20372" y="-10947" z="-2832" heading="11057" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="19292" y="-10868" z="-2880" heading="13418" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="19916" y="-11127" z="-2832" heading="49701" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="16554" y="-10619" z="-3280" heading="44140" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="14134" y="-12048" z="-3024" heading="52072" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="13243" y="-12371" z="-2992" heading="17289" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="14622" y="-13249" z="-3168" heading="26674" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="17083" y="-13234" z="-3121" heading="38724" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22198" x="17141" y="-12939" z="-3120" heading="14324" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22199" x="19776" y="-18928" z="-3312" heading="29550" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="19506" y="-15408" z="-3088" heading="45143" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="20416" y="-20909" z="-3104" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="20166" y="-21128" z="-3056" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="21166" y="-20033" z="-3312" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="21666" y="-17410" z="-2976" heading="48218" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="24092" y="-18763" z="-2768" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="23216" y="-16901" z="-2976" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="26446" y="-17868" z="-2704" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="27228" y="-15892" z="-2656" heading="63512" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="24628" y="-21069" z="-2560" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="23718" y="-14304" z="-3024" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="24714" y="-13583" z="-2480" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="26969" y="-13774" z="-2304" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="24556" y="-11814" z="-2544" heading="12097" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="24358" y="-11423" z="-2544" heading="47567" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="23796" y="-9840" z="-2560" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="20800" y="-12492" z="-2736" heading="8316" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="19938" y="-12196" z="-2768" heading="54770" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="20190" y="-9774" z="-2864" heading="28636" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="16957" y="-11057" z="-3200" heading="48183" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="15470" y="-9402" z="-3249" heading="19447" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="15883" y="-6539" z="-3056" heading="8564" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="15232" y="-7364" z="-3136" heading="7538" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22199" x="14879" y="-12764" z="-3152" heading="10867" respawnTime="60sec" /> <!-- Pterosaur -->
<npc id="22202" x="14803" y="-18319" z="-3184" heading="13313" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="15809" y="-17684" z="-3216" heading="46886" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="16434" y="-14637" z="-3169" heading="62148" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="19580" y="-16612" z="-3120" heading="31467" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="18599" y="-17658" z="-3216" heading="45638" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="20581" y="-15799" z="-3056" heading="56814" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="21226" y="-19092" z="-3248" heading="8790" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="23813" y="-19178" z="-2800" heading="40874" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="26512" y="-16107" z="-2657" heading="5209" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="25591" y="-15496" z="-2736" heading="43240" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="24109" y="-11614" z="-2544" heading="19382" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="24296" y="-11642" z="-2544" heading="51852" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="21724" y="-11239" z="-2768" heading="36497" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="19865" y="-11852" z="-2784" heading="11057" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="20037" y="-10471" z="-2848" heading="58222" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="16554" y="-10619" z="-3280" heading="44140" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="14808" y="-12260" z="-3104" heading="38595" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="15660" y="-9943" z="-3296" heading="7959" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="14556" y="-14047" z="-3201" heading="11117" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22202" x="15257" y="-13397" z="-3169" heading="52907" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22205" x="15964" y="-18408" z="-3184" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22205" x="20002" y="-18075" z="-3216" heading="4918" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22205" x="24060" y="-18407" z="-2736" heading="22587" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22205" x="21526" y="-14486" z="-3104" heading="63875" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22205" x="27258" y="-16633" z="-2657" heading="62354" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22205" x="25152" y="-11442" z="-2512" heading="32732" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22205" x="15353" y="-8810" z="-3280" heading="35093" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22205" x="14932" y="-13501" z="-3184" heading="51680" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22213" x="2854" y="-12579" z="-3584" heading="34011" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22213" x="5591" y="-12989" z="-3649" heading="5629" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22213" x="2047" y="-11495" z="-3488" heading="48888" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22213" x="5564" y="-10073" z="-3617" heading="16220" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22213" x="5465" y="-9186" z="-3680" heading="42960" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22213" x="5851" y="-7792" z="-3648" heading="19619" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22213" x="5220" y="-7422" z="-3520" heading="44857" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22213" x="6318" y="-13788" z="-3697" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22214" x="5555" y="-19711" z="-3601" respawnTime="60sec" /> <!-- Elroki -->
<npc id="22214" x="3635" y="-17650" z="-3632" respawnTime="60sec" /> <!-- Elroki -->
<npc id="22214" x="5937" y="-17281" z="-3681" respawnTime="60sec" /> <!-- Elroki -->
<npc id="22214" x="3505" y="-15371" z="-3536" respawnTime="60sec" /> <!-- Elroki -->
<npc id="22214" x="7379" y="-14776" z="-3697" respawnTime="60sec" /> <!-- Elroki -->
<npc id="22214" x="5533" y="-14304" z="-3697" respawnTime="60sec" /> <!-- Elroki -->
<npc id="22215" x="19506" y="-15772" z="-3073" heading="49220" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="22215" x="22253" y="-17062" z="-2992" heading="47449" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="22215" x="23348" y="-20888" z="-2672" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="22215" x="25047" y="-18477" z="-2720" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="22215" x="27331" y="-16669" z="-2657" heading="21125" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="22215" x="27714" y="-14692" z="-2560" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="22215" x="26555" y="-11574" z="-2480" heading="28153" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="22215" x="21295" y="-11123" z="-2800" heading="41953" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="22215" x="19605" y="-11234" z="-2817" heading="57601" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="22216" x="19220" y="-11806" z="-2769" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="22217" x="26740" y="-16596" z="-2688" heading="13790" respawnTime="1800sec" /> <!-- Tyrannosaurus -->
<npc id="22218" x="16928" y="-16220" z="-3201" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="18156" y="-15044" z="-3072" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="18740" y="-20244" z="-3296" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="19588" y="-18612" z="-3280" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="22476" y="-16607" z="-2992" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="24086" y="-17759" z="-2768" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="20586" y="-15408" z="-3072" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="23068" y="-15578" z="-3024" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="24856" y="-18477" z="-2720" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="25856" y="-17759" z="-2736" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="27014" y="-19612" z="-2288" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="26149" y="-13201" z="-2480" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="27379" y="-13774" z="-2272" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="23426" y="-11814" z="-2544" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="25460" y="-12017" z="-2513" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="22298" y="-12492" z="-2624" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22218" x="20481" y="-11899" z="-2816" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22219" x="5740" y="-21105" z="-3424" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="6005" y="-21428" z="-3392" heading="56875" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="4673" y="-18463" z="-3665" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="5990" y="-20441" z="-3504" heading="35825" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="7841" y="-19086" z="-3664" heading="2749" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="7536" y="-19177" z="-3680" heading="50136" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="3662" y="-20256" z="-3360" heading="54896" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="3499" y="-19936" z="-3344" heading="39889" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="3832" y="-16545" z="-3712" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="2890" y="-17128" z="-3584" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="6886" y="-17570" z="-3633" heading="2127" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="7568" y="-16765" z="-3633" heading="65095" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="7884" y="-17896" z="-3568" heading="26450" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="2435" y="-14860" z="-3328" heading="1472" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="3530" y="-16223" z="-3584" heading="23278" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="4745" y="-16026" z="-3616" heading="24667" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="6072" y="-16082" z="-3728" heading="11763" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="3730" y="-12596" z="-3760" heading="13589" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="3800" y="-12939" z="-3760" heading="10514" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="2541" y="-14066" z="-3408" heading="43397" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="2240" y="-13831" z="-3360" heading="51029" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="5247" y="-13936" z="-3712" heading="55267" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="2649" y="-11653" z="-3600" heading="31384" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="3644" y="-9112" z="-3601" heading="10958" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="2424" y="-9830" z="-3664" heading="32760" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="3475" y="-7014" z="-3344" heading="12488" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="3883" y="-7791" z="-3457" heading="58561" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="6373" y="-8269" z="-3760" heading="28750" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="7613" y="-9365" z="-3600" heading="31384" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="7807" y="-6790" z="-3504" heading="15331" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="7096" y="-10205" z="-3680" heading="25226" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="8493" y="-14360" z="-3712" heading="58478" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="8447" y="-14972" z="-3680" heading="43838" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="16248" y="-18905" z="-3216" heading="62181" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="15545" y="-14345" z="-3168" heading="37252" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="16797" y="-14914" z="-3200" heading="47955" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="19867" y="-18814" z="-3296" heading="46214" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="20541" y="-21785" z="-2912" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="21517" y="-17370" z="-2976" heading="35667" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="21778" y="-17677" z="-2944" heading="42809" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="23732" y="-21793" z="-2480" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="24415" y="-18026" z="-2736" heading="47224" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="20601" y="-16115" z="-3040" heading="5817" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="21715" y="-15043" z="-3057" heading="18224" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="22988" y="-15056" z="-3041" heading="24773" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="25238" y="-19192" z="-2609" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="25381" y="-18030" z="-2736" heading="37429" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="27696" y="-12843" z="-2304" heading="2912" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="22705" y="-12047" z="-2592" heading="11659" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="22557" y="-12195" z="-2592" heading="8985" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="20001" y="-11823" z="-2800" heading="5742" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="19860" y="-8608" z="-2720" heading="23278" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="14740" y="-13586" z="-3185" heading="56592" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22219" x="15961" y="-13299" z="-3169" heading="23849" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22220" x="6500" y="-21747" z="-3360" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="7070" y="-20677" z="-3520" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="6337" y="-20992" z="-3472" heading="47823" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="7750" y="-19025" z="-3649" heading="47856" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="3725" y="-19583" z="-3456" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="3567" y="-19023" z="-3488" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="3428" y="-19970" z="-3328" heading="58624" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="2526" y="-17406" z="-3456" heading="25124" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="4791" y="-18210" z="-3665" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="7670" y="-18162" z="-3568" heading="60029" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="7529" y="-18324" z="-3600" heading="6790" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="2329" y="-14459" z="-3312" heading="20401" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="2263" y="-14413" z="-3296" heading="43787" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="3472" y="-16237" z="-3584" heading="64470" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="4769" y="-15984" z="-3616" heading="57626" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="8400" y="-14727" z="-3681" heading="3944" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="7743" y="-15212" z="-3681" heading="39560" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="7344" y="-15943" z="-3665" heading="999" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="6104" y="-15894" z="-3713" heading="6434" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="2377" y="-14095" z="-3376" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="3569" y="-13603" z="-3600" heading="53989" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="4056" y="-13377" z="-3745" heading="18749" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="2223" y="-10800" z="-3504" heading="21869" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="4885" y="-12207" z="-3616" heading="24852" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="3972" y="-10085" z="-3680" heading="99" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="3625" y="-9647" z="-3648" heading="30401" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="4912" y="-9772" z="-3760" heading="20985" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="5639" y="-6667" z="-3456" heading="40267" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="4395" y="-5955" z="-3104" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="6605" y="-6511" z="-3456" heading="59625" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="7524" y="-7265" z="-3600" heading="29596" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="6946" y="-7563" z="-3632" heading="23480" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="8533" y="-14092" z="-3728" heading="8330" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="15382" y="-16330" z="-3200" heading="1154" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22220" x="27994" y="-15015" z="-2576" heading="26953" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22221" x="5550" y="-21747" z="-3344" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4790" y="-21319" z="-3360" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4515" y="-18883" z="-3648" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4357" y="-19723" z="-3536" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4831" y="-20143" z="-3552" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="7830" y="-20891" z="-3440" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="7260" y="-20249" z="-3568" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="7023" y="-19421" z="-3680" heading="6856" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="7427" y="-19087" z="-3696" heading="17965" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="6761" y="-18795" z="-3712" heading="42642" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="3409" y="-19303" z="-3408" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="3226" y="-18173" z="-3600" heading="16383" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="3408" y="-18472" z="-3536" heading="54826" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="2534" y="-16823" z="-3424" heading="49249" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="2623" y="-16590" z="-3424" heading="51707" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4380" y="-16915" z="-3712" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="5202" y="-16915" z="-3761" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="5063" y="-16754" z="-3776" heading="60895" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="6484" y="-16981" z="-3664" heading="30857" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="6865" y="-17218" z="-3633" heading="13481" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="7632" y="-17527" z="-3617" heading="36125" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="7290" y="-17949" z="-3632" heading="41723" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4020" y="-14420" z="-3568" heading="34611" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="3058" y="-16226" z="-3520" heading="5289" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="2622" y="-14776" z="-3360" heading="54344" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="3202" y="-14387" z="-3472" heading="51752" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="2126" y="-14612" z="-3264" heading="39739" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="2799" y="-16284" z="-3456" heading="51410" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="5339" y="-15805" z="-3616" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="5276" y="-15717" z="-3600" heading="61603" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4948" y="-15117" z="-3616" heading="18012" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4015" y="-14728" z="-3552" heading="26687" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="6743" y="-15042" z="-3712" heading="40455" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="7329" y="-16262" z="-3680" heading="64669" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="7186" y="-15079" z="-3712" heading="20920" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="2739" y="-14221" z="-3424" heading="50390" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="3162" y="-13973" z="-3520" heading="41980" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="3320" y="-13538" z="-3584" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="3867" y="-12582" z="-3744" heading="15955" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="3624" y="-12461" z="-3760" heading="7632" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="2143" y="-13640" z="-3344" heading="28869" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="5940" y="-13991" z="-3697" heading="49806" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="5858" y="-13460" z="-3744" heading="5177" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="5727" y="-13232" z="-3744" heading="46388" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4480" y="-13080" z="-3649" heading="54075" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4256" y="-13549" z="-3760" heading="42499" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="5112" y="-13453" z="-3696" heading="61702" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="3443" y="-11119" z="-3664" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="3091" y="-11798" z="-3664" heading="21092" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="3226" y="-11598" z="-3664" heading="19588" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="5676" y="-10581" z="-3617" heading="52082" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="6335" y="-8905" z="-3728" heading="64221" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4372" y="-9162" z="-3616" heading="27867" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4035" y="-9273" z="-3616" heading="19890" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="3077" y="-7069" z="-3328" heading="24676" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="3490" y="-6459" z="-3152" heading="43726" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4665" y="-6367" z="-3264" heading="46465" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4799" y="-7319" z="-3488" heading="64813" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="4834" y="-6816" z="-3408" heading="46528" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="5402" y="-6969" z="-3488" heading="43631" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="6492" y="-8691" z="-3745" heading="6152" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="6315" y="-9882" z="-3760" heading="25283" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="7001" y="-7352" z="-3600" heading="12697" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="6356" y="-7920" z="-3760" heading="45919" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="6044" y="-11899" z="-3648" heading="56213" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="6312" y="-13399" z="-3744" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="8496" y="-14856" z="-3680" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="8408" y="-14648" z="-3681" heading="40150" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="8492" y="-14488" z="-3696" heading="27163" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22221" x="8353" y="-14856" z="-3696" heading="35185" respawnTime="60sec" /> <!-- Pachycephalosaurus -->
<npc id="22222" x="4702" y="-21182" z="-3408" heading="62215" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="5779" y="-19023" z="-3664" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="5779" y="-18603" z="-3712" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="6657" y="-20845" z="-3520" heading="59087" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="7640" y="-20998" z="-3456" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="7830" y="-20356" z="-3504" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="7900" y="-19254" z="-3632" heading="15909" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="3409" y="-19583" z="-3376" heading="20880" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="3725" y="-18883" z="-3520" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="3183" y="-18745" z="-3424" heading="55655" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="3323" y="-18355" z="-3552" heading="55960" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="4342" y="-18154" z="-3664" heading="52338" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="4928" y="-17840" z="-3696" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="7054" y="-17512" z="-3648" heading="60019" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="7807" y="-18037" z="-3552" heading="15532" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="7215" y="-18197" z="-3632" heading="64958" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="7492" y="-18198" z="-3600" heading="33148" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="2461" y="-14689" z="-3328" heading="58927" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="3057" y="-14557" z="-3440" heading="44338" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="2538" y="-16257" z="-3360" heading="12432" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="2514" y="-16395" z="-3376" heading="52689" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="4580" y="-15008" z="-3569" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="5613" y="-15990" z="-3760" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="4632" y="-16542" z="-3744" heading="15309" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="6388" y="-14576" z="-3776" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="7796" y="-14921" z="-3696" heading="29456" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="8155" y="-15676" z="-3632" heading="58625" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="6200" y="-15001" z="-3760" heading="23907" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="6782" y="-15458" z="-3696" heading="17517" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="8061" y="-16121" z="-3632" heading="38472" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="7479" y="-16179" z="-3680" heading="64587" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="3059" y="-13898" z="-3520" heading="20457" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="2494" y="-13702" z="-3440" heading="10250" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="6084" y="-13078" z="-3712" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="5000" y="-13685" z="-3760" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="5850" y="-13216" z="-3760" heading="12789" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="5821" y="-13577" z="-3712" heading="52791" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="4867" y="-13171" z="-3649" heading="36245" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="5530" y="-12785" z="-3633" heading="19053" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="2081" y="-11002" z="-3472" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="3612" y="-11153" z="-3680" heading="1972" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="4515" y="-11911" z="-3584" heading="22359" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="4406" y="-11588" z="-3632" heading="53351" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="5442" y="-10190" z="-3617" heading="6978" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="3180" y="-8904" z="-3600" heading="56099" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="3557" y="-8853" z="-3584" heading="31723" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="3668" y="-9487" z="-3632" heading="34285" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="3127" y="-9267" z="-3633" heading="19739" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="6119" y="-8354" z="-3648" heading="7252" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="4593" y="-9162" z="-3616" heading="37372" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="4065" y="-7881" z="-3473" heading="10617" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="3559" y="-7394" z="-3408" heading="51662" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="4274" y="-7265" z="-3440" heading="1587" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="4171" y="-6049" z="-3088" heading="7432" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="7624" y="-8200" z="-3617" heading="57279" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="7501" y="-9024" z="-3616" heading="3475" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="7655" y="-8088" z="-3632" heading="62606" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="6947" y="-6446" z="-3456" heading="55262" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="7542" y="-7985" z="-3633" heading="53713" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="7856" y="-14254" z="-3696" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="6318" y="-13552" z="-3680" heading="61462" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="6264" y="-13191" z="-3776" heading="28395" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="8373" y="-14306" z="-3696" heading="8560" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="8336" y="-14856" z="-3696" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="8388" y="-14612" z="-3681" heading="38622" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22222" x="8615" y="-14764" z="-3680" heading="56131" respawnTime="60sec" /> <!-- Wild Strider -->
<npc id="22223" x="13725" y="-17202" z="-2912" heading="11451" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="15489" y="-19599" z="-3136" heading="33780" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="14432" y="-17324" z="-3120" heading="954" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="14495" y="-18281" z="-3184" heading="39942" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="15336" y="-16539" z="-3200" heading="36376" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="16928" y="-17508" z="-3216" heading="65108" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="18272" y="-17506" z="-3217" heading="53227" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="15897" y="-15401" z="-3184" heading="39942" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="14259" y="-14344" z="-3200" heading="23389" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="18156" y="-14680" z="-3009" heading="20244" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="19506" y="-16500" z="-3120" heading="40300" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="19118" y="-17877" z="-3201" heading="38291" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="20416" y="-20690" z="-3168" heading="1722" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="19284" y="-20535" z="-3168" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="23416" y="-21111" z="-2624" heading="39139" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="23901" y="-18620" z="-2768" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="23519" y="-18048" z="-2688" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="23718" y="-14407" z="-3040" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="22772" y="-15725" z="-3040" heading="3809" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="27272" y="-20076" z="-2208" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="26977" y="-16905" z="-2704" heading="6366" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="27471" y="-15492" z="-2640" heading="61862" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="25739" y="-13010" z="-2608" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="26354" y="-13965" z="-2400" heading="36130" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="24556" y="-12220" z="-2528" heading="23617" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="25632" y="-11563" z="-2496" heading="57950" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="24782" y="-11408" z="-2544" heading="22240" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="24104" y="-10190" z="-2544" heading="13481" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="21762" y="-13892" z="-3136" heading="57140" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="20799" y="-10068" z="-2865" heading="3582" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="20705" y="-9773" z="-2864" heading="29343" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="22097" y="-9952" z="-2785" heading="47915" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="20632" y="-8033" z="-2656" heading="31186" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="19505" y="-9946" z="-2848" heading="11031" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="16403" y="-9172" z="-3280" heading="9772" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="16317" y="-9014" z="-3280" heading="40690" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="14798" y="-9289" z="-3280" heading="61954" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="15375" y="-8485" z="-3264" heading="64016" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22223" x="17156" y="-12317" z="-3120" heading="29824" respawnTime="60sec" /> <!-- Velociraptor -->
<npc id="22224" x="16215" y="-15205" z="-3184" heading="6694" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22224" x="19227" y="-19567" z="-3313" heading="65273" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22224" x="20916" y="-20909" z="-3136" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22224" x="24381" y="-17323" z="-2784" heading="52129" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22224" x="27960" y="-18916" z="-2448" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22224" x="21791" y="-13388" z="-3136" heading="51751" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22224" x="16100" y="-11489" z="-3232" heading="44238" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22224" x="14581" y="-10114" z="-3297" heading="49021" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22224" x="16539" y="-13842" z="-3184" heading="24436" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22225" x="19994" y="-20153" z="-3264" heading="33359" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22225" x="19806" y="-14510" z="-3008" heading="34867" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22225" x="20166" y="-20909" z="-3104" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22225" x="23476" y="-20526" z="-2736" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22225" x="22032" y="-15872" z="-3009" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22225" x="27444" y="-18916" z="-2448" heading="3407" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22225" x="27888" y="-18064" z="-2592" heading="28804" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22225" x="18852" y="-11602" z="-2800" heading="14531" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22225" x="15294" y="-9753" z="-3280" heading="9868" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22225" x="14370" y="-13944" z="-3216" heading="45515" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22225" x="16720" y="-12948" z="-3121" heading="60701" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22225" x="19033" y="-10711" z="-2816" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22225" x="22836" y="-19440" z="-2688" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22742" x="5346" y="-19478" z="-3616" heading="9120" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22742" x="7362" y="-21596" z="-3360" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22742" x="8172" y="-18772" z="-3616" heading="56020" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22742" x="6308" y="-19807" z="-3632" heading="33373" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22742" x="4862" y="-18216" z="-3665" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22742" x="4169" y="-18216" z="-3632" heading="57701" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22742" x="6703" y="-17124" z="-3633" heading="49856" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22742" x="3286" y="-16235" z="-3568" heading="61875" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22742" x="4225" y="-15484" z="-3568" heading="10692" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22742" x="1932" y="-13524" z="-3280" heading="27757" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22742" x="6106" y="-14292" z="-3697" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22742" x="5150" y="-12336" z="-3617" heading="24454" respawnTime="60sec" /> <!-- Ornithomimus -->
<npc id="22743" x="5396" y="-20292" z="-3552" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22743" x="6294" y="-21596" z="-3392" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22743" x="8172" y="-18772" z="-3616" heading="56104" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22743" x="7516" y="-19737" z="-3632" heading="43073" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22743" x="3782" y="-18729" z="-3536" heading="36207" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22743" x="3507" y="-18681" z="-3504" heading="1787" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22743" x="7372" y="-17284" z="-3617" heading="50792" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22743" x="3228" y="-14414" z="-3472" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22743" x="3286" y="-16235" z="-3568" heading="61875" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22743" x="1932" y="-13524" z="-3280" heading="27757" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22743" x="5150" y="-12336" z="-3617" heading="24454" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="22743" x="7060" y="-13284" z="-3712" heading="64056" respawnTime="60sec" /> <!-- Deinonychus -->
<npc id="32105" x="11952" y="-24016" z="-3648" heading="32000" respawnTime="60sec" /> <!-- Dinn -->
<npc id="32106" x="10304" y="-25024" z="-3680" respawnTime="60sec" /> <!-- Singsing -->
<npc id="32108" x="9295" y="-21759" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="3911" y="-19921" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="7393" y="-17864" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="2384" y="-16325" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="7049" y="-15082" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="2581" y="-10953" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="2839" y="-7120" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="9437" y="-10691" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="15342" y="-20151" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="14505" y="-17450" z="-1000" heading="40058" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="21715" y="-20295" z="-1000" heading="9259" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="24656" y="-21219" z="-900" heading="10105" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="20985" y="-14537" z="-800" heading="3411" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="21491" y="-15245" z="-836" heading="20132" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="27622" y="-19076" z="-1000" heading="10456" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="27933" y="-18073" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="23895" y="-14234" z="-628" heading="58130" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="23845" y="-11954" z="-700" heading="18015" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="27638" y="-11281" z="-900" heading="32761" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="21845" y="-7732" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="16052" y="-8284" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="17698" y="-6461" z="-1000" heading="57224" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="13777" y="-13921" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32108" x="8586" y="-25312" z="-1000" respawnTime="60sec" /> <!-- -->
<npc id="32109" x="23664" y="-8464" z="-1344" heading="33000" respawnTime="60sec" /> <!-- Shilen's Stone Statue -->
<npc id="32111" x="7344" y="-5440" z="-3216" heading="50000" respawnTime="60sec" /> <!-- Orahochin -->
<npc id="32112" x="5376" y="-2720" z="-3184" heading="16500" respawnTime="60sec" /> <!-- Gariachin -->
<npc id="32113" x="11712" y="-23616" z="-3648" heading="40000" respawnTime="60sec" /> <!-- Marquez -->
<npc id="32114" x="6538" y="-2529" z="-2944" heading="42000" respawnTime="60sec" /> <!-- Mushika -->
<npc id="32115" x="6360" y="-2573" z="-2944" respawnTime="60sec" /> <!-- Asamah -->
<npc id="32116" x="12736" y="-14448" z="-3184" respawnTime="60sec" /> <!-- Kirikachin -->
<npc id="32117" x="6264" y="-2187" z="-2960" heading="26000" respawnTime="60sec" /> <!-- Karakawei -->
<npc id="32118" x="15748" y="-19810" z="-3008" respawnTime="60sec" /> <!-- Mantarasa Egg -->
<npc id="32119" x="23707" y="-19108" z="-2800" respawnTime="60sec" /> <!-- Ulu Kaimu -->
<npc id="32120" x="27723" y="-11684" z="-2272" respawnTime="60sec" /> <!-- Balu Kaimu -->
<npc id="32121" x="18714" y="-9635" z="-2753" respawnTime="60sec" /> <!-- Chuta Kaimu -->
<npc id="32122" x="13123" y="-8895" z="-3104" respawnTime="60sec" /> <!-- Warrior's Tomb -->
<npc id="32714" x="11504" y="-23344" z="-3648" heading="39000" respawnTime="60sec" /> <!-- Asher -->
</group>
</spawn>
</list>

View File

@@ -499,7 +499,7 @@
<height normal="30" /> <height normal="30" />
</collision> </collision>
</npc> </npc>
<npc id="34526" level="85" type="Npc" name="Expedition Teleporter" title="Primeval Isle Explorer"> <npc id="34526" level="85" type="Teleporter" name="Expedition Teleporter" title="Primeval Isle Explorer">
<!-- AUTO GENERATED NPC TODO: FIX IT --> <!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race> <race>ETC</race>
<sex>FEMALE</sex> <sex>FEMALE</sex>

View File

@@ -1,8 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/teleporterData.xsd"> <list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/teleporterData.xsd">
<npc id="32714"> <!-- Asher --> <npc id="34526"> <!-- Expedition Teleporter -->
<teleport type="OTHER"> <teleport type="OTHER">
<location x="43835" y="-47749" z="-792" /> <!-- Rune --> <location x="9400" y="-21720" z="-3634" /> <!-- Eastern Camp -->
<location x="14696" y="-18968" z="-3161" /> <!-- Western Camp -->
<location x="21912" y="-6440" z="-2008" /> <!-- Southern Camp -->
<location x="27944" y="-12536" z="-2282" /> <!-- Northern Camp -->
</teleport> </teleport>
</npc> </npc>
</list> </list>