Skip to content

Instantly share code, notes, and snippets.

@VlLight
Last active December 28, 2015 03:48
Show Gist options
  • Save VlLight/7437446 to your computer and use it in GitHub Desktop.
Save VlLight/7437446 to your computer and use it in GitHub Desktop.
Turek Orks AI
Index: dist/game/data/scripts.cfg
===================================================================
--- dist/game/data/scripts.cfg (revision 10040)
+++ dist/game/data/scripts.cfg (working copy)
@@ -114,6 +114,7 @@
ai/group_template/StakatoNest.java
ai/group_template/StarStones.java
ai/group_template/SummonMinions.java
+ai/group_template/TurekOrcs.java
ai/group_template/VarkaKetra.java
ai/group_template/WarriorFishingBlock.java
Index: dist/game/data/scripts/ai/group_template/TurekOrcs.java
===================================================================
--- dist/game/data/scripts/ai/group_template/TurekOrcs.java (revision 0)
+++ dist/game/data/scripts/ai/group_template/TurekOrcs.java (working copy)
@@ -0,0 +1,132 @@
+/*
+ * Copyright (C) 2004-2013 L2J DataPack
+ *
+ * This file is part of L2J DataPack.
+ *
+ * L2J DataPack 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.
+ *
+ * L2J DataPack 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.group_template;
+
+import ai.npc.AbstractNpcAI;
+
+import com.l2jserver.gameserver.ai.CtrlIntention;
+import com.l2jserver.gameserver.enums.QuestEventType;
+import com.l2jserver.gameserver.model.L2Object;
+import com.l2jserver.gameserver.model.L2World;
+import com.l2jserver.gameserver.model.Location;
+import com.l2jserver.gameserver.model.actor.L2Attackable;
+import com.l2jserver.gameserver.model.actor.L2Npc;
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+import com.l2jserver.gameserver.network.NpcStringId;
+
+/**
+ * Turek Orcs AI - flee and return with assistance
+ * @author GKR
+ */
+
+public class TurekOrcs extends AbstractNpcAI
+{
+ // NPC's
+ // Turek War Hound, Turek Orc Warlord, Turek Orc Skirmisher, Turek Orc Supplier, Turek Orc Footman, Turek Orc Sentinel
+ private static final int[] MOBS = new int[] { 20494, 20495, 20497, 20498, 20499, 20500 };
+
+ private TurekOrcs()
+ {
+ super(TurekOrcs.class.getSimpleName(), "ai/group_template");
+ registerMobs(MOBS, QuestEventType.ON_ATTACK, QuestEventType.ON_EVENT_RECEIVED, QuestEventType.ON_MOVE_FINISHED);
+ }
+
+ @Override
+ public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
+ {
+ if (event.equalsIgnoreCase("checkState") && !npc.isDead() && (npc.getAI().getIntention() != CtrlIntention.AI_INTENTION_ATTACK))
+ {
+ if ((npc.getCurrentHp() > (npc.getMaxHp() * 0.7)) && (npc.getVariables().getInt("state") == 2))
+ {
+ npc.getVariables().set("state", 3);
+ ((L2Attackable) npc).returnHome();
+ }
+ else
+ {
+ npc.getVariables().remove("state");
+ }
+ }
+ return super.onAdvEvent(event, npc, player);
+ }
+
+ @Override
+ public String onAttack(L2Npc npc, L2PcInstance attacker, int damage, boolean isSummon)
+ {
+ if (!npc.getVariables().hasVariable("hitted"))
+ {
+ npc.getVariables().set("hitted", 1);
+ }
+ else if ((npc.getCurrentHp() < (npc.getMaxHp() * 0.5)) && (npc.getCurrentHp() > (npc.getMaxHp() * 0.3)) &&
+ (attacker.getCurrentHp() > (attacker.getMaxHp() * 0.25)) && npc.hasAIValue("fleeX") && npc.hasAIValue("fleeY") && npc.hasAIValue("fleeZ") &&
+ (npc.getVariables().getInt("state") == 0) && (getRandom(100) < 10))
+ {
+ // Say and flee
+ broadcastNpcSay(npc, 0, NpcStringId.getNpcStringId(getRandom(1000007, 1000027)));
+ npc.disableCoreAI(true); // to avoid attacking behaviour, while flee
+ npc.setIsRunning(true);
+ npc.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, new Location(npc.getAIValue("fleeX"), npc.getAIValue("fleeY"), npc.getAIValue("fleeZ")));
+ npc.getVariables().set("state", 1);
+ npc.getVariables().set("attacker", attacker.getObjectId());
+ }
+ return super.onAttack(npc, attacker, damage, isSummon);
+ }
+
+ @Override
+ public String onEventReceived(String eventName, L2Npc sender, L2Npc receiver, L2Object reference)
+ {
+ if (eventName.equals("WARNING") && !receiver.isDead() && (receiver.getAI().getIntention() != CtrlIntention.AI_INTENTION_ATTACK) && (reference != null) && (reference.getActingPlayer() != null) && !reference.getActingPlayer().isDead())
+ {
+ receiver.getVariables().set("state", 3);
+ receiver.setIsRunning(true);
+ ((L2Attackable) receiver).addDamageHate(reference.getActingPlayer(), 0, 99999);
+ receiver.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, reference.getActingPlayer());
+ }
+ return null;
+ }
+
+ @Override
+ public void onMoveFinished(L2Npc npc)
+ {
+ // NPC reaches flee point
+ if (npc.getVariables().getInt("state") == 1)
+ {
+ if ((npc.getX() == npc.getAIValue("fleeX")) && (npc.getY() == npc.getAIValue("fleeY")))
+ {
+ npc.disableCoreAI(false);
+ startQuestTimer("checkState", 15000, npc, null);
+ npc.getVariables().set("state", 2);
+ npc.broadcastEvent("WARNING", 400, L2World.getInstance().getPlayer(npc.getVariables().getInt("attacker")));
+ }
+ else
+ {
+ npc.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, new Location(npc.getAIValue("fleeX"), npc.getAIValue("fleeY"), npc.getAIValue("fleeZ")));
+ }
+ }
+ else if ((npc.getVariables().getInt("state") == 3) && npc.staysInSpawnLoc())
+ {
+ npc.disableCoreAI(false);
+ npc.getVariables().remove("state");
+ }
+ }
+
+ public static void main(String[] args)
+ {
+ new TurekOrcs();
+ }
+}
Index: dist/game/data/spawnlist/turek_orcs_fixed_pos.xml
===================================================================
--- dist/game/data/spawnlist/turek_orcs_fixed_pos.xml (revision 0)
+++ dist/game/data/spawnlist/turek_orcs_fixed_pos.xml (working copy)
@@ -0,0 +1,525 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/spawnlist.xsd">
+ <!-- gludio15_1621_01m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-95152</fleeX>
+ <fleeY>102304</fleeY>
+ <fleeZ>-3552</fleeZ>
+ </AIData>
+ <npc id="20498" x="-100536" y="103827" z="-3488" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-99937" y="103479" z="-3536" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" x="-98696" y="101233" z="-3536" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-99367" y="102854" z="-3520" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" x="-100719" y="103235" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-99756" y="100648" z="-3328" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ </spawn>
+ <!-- gludio15_1621_02m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-97392</fleeX>
+ <fleeY>106816</fleeY>
+ <fleeZ>-3392</fleeZ>
+ </AIData>
+ <npc id="20498" x="-100298" y="105322" z="-3008" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-99419" y="106918" z="-3568" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" x="-99040" y="104551" z="-3664" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-99386" y="105349" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" x="-100196" y="105397" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-98897" y="105850" z="-3600" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_01m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-95152</fleeX>
+ <fleeY>102304</fleeY>
+ <fleeZ>-3552</fleeZ>
+ </AIData>
+ <npc id="20494" x="-97269" y="102450" z="-3504" respawnDelay="60" respawnRandom="20" /> <!-- Turek War Hound -->
+ <npc id="20494" x="-96112" y="102114" z="-3536" respawnDelay="60" respawnRandom="20" /> <!-- Turek War Hound -->
+ <npc id="20500" x="-95967" y="102844" z="-3504" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-97677" y="102445" z="-3504" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" x="-97863" y="101342" z="-3432" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-95789" y="101347" z="-3392" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" x="-96821" y="103026" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-95279" y="102461" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ </spawn>
+ <!-- gludio15_1721_02m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-94176</fleeX>
+ <fleeY>100144</fleeY>
+ <fleeZ>-3520</fleeZ>
+ </AIData>
+ <npc id="20494" x="-95257" y="100677" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek War Hound -->
+ <npc id="20494" x="-93654" y="100417" z="-3536" respawnDelay="60" respawnRandom="20" /> <!-- Turek War Hound -->
+ <npc id="20494" x="-93013" y="99829" z="-3584" respawnDelay="60" respawnRandom="20" /> <!-- Turek War Hound -->
+ <npc id="20494" x="-94676" y="99354" z="-3536" respawnDelay="60" respawnRandom="20" /> <!-- Turek War Hound -->
+ <npc id="20500" x="-95207" y="99013" z="-3536" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-96287" y="99145" z="-3520" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-94787" y="101222" z="-3456" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-92927" y="101963" z="-3520" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-93243" y="99431" z="-3568" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-93814" y="99489" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-95413" y="100073" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" x="-95893" y="99883" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-96281" y="99579" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-93871" y="100831" z="-3520" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-92022" y="102507" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-94328" y="98792" z="-3536" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-94983" y="99016" z="-3536" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" x="-96390" y="100551" z="-3272" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-94742" y="101332" z="-3456" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-95739" y="100526" z="-3360" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ </spawn>
+ <!-- gludio15_1721_03m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-90416</fleeX>
+ <fleeY>100384</fleeY>
+ <fleeZ>-3552</fleeZ>
+ </AIData>
+ <npc id="20494" x="-89965" y="100807" z="-3504" respawnDelay="60" respawnRandom="20" /> <!-- Turek War Hound -->
+ <npc id="20494" x="-91220" y="100141" z="-3568" respawnDelay="60" respawnRandom="20" /> <!-- Turek War Hound -->
+ <npc id="20500" x="-91427" y="100794" z="-3584" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-91127" y="99839" z="-3568" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-90451" y="101684" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" x="-88054" y="101640" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-90800" y="103136" z="-3464" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-89444" y="101187" z="-3456" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" x="-90072" y="100840" z="-3512" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-88448" y="102169" z="-3376" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ </spawn>
+ <!-- gludio15_1721_04m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-88272</fleeX>
+ <fleeY>103152</fleeY>
+ <fleeZ>-3392</fleeZ>
+ </AIData>
+ <npc id="20494" x="-87009" y="102108" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek War Hound -->
+ <npc id="20494" x="-87616" y="102822" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek War Hound -->
+ <npc id="20500" x="-88111" y="104520" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-87410" y="103985" z="-3392" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" x="-88844" y="103961" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-88753" y="103495" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" x="-87643" y="102600" z="-3420" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ </spawn>
+ <!-- gludio15_1721_05m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-97392</fleeX>
+ <fleeY>106816</fleeY>
+ <fleeZ>-3392</fleeZ>
+ </AIData>
+ <npc id="20496" x="-97770" y="104922" z="-3504" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-96769" y="107218" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" x="-96948" y="108326" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-97081" y="105164" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" x="-96887" y="106239" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-97224" y="105466" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" x="-97111" y="108548" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-97848" y="104635" z="-3520" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-96395" y="105153" z="-3392" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-96493" y="108032" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20495" x="-98082" y="106349" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20495" x="-97716" y="107710" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ </spawn>
+ <!-- gludio15_1721_06m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-93392</fleeX>
+ <fleeY>106368</fleeY>
+ <fleeZ>-3696</fleeZ>
+ </AIData>
+ <npc id="20500" x="-91075" y="105088" z="-3360" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-94062" y="106893" z="-3680" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" x="-94122" y="105126" z="-3504" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-95167" y="107017" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" x="-95205" y="105433" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-94529" y="104940" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" x="-91537" y="105970" z="-3568" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-92027" y="105025" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" x="-95189" y="106112" z="-3480" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-94055" y="106297" z="-3696" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ </spawn>
+ <!-- gludio15_1721_07m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-93424</fleeX>
+ <fleeY>108016</fleeY>
+ <fleeZ>-3872</fleeZ>
+ </AIData>
+ <npc id="20499" x="-94625" y="108583" z="-3712" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-94312" y="108254" z="-3800" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-94132" y="109649" z="-3808" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" x="-95188" y="107669" z="-3536" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-93239" y="107207" z="-3824" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" x="-93477" y="108007" z="-3872" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-93141" y="108520" z="-3872" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-93046" y="107593" z="-3872" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" x="-93613" y="107258" z="-3800" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-92025" y="108015" z="-3832" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ </spawn>
+ <!-- gludio15_1721_08m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-97200</fleeX>
+ <fleeY>110528</fleeY>
+ <fleeZ>-3472</fleeZ>
+ </AIData>
+ <npc id="20499" x="-97157" y="110580" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-96461" y="111531" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" x="-97661" y="110347" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-97164" y="109025" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" x="-97983" y="109944" z="-3488" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-97709" y="111764" z="-3600" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" x="-98210" y="109307" z="-3504" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-96140" y="109400" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" x="-97536" y="109246" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_09m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-97056</fleeX>
+ <fleeY>114192</fleeY>
+ <fleeZ>-3552</fleeZ>
+ </AIData>
+ <npc id="20499" x="-97213" y="112891" z="-3616" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-97225" y="114096" z="-3560" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" x="-97454" y="112533" z="-3600" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-97514" y="115813" z="-3296" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" x="-95699" y="115448" z="-3312" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-95922" y="113302" z="-3664" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" x="-95922" y="113784" z="-3616" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-96632" y="113554" z="-3616" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" x="-98060" y="113422" z="-3616" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-96822" y="115134" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_10m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-93888</fleeX>
+ <fleeY>112432</fleeY>
+ <fleeZ>-3696</fleeZ>
+ </AIData>
+ <npc id="20500" x="-96013" y="111979" z="-3528" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-94698" y="111327" z="-3680" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-94416" y="112544" z="-3704" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" x="-93764" y="111891" z="-3696" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-93811" y="110409" z="-3720" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-93721" y="113668" z="-3568" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" x="-91242" y="112666" z="-3512" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-94288" y="112976" z="-3704" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-93363" y="113984" z="-3384" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" x="-95143" y="113585" z="-3584" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-93920" y="111920" z="-3696" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-94274" y="111662" z="-3696" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" x="-94092" y="114489" z="-3328" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-95146" y="113452" z="-3616" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-92473" y="112707" z="-3664" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" x="-94860" y="114443" z="-3360" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-93024" y="111968" z="-3696" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-92201" y="111779" z="-3712" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_11m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-91552</fleeX>
+ <fleeY>110112</fleeY>
+ <fleeZ>-3536</fleeZ>
+ </AIData>
+ <npc id="20500" x="-90072" y="109263" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-92812" y="109921" z="-3792" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-90380" y="111376" z="-3456" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" x="-89772" y="108802" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-88545" y="110548" z="-3128" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-91264" y="109680" z="-3544" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" x="-89924" y="109518" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-91033" y="111696" z="-3464" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-90076" y="109674" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" x="-89222" y="110700" z="-3304" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-92085" y="110347" z="-3544" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-90055" y="108141" z="-3504" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" x="-91196" y="108848" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-91740" y="110909" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-90546" y="109809" z="-3488" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ </spawn>
+ <!-- gludio15_1721_12m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-97232</fleeX>
+ <fleeY>117952</fleeY>
+ <fleeZ>-3424</fleeZ>
+ </AIData>
+ <npc id="20499" x="-97857" y="119587" z="-3520" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-96296" y="119456" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" x="-96563" y="117688" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-95498" y="120021" z="-3392" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" x="-96476" y="118137" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-97338" y="118176" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" x="-95584" y="120464" z="-3392" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-96469" y="120478" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ </spawn>
+ <!-- gludio15_1721_13m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-93840</fleeX>
+ <fleeY>117600</fleeY>
+ <fleeZ>-3600</fleeZ>
+ </AIData>
+ <npc id="20500" x="-93704" y="119946" z="-3384" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-91564" y="118238" z="-3360" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-95206" y="116349" z="-3392" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" x="-95185" y="118543" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-93757" y="115190" z="-3328" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-95329" y="117555" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" x="-92252" y="118689" z="-3456" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-93751" y="119041" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-94441" y="118070" z="-3616" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-93779" y="117592" z="-3616" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" x="-94052" y="118989" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-91517" y="119099" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-92984" y="117432" z="-3584" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-93384" y="117215" z="-3616" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" x="-91961" y="119768" z="-3488" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-93992" y="116529" z="-3520" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-93707" y="118461" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-92965" y="119392" z="-3488" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" x="-91327" y="118447" z="-3344" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-92809" y="116984" z="-3568" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-95694" y="116282" z="-3344" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_14m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-91008</fleeX>
+ <fleeY>114784</fleeY>
+ <fleeZ>-3549</fleeZ>
+ </AIData>
+ <npc id="20499" x="-91156" y="115058" z="-3544" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-89459" y="117154" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-89666" y="114525" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" x="-90848" y="114064" z="-3544" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-89415" y="115496" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-91999" y="115505" z="-3536" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" x="-90462" y="116269" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-90732" y="115570" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-90603" y="115193" z="-3544" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-92872" y="114579" z="-3376" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" x="-91964" y="116575" z="-3464" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-89654" y="116046" z="-3456" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-89128" y="114817" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-91922" y="116980" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" x="-91926" y="114447" z="-3536" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-88882" y="116132" z="-3336" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-90923" y="117340" z="-3376" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_15m1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-90560</fleeX>
+ <fleeY>111488</fleeY>
+ <fleeZ>-3456</fleeZ>
+ </AIData>
+ <npc id="20500" x="-88253" y="113220" z="-3360" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-87202" y="113890" z="-3200" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20500" x="-89792" y="112576" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" x="-87990" y="114524" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-88754" y="114201" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20499" x="-88544" y="113221" z="-3392" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" x="-88008" y="114376" z="-3392" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20496" x="-87357" y="114606" z="-3360" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" x="-89155" y="113472" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-89207" y="112413" z="-3392" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20498" x="-89999" y="113081" z="-3488" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" x="-89798" y="113346" z="-3504" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-87985" y="114037" z="-3344" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-87913" y="112371" z="-3136" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ </spawn>
+ <!-- gludio15_1721_21sm1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-95152</fleeX>
+ <fleeY>102304</fleeY>
+ <fleeZ>-3552</fleeZ>
+ </AIData>
+ <npc id="20501" x="-95360" y="102576" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-95189" y="102474" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-94898" y="102342" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20495" x="-95008" y="102130" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ </spawn>
+ <!-- gludio15_1721_23sm1 -->
+ <spawn>
+ <npc id="20497" x="-90210" y="100217" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-90592" y="100400" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" x="-90166" y="100428" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-90506" y="100088" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_24sm1 -->
+ <spawn>
+ <npc id="20497" x="-88605" y="103271" z="-3400" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20497" x="-88150" y="102989" z="-3400" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" x="-87989" y="103261" z="-3400" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-88643" y="102900" z="-3406" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_25sm1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-97392</fleeX>
+ <fleeY>106816</fleeY>
+ <fleeZ>-3392</fleeZ>
+ </AIData>
+ <npc id="20501" x="-97231" y="107056" z="-3400" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-97244" y="106700" z="-3392" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20495" x="-97482" y="106960" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" x="-97094" y="106709" z="-3400" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ <npc id="20546" x="-97438" y="106851" z="-3400" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_26sm1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-93392</fleeX>
+ <fleeY>106368</fleeY>
+ <fleeZ>-3696</fleeZ>
+ </AIData>
+ <npc id="20501" x="-93539" y="106471" z="-3696" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-93861" y="106238" z="-3696" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-93647" y="106056" z="-3696" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20495" x="-93314" y="106112" z="-3696" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" x="-93363" y="105853" z="-3688" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_27sm1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-93424</fleeX>
+ <fleeY>108016</fleeY>
+ <fleeZ>-3872</fleeZ>
+ </AIData>
+ <npc id="20501" x="-93384" y="107823" z="-3872" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-93236" y="108132" z="-3872" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-93373" y="108381" z="-3872" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20495" x="-93734" y="107893" z="-3872" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" x="-93423" y="107951" z="-3872" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_28sm1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-97200</fleeX>
+ <fleeY>110528</fleeY>
+ <fleeZ>-3472</fleeZ>
+ </AIData>
+ <npc id="20501" x="-97063" y="110513" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-97513" y="110544" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-97138" y="110637" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20495" x="-97245" y="110497" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" x="-97438" y="110838" z="-3472" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_29sm1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-91552</fleeX>
+ <fleeY>110112</fleeY>
+ <fleeZ>-3536</fleeZ>
+ </AIData>
+ <npc id="20501" x="-91648" y="110384" z="-3544" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-91236" y="109977" z="-3544" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-91415" y="110081" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" x="-91622" y="110110" z="-3544" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_30sm1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-90560</fleeX>
+ <fleeY>111488</fleeY>
+ <fleeZ>-3456</fleeZ>
+ </AIData>
+ <npc id="20501" x="-90300" y="111585" z="-3456" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-90640" y="111477" z="-3456" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-90749" y="111562" z="-3456" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ </spawn>
+ <!-- gludio15_1721_31sm1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-93888</fleeX>
+ <fleeY>112432</fleeY>
+ <fleeZ>-3696</fleeZ>
+ </AIData>
+ <npc id="20501" x="-94016" y="112898" z="-3696" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-93913" y="112252" z="-3696" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-93622" y="112518" z="-3696" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-94000" y="112800" z="-3696" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-94618" y="112558" z="-3712" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20495" x="-94448" y="112023" z="-3696" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" x="-94037" y="111725" z="-3672" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ <npc id="20546" x="-94447" y="112338" z="-3712" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_32sm1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-97056</fleeX>
+ <fleeY>114192</fleeY>
+ <fleeZ>-3552</fleeZ>
+ </AIData>
+ <npc id="20501" x="-97344" y="114257" z="-3560" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-96800" y="113968" z="-3560" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-97031" y="114476" z="-3560" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20495" x="-96672" y="114544" z="-3560" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" x="-96976" y="114304" z="-3560" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_33sm1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-97232</fleeX>
+ <fleeY>117952</fleeY>
+ <fleeZ>-3424</fleeZ>
+ </AIData>
+ <npc id="20501" x="-97362" y="117806" z="-3408" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-96950" y="117847" z="-3424" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20495" x="-97054" y="117997" z="-3432" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" x="-97411" y="118081" z="-3440" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_34sm1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-93840</fleeX>
+ <fleeY>117600</fleeY>
+ <fleeZ>-3600</fleeZ>
+ </AIData>
+ <npc id="20501" x="-93721" y="117617" z="-3616" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-93717" y="117511" z="-3616" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-93792" y="118128" z="-3584" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20495" x="-93945" y="117844" z="-3608" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" x="-93922" y="117601" z="-3616" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_35sm1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-92032</fleeX>
+ <fleeY>119280</fleeY>
+ <fleeZ>-3488</fleeZ>
+ </AIData>
+ <npc id="20501" x="-92083" y="119536" z="-3488" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-91809" y="119201" z="-3488" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-91821" y="119025" z="-3488" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" x="-92152" y="119595" z="-3488" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_36sm1 -->
+ <spawn>
+ <AIData>
+ <fleeX>-91008</fleeX>
+ <fleeY>114784</fleeY>
+ <fleeZ>-3549</fleeZ>
+ </AIData>
+ <npc id="20501" x="-91478" y="114072" z="-3544" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-90491" y="113830" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-90519" y="113766" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20501" x="-90803" y="114670" z="-3544" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" x="-90337" y="114755" z="-3536" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20495" x="-91590" y="116676" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20495" x="-90736" y="115808" z="-3544" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" x="-90999" y="115135" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ <npc id="20546" x="-91508" y="114853" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ <npc id="20546" x="-91584" y="115712" z="-3552" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+</list>
\ No newline at end of file
Index: dist/game/data/spawnlist/turek_orcs_zone_based.xml
===================================================================
--- dist/game/data/spawnlist/turek_orcs_zone_based.xml (revision 0)
+++ dist/game/data/spawnlist/turek_orcs_zone_based.xml (working copy)
@@ -0,0 +1,369 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<list enabled="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/spawnlist.xsd">
+ <!-- gludio15_1621_01m1 -->
+ <spawn zone="turek_orc_zone_01">
+ <AIData>
+ <fleeX>-95152</fleeX>
+ <fleeY>102304</fleeY>
+ <fleeZ>-3552</fleeZ>
+ </AIData>
+ <npc id="20498" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ </spawn>
+ <!-- gludio15_1621_02m1 -->
+ <spawn zone="turek_orc_zone_02">
+ <AIData>
+ <fleeX>-97392</fleeX>
+ <fleeY>106816</fleeY>
+ <fleeZ>-3392</fleeZ>
+ </AIData>
+ <npc id="20498" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_01m1 -->
+ <spawn zone="turek_orc_zone_03">
+ <AIData>
+ <fleeX>-95152</fleeX>
+ <fleeY>102304</fleeY>
+ <fleeZ>-3552</fleeZ>
+ </AIData>
+ <npc id="20494" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek War Hound -->
+ <npc id="20500" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ </spawn>
+ <!-- gludio15_1721_02m1 -->
+ <spawn zone="turek_orc_zone_04">
+ <AIData>
+ <fleeX>-94176</fleeX>
+ <fleeY>100144</fleeY>
+ <fleeZ>-3520</fleeZ>
+ </AIData>
+ <npc id="20494" count="4" respawnDelay="60" respawnRandom="20" /> <!-- Turek War Hound -->
+ <npc id="20500" count="7" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" count="6" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ </spawn>
+ <!-- gludio15_1721_03m1 -->
+ <spawn zone="turek_orc_zone_05">
+ <AIData>
+ <fleeX>-90416</fleeX>
+ <fleeY>100384</fleeY>
+ <fleeZ>-3552</fleeZ>
+ </AIData>
+ <npc id="20494" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek War Hound -->
+ <npc id="20500" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ </spawn>
+ <!-- gludio15_1721_04m1 -->
+ <spawn zone="turek_orc_zone_06">
+ <AIData>
+ <fleeX>-88272</fleeX>
+ <fleeY>103152</fleeY>
+ <fleeZ>-3392</fleeZ>
+ </AIData>
+ <npc id="20494" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek War Hound -->
+ <npc id="20500" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ </spawn>
+ <!-- gludio15_1721_05m1 -->
+ <spawn zone="turek_orc_zone_07">
+ <AIData>
+ <fleeX>-97392</fleeX>
+ <fleeY>106816</fleeY>
+ <fleeZ>-3392</fleeZ>
+ </AIData>
+ <npc id="20496" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ </spawn>
+ <!-- gludio15_1721_06m1 -->
+ <spawn zone="turek_orc_zone_08">
+ <AIData>
+ <fleeX>-93392</fleeX>
+ <fleeY>106368</fleeY>
+ <fleeZ>-3696</fleeZ>
+ </AIData>
+ <npc id="20500" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ </spawn>
+ <!-- gludio15_1721_07m1 -->
+ <spawn zone="turek_orc_zone_09">
+ <AIData>
+ <fleeX>-93424</fleeX>
+ <fleeY>108016</fleeY>
+ <fleeZ>-3872</fleeZ>
+ </AIData>
+ <npc id="20499" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ </spawn>
+ <!-- gludio15_1721_08m1 -->
+ <spawn zone="turek_orc_zone_10">
+ <AIData>
+ <fleeX>-97200</fleeX>
+ <fleeY>110528</fleeY>
+ <fleeZ>-3472</fleeZ>
+ </AIData>
+ <npc id="20499" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_09m1 -->
+ <spawn zone="turek_orc_zone_11">
+ <AIData>
+ <fleeX>-97056</fleeX>
+ <fleeY>114192</fleeY>
+ <fleeZ>-3552</fleeZ>
+ </AIData>
+ <npc id="20499" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_10m1 -->
+ <spawn zone="turek_orc_zone_12">
+ <AIData>
+ <fleeX>-93888</fleeX>
+ <fleeY>112432</fleeY>
+ <fleeZ>-3696</fleeZ>
+ </AIData>
+ <npc id="20500" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_11m1 -->
+ <spawn zone="turek_orc_zone_13">
+ <AIData>
+ <fleeX>-91552</fleeX>
+ <fleeY>110112</fleeY>
+ <fleeZ>-3536</fleeZ>
+ </AIData>
+ <npc id="20500" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ </spawn>
+ <!-- gludio15_1721_12m1 -->
+ <spawn zone="turek_orc_zone_14">
+ <AIData>
+ <fleeX>-97232</fleeX>
+ <fleeY>117952</fleeY>
+ <fleeZ>-3424</fleeZ>
+ </AIData>
+ <npc id="20499" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ </spawn>
+ <!-- gludio15_1721_13m1 -->
+ <spawn zone="turek_orc_zone_15">
+ <AIData>
+ <fleeX>-93840</fleeX>
+ <fleeY>117600</fleeY>
+ <fleeZ>-3600</fleeZ>
+ </AIData>
+ <npc id="20500" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" count="4" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" count="4" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" count="4" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_14m1 -->
+ <spawn zone="turek_orc_zone_16">
+ <AIData>
+ <fleeX>-91008</fleeX>
+ <fleeY>114784</fleeY>
+ <fleeZ>-3549</fleeZ>
+ </AIData>
+ <npc id="20499" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" count="4" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" count="4" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_15m1 -->
+ <spawn zone="turek_orc_zone_17">
+ <AIData>
+ <fleeX>-90560</fleeX>
+ <fleeY>111488</fleeY>
+ <fleeZ>-3456</fleeZ>
+ </AIData>
+ <npc id="20500" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Sentinel -->
+ <npc id="20499" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Footman -->
+ <npc id="20496" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Archer -->
+ <npc id="20498" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Supplier -->
+ <npc id="20497" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ </spawn>
+ <!-- gludio15_1721_21sm1 -->
+ <spawn zone="turek_orc_zone_18">
+ <AIData>
+ <fleeX>-95152</fleeX>
+ <fleeY>102304</fleeY>
+ <fleeZ>-3552</fleeZ>
+ </AIData>
+ <npc id="20501" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ </spawn>
+ <!-- gludio15_1721_23sm1 -->
+ <spawn zone="turek_orc_zone_19">
+ <npc id="20497" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_24sm1 -->
+ <spawn zone="turek_orc_zone_20">
+ <npc id="20497" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Skirmisher -->
+ <npc id="20501" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ </spawn>
+ <!-- gludio15_1721_25sm1 -->
+ <spawn zone="turek_orc_zone_21">
+ <AIData>
+ <fleeX>-97392</fleeX>
+ <fleeY>106816</fleeY>
+ <fleeZ>-3392</fleeZ>
+ </AIData>
+ <npc id="20501" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_26sm1 -->
+ <spawn zone="turek_orc_zone_22">
+ <AIData>
+ <fleeX>-93392</fleeX>
+ <fleeY>106368</fleeY>
+ <fleeZ>-3696</fleeZ>
+ </AIData>
+ <npc id="20501" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_27sm1 -->
+ <spawn zone="turek_orc_zone_23">
+ <AIData>
+ <fleeX>-93424</fleeX>
+ <fleeY>108016</fleeY>
+ <fleeZ>-3872</fleeZ>
+ </AIData>
+ <npc id="20501" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_28sm1 -->
+ <spawn zone="turek_orc_zone_24">
+ <AIData>
+ <fleeX>-97200</fleeX>
+ <fleeY>110528</fleeY>
+ <fleeZ>-3472</fleeZ>
+ </AIData>
+ <npc id="20501" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_29sm1 -->
+ <spawn zone="turek_orc_zone_25">
+ <AIData>
+ <fleeX>-91552</fleeX>
+ <fleeY>110112</fleeY>
+ <fleeZ>-3536</fleeZ>
+ </AIData>
+ <npc id="20501" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_30sm1 -->
+ <spawn zone="turek_orc_zone_26">
+ <AIData>
+ <fleeX>-90560</fleeX>
+ <fleeY>111488</fleeY>
+ <fleeZ>-3456</fleeZ>
+ </AIData>
+ <npc id="20501" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ </spawn>
+ <!-- gludio15_1721_31sm1 -->
+ <spawn zone="turek_orc_zone_27">
+ <AIData>
+ <fleeX>-93888</fleeX>
+ <fleeY>112432</fleeY>
+ <fleeZ>-3696</fleeZ>
+ </AIData>
+ <npc id="20501" count="4" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_32sm1 -->
+ <spawn zone="turek_orc_zone_28">
+ <AIData>
+ <fleeX>-97056</fleeX>
+ <fleeY>114192</fleeY>
+ <fleeZ>-3552</fleeZ>
+ </AIData>
+ <npc id="20501" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_33sm1 -->
+ <spawn zone="turek_orc_zone_29">
+ <AIData>
+ <fleeX>-97232</fleeX>
+ <fleeY>117952</fleeY>
+ <fleeZ>-3424</fleeZ>
+ </AIData>
+ <npc id="20501" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_34sm1 -->
+ <spawn zone="turek_orc_zone_30">
+ <AIData>
+ <fleeX>-93840</fleeX>
+ <fleeY>117600</fleeY>
+ <fleeZ>-3600</fleeZ>
+ </AIData>
+ <npc id="20501" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_35sm1 -->
+ <spawn zone="turek_orc_zone_31">
+ <AIData>
+ <fleeX>-92032</fleeX>
+ <fleeY>119280</fleeY>
+ <fleeZ>-3488</fleeZ>
+ </AIData>
+ <npc id="20501" count="2" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" count="1" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+ <!-- gludio15_1721_36sm1 -->
+ <spawn zone="turek_orc_zone_32">
+ <AIData>
+ <fleeX>-91008</fleeX>
+ <fleeY>114784</fleeY>
+ <fleeZ>-3549</fleeZ>
+ </AIData>
+ <npc id="20501" count="4" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Shaman -->
+ <npc id="20495" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Warlord -->
+ <npc id="20546" count="3" respawnDelay="60" respawnRandom="20" /> <!-- Turek Orc Elder -->
+ </spawn>
+
+</list>
\ No newline at end of file
Index: dist/game/data/xsd/spawnlist.xsd
===================================================================
--- dist/game/data/xsd/spawnlist.xsd (revision 10040)
+++ dist/game/data/xsd/spawnlist.xsd (working copy)
@@ -12,6 +12,9 @@
<xs:element type="xs:nonNegativeInteger" name="aggroRange" minOccurs="0" maxOccurs="1" />
<xs:element type="xs:boolean" name="disableRandomAnimation" minOccurs="0" maxOccurs="1" />
<xs:element type="xs:boolean" name="disableRandomWalk" minOccurs="0" maxOccurs="1" />
+ <xs:element type="xs:integer" name="fleeX" minOccurs="0" maxOccurs="1" />
+ <xs:element type="xs:integer" name="fleeY" minOccurs="0" maxOccurs="1" />
+ <xs:element type="xs:integer" name="fleeZ" minOccurs="0" maxOccurs="1" />
</xs:sequence>
</xs:complexType>
</xs:element>
Index: dist/game/data/zones/npcSpawnTerritories/turek_orcs.xml
===================================================================
--- dist/game/data/zones/npcSpawnTerritories/turek_orcs.xml (revision 0)
+++ dist/game/data/zones/npcSpawnTerritories/turek_orcs.xml (working copy)
@@ -0,0 +1,254 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<list enabled="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/zones.xsd">
+ <!-- gludio15_1621_01 -->
+ <zone name="turek_orc_zone_01" type="NpcSpawnTerritory" shape="NPoly" minZ="-3692" maxZ="-2992">
+ <node X="-99708" Y="100418" />
+ <node X="-98553" Y="100158" />
+ <node X="-98637" Y="104050" />
+ <node X="-101237" Y="103989" />
+ </zone>
+ <!-- gludio15_1621_02 -->
+ <zone name="turek_orc_zone_02" type="NpcSpawnTerritory" shape="NPoly" minZ="-3715" maxZ="-3015">
+ <node X="-100403" Y="104743" />
+ <node X="-98598" Y="104208" />
+ <node X="-98544" Y="109423" />
+ <node X="-100571" Y="106885" />
+ </zone>
+ <!-- gludio15_1721_01 -->
+ <zone name="turek_orc_zone_03" type="NpcSpawnTerritory" shape="NPoly" minZ="-3664" maxZ="-2864">
+ <node X="-98220" Y="100314" />
+ <node X="-93925" Y="102007" />
+ <node X="-95754" Y="103735" />
+ <node X="-98186" Y="102776" />
+ </zone>
+ <!-- gludio15_1721_02 -->
+ <zone name="turek_orc_zone_04" type="NpcSpawnTerritory" shape="NPoly" minZ="-3740" maxZ="-3040">
+ <node X="-96564" Y="98436" />
+ <node X="-92323" Y="99029" />
+ <node X="-91976" Y="103016" />
+ <node X="-97591" Y="99988" />
+ </zone>
+ <!-- gludio15_1721_03 -->
+ <zone name="turek_orc_zone_05" type="NpcSpawnTerritory" shape="NPoly" minZ="-3716" maxZ="-2916">
+ <node X="-92222" Y="99365" />
+ <node X="-87934" Y="99872" />
+ <node X="-87088" Y="101108" />
+ <node X="-90154" Y="103859" />
+ <node X="-91868" Y="103040" />
+ </zone>
+ <!-- gludio15_1721_04 -->
+ <zone name="turek_orc_zone_06" type="NpcSpawnTerritory" shape="NPoly" minZ="-3572" maxZ="-2972">
+ <node X="-87013" Y="101152" />
+ <node X="-86290" Y="102891" />
+ <node X="-86637" Y="104750" />
+ <node X="-88038" Y="105818" />
+ <node X="-89004" Y="105604" />
+ <node X="-90074" Y="103901" />
+ </zone>
+ <!-- gludio15_1721_05 -->
+ <zone name="turek_orc_zone_07" type="NpcSpawnTerritory" shape="NPoly" minZ="-3640" maxZ="-3140">
+ <node X="-95250" Y="105015" />
+ <node X="-95937" Y="109031" />
+ <node X="-98216" Y="108700" />
+ <node X="-98128" Y="104096" />
+ </zone>
+ <!-- gludio15_1721_06 -->
+ <!-- Нет гео -->
+ <zone name="turek_orc_zone_08" type="NpcSpawnTerritory" shape="NPoly" minZ="-3908" maxZ="-2708">
+ <node X="-92850" Y="104286" />
+ <node X="-90889" Y="104952" />
+ <node X="-91756" Y="106782" />
+ <node X="-95570" Y="107440" />
+ <node X="-95130" Y="104826" />
+ </zone>
+ <!-- gludio15_1721_07 -->
+ <zone name="turek_orc_zone_09" type="NpcSpawnTerritory" shape="NPoly" minZ="-3912" maxZ="-3112">
+ <node X="-95637" Y="109483" />
+ <node X="-95581" Y="107558" />
+ <node X="-91717" Y="106862" />
+ <node X="-91112" Y="107928" />
+ <node X="-93361" Y="109981" />
+ </zone>
+ <!-- gludio15_1721_08 -->
+ <zone name="turek_orc_zone_10" type="NpcSpawnTerritory" shape="NPoly" minZ="-3676" maxZ="-3076">
+ <node X="-98228" Y="108800" />
+ <node X="-95895" Y="109146" />
+ <node X="-95524" Y="110170" />
+ <node X="-96588" Y="112416" />
+ <node X="-98224" Y="112417" />
+ </zone>
+ <!-- gludio15_1721_09 -->
+ <zone name="turek_orc_zone_11" type="NpcSpawnTerritory" shape="NPoly" minZ="-3736" maxZ="-2936">
+ <node X="-98218" Y="112506" />
+ <node X="-96542" Y="112511" />
+ <node X="-95144" Y="114945" />
+ <node X="-97220" Y="116900" />
+ <node X="-98212" Y="116972" />
+ </zone>
+ <!-- gludio15_1721_10 -->
+ <zone name="turek_orc_zone_12" type="NpcSpawnTerritory" shape="NPoly" minZ="-3916" maxZ="-2716">
+ <node X="-95200" Y="110248" />
+ <node X="-93384" Y="110120" />
+ <node X="-91156" Y="112612" />
+ <node X="-93590" Y="114946" />
+ <node X="-95066" Y="114882" />
+ <node X="-96464" Y="112391" />
+ </zone>
+ <!-- gludio15_1721_11 -->
+ <zone name="turek_orc_zone_13" type="NpcSpawnTerritory" shape="NPoly" minZ="-3908" maxZ="-2708">
+ <node X="-90132" Y="107440" />
+ <node X="-87572" Y="110732" />
+ <node X="-91108" Y="112492" />
+ <node X="-93225" Y="110080" />
+ </zone>
+ <!-- gludio15_1721_12 -->
+ <zone name="turek_orc_zone_14" type="NpcSpawnTerritory" shape="NPoly" minZ="-3684" maxZ="-2884">
+ <node X="-98248" Y="117028" />
+ <node X="-96654" Y="117468" />
+ <node X="-94744" Y="120383" />
+ <node X="-96338" Y="120746" />
+ <node X="-98264" Y="119450" />
+ </zone>
+ <!-- gludio15_1721_13 -->
+ <zone name="turek_orc_zone_15" type="NpcSpawnTerritory" shape="NPoly" minZ="-3676" maxZ="-2776">
+ <node X="-93507" Y="115075" />
+ <node X="-90746" Y="118919" />
+ <node X="-92167" Y="120462" />
+ <node X="-94626" Y="120366" />
+ <node X="-96153" Y="117076" />
+ <node X="-95000" Y="115033" />
+ </zone>
+ <!-- gludio15_1721_14 -->
+ <zone name="turek_orc_zone_16" type="NpcSpawnTerritory" shape="NPoly" minZ="-3636" maxZ="-2836">
+ <node X="-93410" Y="115021" />
+ <node X="-91016" Y="112672" />
+ <node X="-88716" Y="115276" />
+ <node X="-88832" Y="118440" />
+ <node X="-90588" Y="118896" />
+ </zone>
+ <!-- gludio15_1721_15 -->
+ <zone name="turek_orc_zone_17" type="NpcSpawnTerritory" shape="NPoly" minZ="-3600" maxZ="-2800">
+ <node X="-90984" Y="112628" />
+ <node X="-87988" Y="111064" />
+ <node X="-86960" Y="114732" />
+ <node X="-88752" Y="115056" />
+ </zone>
+ <!-- gludio15_1721_21s -->
+ <zone name="turek_orc_zone_18" type="NpcSpawnTerritory" shape="NPoly" minZ="-3720" maxZ="-3120">
+ <node X="-95382" Y="101898" />
+ <node X="-94802" Y="101966" />
+ <node X="-94767" Y="102625" />
+ <node X="-95160" Y="102693" />
+ <node X="-95595" Y="102504" />
+ </zone>
+ <!-- gludio15_1721_23s -->
+ <zone name="turek_orc_zone_19" type="NpcSpawnTerritory" shape="NPoly" minZ="-3728" maxZ="-3228">
+ <node X="-90379" Y="99890" />
+ <node X="-90090" Y="100200" />
+ <node X="-90159" Y="100585" />
+ <node X="-90697" Y="100722" />
+ <node X="-90933" Y="100205" />
+ </zone>
+ <!-- gludio15_1721_24s -->
+ <zone name="turek_orc_zone_20" type="NpcSpawnTerritory" shape="NPoly" minZ="-3628" maxZ="-3128">
+ <node X="-88803" Y="102890" />
+ <node X="-88175" Y="102599" />
+ <node X="-87878" Y="102983" />
+ <node X="-87976" Y="103336" />
+ <node X="-88316" Y="103501" />
+ <node X="-88680" Y="103308" />
+ </zone>
+ <!-- gludio15_1721_25s -->
+ <zone name="turek_orc_zone_21" type="NpcSpawnTerritory" shape="NPoly" minZ="-3512" maxZ="-3012">
+ <node X="-97492" Y="106352" />
+ <node X="-97028" Y="106404" />
+ <node X="-96868" Y="106828" />
+ <node X="-97076" Y="107172" />
+ <node X="-97459" Y="107140" />
+ <node X="-97663" Y="106816" />
+ </zone>
+ <!-- gludio15_1721_26s -->
+ <zone name="turek_orc_zone_22" type="NpcSpawnTerritory" shape="NPoly" minZ="-3844" maxZ="-3544">
+ <node X="-94151" Y="106168" />
+ <node X="-93299" Y="105623" />
+ <node X="-92826" Y="106323" />
+ <node X="-93646" Y="106877" />
+ </zone>
+ <!-- gludio15_1721_27s -->
+ <zone name="turek_orc_zone_23" type="NpcSpawnTerritory" shape="NPoly" minZ="-4016" maxZ="-3716">
+ <node X="-93798" Y="107508" />
+ <node X="-93041" Y="107627" />
+ <node X="-93046" Y="108165" />
+ <node X="-93405" Y="108426" />
+ <node X="-93901" Y="108202" />
+ </zone>
+ <!-- gludio15_1721_28s -->
+ <zone name="turek_orc_zone_24" type="NpcSpawnTerritory" shape="NPoly" minZ="-3712" maxZ="-3312">
+ <node X="-97303" Y="110259" />
+ <node X="-96745" Y="110429" />
+ <node X="-96816" Y="110831" />
+ <node X="-97394" Y="111039" />
+ <node X="-97576" Y="110561" />
+ </zone>
+ <!-- gludio15_1721_29s -->
+ <zone name="turek_orc_zone_25" type="NpcSpawnTerritory" shape="NPoly" minZ="-3716" maxZ="-3216">
+ <node X="-91560" Y="109640" />
+ <node X="-91120" Y="109892" />
+ <node X="-91264" Y="110508" />
+ <node X="-91792" Y="110424" />
+ <node X="-91888" Y="109888" />
+ </zone>
+ <!-- gludio15_1721_30s -->
+ <zone name="turek_orc_zone_26" type="NpcSpawnTerritory" shape="NPoly" minZ="-3576" maxZ="-3176">
+ <node X="-90836" Y="111220" />
+ <node X="-90252" Y="111188" />
+ <node X="-90148" Y="111808" />
+ <node X="-90776" Y="111760" />
+ </zone>
+ <!-- gludio15_1721_31s -->
+ <zone name="turek_orc_zone_27" type="NpcSpawnTerritory" shape="NPoly" minZ="-3808" maxZ="-3408">
+ <node X="-93687" Y="111529" />
+ <node X="-93143" Y="111844" />
+ <node X="-93012" Y="112700" />
+ <node X="-93891" Y="113293" />
+ <node X="-94746" Y="112718" />
+ <node X="-94560" Y="111746" />
+ </zone>
+ <!-- gludio15_1721_32s -->
+ <zone name="turek_orc_zone_28" type="NpcSpawnTerritory" shape="NPoly" minZ="-3712" maxZ="-3212">
+ <node X="-97396" Y="114024" />
+ <node X="-96644" Y="113988" />
+ <node X="-96588" Y="114708" />
+ <node X="-97496" Y="114600" />
+ </zone>
+ <!-- gludio15_1721_33s -->
+ <zone name="turek_orc_zone_29" type="NpcSpawnTerritory" shape="NPoly" minZ="-3556" maxZ="-3056">
+ <node X="-97492" Y="117748" />
+ <node X="-96976" Y="117684" />
+ <node X="-96840" Y="118004" />
+ <node X="-97108" Y="118284" />
+ <node X="-97504" Y="118184" />
+ </zone>
+ <!-- gludio15_1721_34s -->
+ <zone name="turek_orc_zone_30" type="NpcSpawnTerritory" shape="NPoly" minZ="-3716" maxZ="-3216">
+ <node X="-94171" Y="117321" />
+ <node X="-93541" Y="117368" />
+ <node X="-93455" Y="117896" />
+ <node X="-94029" Y="118121" />
+ <node X="-94348" Y="117765" />
+ </zone>
+ <!-- gludio15_1721_35s -->
+ <zone name="turek_orc_zone_31" type="NpcSpawnTerritory" shape="NPoly" minZ="-3584" maxZ="-3084">
+ <node X="-92359" Y="119084" />
+ <node X="-91724" Y="118862" />
+ <node X="-91605" Y="119607" />
+ <node X="-92284" Y="119789" />
+ </zone>
+ <!-- gludio15_1721_36s -->
+ <zone name="turek_orc_zone_32" type="NpcSpawnTerritory" shape="NPoly" minZ="-3644" maxZ="-3144">
+ <node X="-91648" Y="113612" />
+ <node X="-90332" Y="113584" />
+ <node X="-90288" Y="116760" />
+ <node X="-91668" Y="116732" />
+ </zone>
+</list>
\ No newline at end of file
Index: dist/sql/game/spawnlist.sql
===================================================================
--- dist/sql/game/spawnlist.sql (revision 10040)
+++ dist/sql/game/spawnlist.sql (working copy)
@@ -2142,37 +2142,6 @@
("gludio23_tb1921_02", 1, 18268, -98863, 101352, -3533, 0, 0, 25892, 60, 0, 0, 0),
("gludio23_tb1921_02", 1, 18268, -98547, 101988, -3497, 0, 0, 21732, 60, 0, 0, 0),
("gludio23_tb1921_02", 1, 18268, -99680, 113875, -3384, 0, 0, 31516, 60, 0, 0, 0),
--- Turek Orc Warlord
-("gludio15_1621_01", 1, 20495, -99137, 100514, -3408, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -98383, 104707, -3625, 0, 0, 38116, 60, 0, 0, 0),
--- Turek Orc Archer
-("gludio15_1721_01", 1, 20496, -98715, 106473, -3507, 0, 0, 6964, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -98828, 108564, -3537, 0, 0, 37929, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -99111, 112513, -3593, 0, 0, 35106, 60, 0, 0, 0),
--- Turek Orc Skirmisher
-("gludio15_1621_01", 1, 20497, -99030, 101701, -3513, 0, 0, 50280, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -99843, 101438, -3462, 0, 0, 31791, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -100095, 104564, -3465, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -99390, 105024, -3569, 0, 0, 13904, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -98811, 111128, -3576, 0, 0, 25926, 60, 0, 0, 0),
--- Turek Orc Supplier
-("gludio15_1621_01", 1, 20498, -99137, 100158, -3384, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -98735, 100158, -3424, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -99491, 104208, -3465, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -99189, 104386, -3465, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -98466, 109470, -3529, 0, 0, 41172, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -98319, 113040, -3736, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -98508, 114305, -3566, 0, 0, 14529, 60, 0, 0, 0),
--- Turek Orc Footman
-("gludio15_1721_01", 1, 20499, -98321, 100492, -3368, 0, 0, 0, 60, 0, 0, 0),
--- Turek Orc Sentinel
-("gludio15_1721_01", 1, 20500, -98818, 102377, -3478, 0, 0, 17673, 60, 0, 0, 0),
--- Turek Orc Shaman
-("gludio15_1621_01", 1, 20501, -98512, 104052, -3586, 0, 0, 33630, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -99832, 105310, -3472, 0, 0, 29562, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -98823, 113218, -3736, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -98682, 111987, -3590, 0, 0, 45059, 60, 0, 0, 0),
-
-- [16_24]
-- Stone Golem
@@ -3011,15 +2980,6 @@
("Dark_Elf_Village", 1, 20418, -71582, 76281, -3144, 0, 0, 0, 20, 0, 0, 0),
("Dark_Elf_Village", 1, 20418, -73417, 84967, -3360, 0, 0, 58450, 20, 0, 0, 0),
("Dark_Elf_Village", 1, 20418, -73802, 83942, -3344, 0, 0, 26789, 20, 0, 0, 0),
--- Turek War Hound
-("gludio15_1721_01", 1, 20494, -95698, 97852, -3536, 0, 0, 61247, 60, 0, 0, 0),
--- Turek Orc Archer
-("gludio15_1721_01", 1, 20496, -94829, 97834, -3535, 0, 0, 6737, 60, 0, 0, 0),
--- Turek Orc Footman
-("gludio15_1721_01", 1, 20499, -95566, 97015, -3537, 0, 0, 48053, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -96196, 98055, -3536, 0, 0, 52973, 60, 0, 0, 0),
--- Turek Orc Sentinel
-("gludio15_1721_01", 1, 20500, -94678, 98243, -3530, 0, 0, 6823, 60, 0, 0, 0),
-- Dark Succubus
("Dark_Elf_Village", 1, 20776, -72150, 77733, -3152, 0, 0, 34846, 20, 0, 0, 0),
("Dark_Elf_Village", 1, 20776, -69822, 77339, -3272, 0, 0, 57077, 20, 0, 0, 0),
@@ -3433,269 +3393,6 @@
("gludio38_1921_04", 1, 20358, -68134, 102114, -3810, 0, 0, 45955, 30, 0, 0, 0),
("gludio38_1921_04", 1, 20358, -66404, 106414, -3948, 0, 0, 0, 30, 0, 0, 0),
("gludio38_1921_04", 1, 20358, -67108, 107304, -3948, 0, 0, 0, 30, 0, 0, 0),
--- Turek War Hound
-("gludio15_1721_01", 1, 20494, -96660, 100698, -3271, 0, 0, 63229, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20494, -98220, 101382, -3465, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20494, -95588, 100560, -3382, 0, 0, 8423, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20494, -93705, 98510, -3514, 0, 0, 65174, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20494, -95360, 98614, -3533, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20494, -92656, 99139, -3570, 0, 0, 58836, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20494, -92423, 100433, -3621, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20494, -91920, 99543, -3616, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20494, -88700, 100446, -3544, 0, 0, 46163, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20494, -87930, 101330, -3572, 0, 0, 0, 60, 0, 0, 0),
--- Turek Orc Warlord
-("gludio15_1621_01", 1, 20495, -97306, 105852, -3640, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -96449, 105156, -3384, 0, 0, 7364, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -94711, 102254, -3720, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -95214, 102076, -3720, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -93569, 99674, -3652, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -94173, 100386, -3652, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -93606, 99916, -3552, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -97474, 106530, -3512, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -97474, 106886, -3512, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -92851, 105924, -3694, 0, 0, 59072, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -92468, 106320, -3705, 0, 0, 60384, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -92692, 106842, -3770, 0, 0, 44953, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -92309, 107636, -3864, 0, 0, 455, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -97397, 110793, -3712, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -97195, 110437, -3712, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -91457, 109818, -3716, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -90625, 111366, -3576, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -94567, 112419, -3808, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -93632, 112230, -3701, 0, 0, 51581, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -96934, 114700, -3712, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -97135, 114344, -3712, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -97535, 117862, -3556, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -97333, 117862, -3556, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -93464, 117855, -3716, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -94067, 117855, -3716, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -92340, 119040, -3584, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -91093, 114830, -3644, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -90763, 114296, -3550, 0, 0, 13344, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20495, -91290, 115194, -3550, 0, 0, 27189, 60, 0, 0, 0),
--- Turek Orc Archer
-("gludio15_1721_01", 1, 20496, -97934, 101630, -3503, 0, 0, 30721, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -97717, 100136, -3664, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -95903, 100266, -3370, 0, 0, 17436, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -93471, 98909, -3540, 0, 0, 10852, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -93105, 100149, -3569, 0, 0, 49889, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -93140, 100758, -3591, 0, 0, 28144, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -89589, 101971, -3375, 0, 0, 27580, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -97981, 104096, -3540, 0, 0, 47014, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -95273, 105030, -3419, 0, 0, 32701, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -94168, 104820, -3458, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -94583, 107574, -3577, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -94784, 107218, -3577, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -96395, 109620, -3446, 0, 0, 59045, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -97747, 113379, -3614, 0, 0, 21543, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -95148, 112401, -3647, 0, 0, 23276, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -92875, 109520, -3809, 0, 0, 53733, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -94319, 110298, -3577, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -90025, 108330, -3498, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -91399, 107774, -3733, 0, 0, 34545, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -88469, 108720, -3222, 0, 0, 4450, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -96959, 117562, -3684, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -98195, 117807, -3360, 0, 0, 17359, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -92998, 115617, -3676, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -93318, 116768, -3599, 0, 0, 37577, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -93905, 115439, -3676, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -93094, 114606, -3331, 0, 0, 30302, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -92943, 112949, -3688, 0, 0, 38787, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -89625, 113590, -3499, 0, 0, 62652, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -90275, 112151, -3453, 0, 0, 44998, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -89588, 110672, -3370, 0, 0, 44657, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20496, -89530, 112932, -3455, 0, 0, 19853, 60, 0, 0, 0),
--- Turek Orc Skirmisher
-("gludio15_1621_01", 1, 20497, -96819, 105660, -3422, 0, 0, 44850, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -96300, 105140, -3640, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -93264, 104286, -3458, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -93967, 104464, -3458, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -94260, 105883, -3621, 0, 0, 54430, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -94885, 107396, -3577, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -97384, 108978, -3676, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -97445, 112796, -3603, 0, 0, 38979, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -98132, 112317, -3601, 0, 0, 8652, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -92869, 110653, -3789, 0, 0, 60673, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -96718, 112307, -3614, 0, 0, 25731, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -91915, 112137, -3630, 0, 0, 6448, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -89220, 107618, -3285, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -90992, 108049, -3647, 0, 0, 63367, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -89823, 108330, -3438, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -96748, 116976, -3333, 0, 0, 56700, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -97967, 117562, -3684, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -91824, 115567, -3550, 0, 0, 12482, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -94140, 116798, -3551, 0, 0, 46083, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -92690, 116714, -3539, 0, 0, 53475, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -92596, 115261, -3676, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -89511, 113807, -3495, 0, 0, 16166, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -91696, 111229, -3601, 0, 0, 38709, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -92220, 114182, -3503, 0, 0, 29168, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -90225, 114773, -3515, 0, 0, 253, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -89149, 111064, -3600, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -90491, 110678, -3434, 0, 0, 46569, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -89046, 112310, -3600, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -90473, 99890, -3728, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -90574, 100424, -3728, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -88503, 102599, -3628, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20497, -88100, 102955, -3400, 0, 0, 0, 60, 0, 0, 0),
--- Turek Orc Supplier
-("gludio15_1621_01", 1, 20498, -97105, 105140, -3640, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -96501, 104784, -3640, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -95068, 105515, -3436, 0, 0, 28989, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -94672, 104642, -3458, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -95288, 107040, -3577, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -95489, 107396, -3577, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -95591, 107930, -3577, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -98290, 110046, -3534, 0, 0, 59899, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -95892, 111382, -3487, 0, 0, 32292, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -93851, 110526, -3704, 0, 0, 38639, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -96107, 112095, -3545, 0, 0, 29197, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -90699, 107316, -3562, 0, 0, 39514, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -90004, 107842, -3483, 0, 0, 4075, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -90470, 109007, -3522, 0, 0, 28378, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -97782, 116157, -3293, 0, 0, 45567, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -97602, 117166, -3335, 0, 0, 9927, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -94897, 117416, -3471, 0, 0, 26057, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -92886, 117476, -3564, 0, 0, 46816, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -94408, 115617, -3676, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -93823, 115731, -3454, 0, 0, 29826, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -91613, 113206, -3636, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -88970, 114156, -3473, 0, 0, 2991, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -92436, 112315, -3684, 0, 0, 21659, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -90449, 113726, -3550, 0, 0, 48782, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -89853, 111954, -3600, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -88524, 112022, -3233, 0, 0, 62442, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20498, -89752, 111420, -3600, 0, 0, 0, 60, 0, 0, 0),
--- Turek Orc Footman
-("gludio15_1721_01", 1, 20499, -97160, 99780, -3386, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -95764, 98970, -3532, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -95461, 99148, -3527, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -96463, 98810, -3531, 0, 0, 35745, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -94454, 98792, -3537, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -91718, 100255, -3640, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -92424, 99721, -3619, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -91818, 100433, -3640, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -88735, 101686, -3572, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -89090, 101000, -3490, 0, 0, 28748, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -94067, 104998, -3458, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -94068, 104286, -3458, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -95187, 106862, -3536, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -94835, 105930, -3486, 0, 0, 39862, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -94001, 106531, -3695, 0, 0, 52340, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -98088, 108800, -3676, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -97484, 109512, -3676, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -97997, 111634, -3593, 0, 0, 56890, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -97412, 112150, -3736, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -95038, 110606, -3627, 0, 0, 30488, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -93414, 109573, -3821, 0, 0, 47440, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -94829, 111649, -3687, 0, 0, 26413, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -90684, 109370, -3525, 0, 0, 36945, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -90084, 109460, -3424, 0, 0, 64039, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -91305, 108322, -3668, 0, 0, 44507, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -96858, 116109, -3309, 0, 0, 2563, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -97801, 116786, -3314, 0, 0, 21566, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -95134, 118358, -3442, 0, 0, 47144, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -91702, 116152, -3552, 0, 0, 60158, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -96241, 115788, -3310, 0, 0, 56212, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -91256, 112060, -3492, 0, 0, 57845, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -90218, 112909, -3478, 0, 0, 57322, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -92297, 112888, -3639, 0, 0, 17358, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -88921, 111360, -3256, 0, 0, 14878, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -88546, 111496, -3152, 0, 0, 59061, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20499, -89349, 111776, -3600, 0, 0, 0, 60, 0, 0, 0),
--- Turek Orc Sentinel
-("gludio15_1721_01", 1, 20500, -97223, 101017, -3322, 0, 0, 6090, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -94353, 99326, -3533, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -95710, 99882, -3460, 0, 0, 2600, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -95159, 99326, -3523, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -96468, 99504, -3475, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -95058, 99860, -3494, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -95360, 99326, -3519, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -91618, 99365, -3560, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -91919, 100255, -3640, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -88131, 102042, -3572, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -88497, 100956, -3501, 0, 0, 39748, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -94470, 104286, -3458, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -94470, 104998, -3458, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -95024, 110120, -3577, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -93250, 110931, -3764, 0, 0, 52023, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -93037, 108905, -3871, 0, 0, 64481, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -90506, 108173, -3578, 0, 0, 47429, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -89692, 106897, -3309, 0, 0, 42172, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -90838, 108470, -3578, 0, 0, 19019, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -93703, 115083, -3676, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -93922, 114182, -3379, 0, 0, 45258, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -94911, 115439, -3676, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -89954, 111064, -3600, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -89130, 110683, -3277, 0, 0, 62473, 60, 0, 0, 0),
-("gludio15_1721_01", 1, 20500, -89677, 112286, -3386, 0, 0, 1401, 60, 0, 0, 0),
--- Turek Orc Shaman
-("gludio15_1621_01", 1, 20501, -97768, 101033, -3337, 0, 0, 42648, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -96607, 106002, -3390, 0, 0, 16464, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -97709, 104784, -3640, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -97709, 105496, -3640, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -96532, 108704, -3417, 0, 0, 48074, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -95001, 114035, -3498, 0, 0, 17377, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -95753, 111339, -3521, 0, 0, 34639, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -95368, 111858, -3626, 0, 0, 36230, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -94107, 116151, -3676, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -94811, 116329, -3676, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -92108, 116377, -3474, 0, 0, 17156, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -93594, 111885, -3701, 0, 0, 17731, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -92015, 113562, -3636, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -91412, 112850, -3636, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -95315, 101898, -3720, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -95416, 102432, -3720, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -94737, 100406, -3459, 0, 0, 26790, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -94072, 99852, -3652, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -90171, 100068, -3728, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -90675, 100602, -3728, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -88402, 103133, -3628, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -88302, 102599, -3628, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -97373, 106352, -3512, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -93671, 105623, -3844, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -93872, 105979, -3844, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -93017, 107666, -3873, 0, 0, 33282, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -93387, 108220, -4016, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -97180, 110641, -3477, 0, 0, 20630, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -95916, 110127, -3420, 0, 0, 1743, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -91558, 109640, -3716, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -91155, 109996, -3716, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -90726, 111188, -3576, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -90904, 111726, -3457, 0, 0, 33429, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -94266, 111529, -3808, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -94064, 112597, -3808, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -94064, 112241, -3808, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -93640, 112803, -3701, 0, 0, 31446, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -97336, 113988, -3712, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -97034, 114166, -3712, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -97434, 117684, -3556, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -94168, 117321, -3716, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -93565, 117677, -3716, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -92239, 118862, -3584, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -92038, 119218, -3584, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -91598, 113584, -3644, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -90974, 115666, -3550, 0, 0, 14208, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -91731, 114884, -3554, 0, 0, 58123, 60, 0, 0, 0),
-("gludio15_1621_01", 1, 20501, -90765, 115306, -3550, 0, 0, 11581, 60, 0, 0, 0),
--- Turek Orc Elder
-("gludio15_1721_22s", 1, 20546, -91760, 109996, -3716, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -93349, 112078, -3701, 0, 0, 41561, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -94266, 112953, -3808, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -96733, 113988, -3712, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -97031, 118040, -3556, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -93765, 118033, -3716, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -91836, 119574, -3584, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -90748, 114675, -3550, 0, 0, 15972, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -91598, 114296, -3644, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -91195, 114296, -3644, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -94095, 98958, -3546, 0, 0, 29155, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -97071, 106530, -3512, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -97172, 106352, -3512, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -93369, 106157, -3844, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -93489, 107686, -4016, 0, 0, 0, 60, 0, 0, 0),
-("gludio15_1721_22s", 1, 20546, -96993, 110793, -3712, 0, 0, 0, 60, 0, 0, 0),
-- Babbling Wind
("gludio20_1720_04", 1, 21024, -91208, 98553, -3476, 0, 0, 418, 26, 0, 0, 0),
("gludio20_1720_04", 1, 21024, -93953, 98926, -3541, 0, 0, 29315, 26, 0, 0, 0),
Index: dist/sql/game/updates/20131122update.sql
===================================================================
--- dist/sql/game/updates/20131122update.sql (revision 0)
+++ dist/sql/game/updates/20131122update.sql (working copy)
@@ -0,0 +1,2 @@
+DELETE FROM `spawnlist` WHERE npc_templateid BETWEEN 20494 AND 20501;
+DELETE FROM `spawnlist` WHERE npc_templateid = 20546;
\ No newline at end of file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment