Updated monster ids for Dragon Valley.
Contributed by CostyKiller.
This commit is contained in:
parent
2a54860862
commit
a5c731bc30
@ -1,62 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of the L2J Mobius project.
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
package ai.areas.DragonValley;
|
|
||||||
|
|
||||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
|
||||||
import org.l2jmobius.gameserver.model.actor.Player;
|
|
||||||
import org.l2jmobius.gameserver.taskmanager.GameTimeTaskManager;
|
|
||||||
|
|
||||||
import ai.AbstractNpcAI;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dragon Valley Area Mobs AI.
|
|
||||||
* @info When you kill certain monsters within the zone at a certain time, special monsters will appear. The type of the monster depends on the time of day. Daytime: Behemoth Dragon Nighttime: Soul Hunter
|
|
||||||
* @author CostyKiller
|
|
||||||
*/
|
|
||||||
public final class DragonValleyDayNightMonsters extends AbstractNpcAI
|
|
||||||
{
|
|
||||||
// Trigger Mobs
|
|
||||||
private static final int DRAGON_PELTAST = 24617; // Dragon Peltast
|
|
||||||
private static final int DRAGON_OFFICER = 24618; // Dragon Officer
|
|
||||||
// Special Mobs
|
|
||||||
private static final int BEHEMOTH_DRAGON = 24619; // Behemoth Dragon
|
|
||||||
private static final int SOUL_HUNTER = 24620; // Soul Hunter
|
|
||||||
|
|
||||||
// Misc
|
|
||||||
private static final int MOB_SPAWN_CHANCE = 1; // 1% chance to spawn
|
|
||||||
|
|
||||||
private DragonValleyDayNightMonsters()
|
|
||||||
{
|
|
||||||
super();
|
|
||||||
addKillId(DRAGON_PELTAST, DRAGON_OFFICER);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String onKill(Npc npc, Player killer, boolean isSummon)
|
|
||||||
{
|
|
||||||
if (getRandom(100) < MOB_SPAWN_CHANCE)
|
|
||||||
{
|
|
||||||
addSpawn(GameTimeTaskManager.getInstance().isNight() ? SOUL_HUNTER : BEHEMOTH_DRAGON, npc, true, 0, true);
|
|
||||||
}
|
|
||||||
return super.onKill(npc, killer, isSummon);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void main(String[] args)
|
|
||||||
{
|
|
||||||
new DragonValleyDayNightMonsters();
|
|
||||||
}
|
|
||||||
}
|
|
@ -176,13 +176,11 @@ public class AetherDrops extends AbstractNpcAI
|
|||||||
24418, // Breka Orc Shaman
|
24418, // Breka Orc Shaman
|
||||||
24419, // Breka Orc Slaughterer
|
24419, // Breka Orc Slaughterer
|
||||||
24420, // Breka Orc prefect
|
24420, // Breka Orc prefect
|
||||||
// Dragon Valley Lv.119
|
// Dragon Valley Lv.124
|
||||||
24480, // Dragon Legionary
|
24617, // Dragon Peltast
|
||||||
24481, // Dragon Peltast
|
24618, // Dragon Officer
|
||||||
24482, // Dragon Officer
|
24619, // Behemoth Dragon
|
||||||
24483, // Dragon Centurion
|
24620, // Soul Hunter
|
||||||
24484, // Dragon Elite Guard
|
|
||||||
24485, // Behemoth Dragon
|
|
||||||
// Swamp of Screams
|
// Swamp of Screams
|
||||||
24570, // Dire Stakato Drone
|
24570, // Dire Stakato Drone
|
||||||
24571, // Dire Stakato Berserker
|
24571, // Dire Stakato Berserker
|
||||||
|
@ -245,12 +245,10 @@ public class Q10811_ExaltedOneWhoFacesTheLimit extends Quest
|
|||||||
24321, // Temple Patrol Guard
|
24321, // Temple Patrol Guard
|
||||||
24322, // Temple Knight Recruit
|
24322, // Temple Knight Recruit
|
||||||
// Dragon Valley
|
// Dragon Valley
|
||||||
24480, // Dragon Legionnaire
|
24617, // Dragon Peltast
|
||||||
24482, // Dragon Officer
|
24618, // Dragon Officer
|
||||||
24481, // Dragon Peltast
|
24619, // Behemoth Dragon
|
||||||
24483, // Dragon Centurion
|
24620, // Soul Hunter
|
||||||
24484, // Dragon Elite Guard
|
|
||||||
24485, // Behemoth Dragon
|
|
||||||
// Valley of Saints
|
// Valley of Saints
|
||||||
24876, // Guide of Splendor
|
24876, // Guide of Splendor
|
||||||
24877, // Herald of Splendor
|
24877, // Herald of Splendor
|
||||||
|
@ -249,12 +249,10 @@ public class Q10817_ExaltedOneWhoOvercomesTheLimit extends Quest
|
|||||||
24321, // Temple Patrol Guard
|
24321, // Temple Patrol Guard
|
||||||
24322, // Temple Knight Recruit
|
24322, // Temple Knight Recruit
|
||||||
// Dragon Valley
|
// Dragon Valley
|
||||||
24480, // Dragon Legionnaire
|
24617, // Dragon Peltast
|
||||||
24482, // Dragon Officer
|
24618, // Dragon Officer
|
||||||
24481, // Dragon Peltast
|
24619, // Behemoth Dragon
|
||||||
24483, // Dragon Centurion
|
24620, // Soul Hunter
|
||||||
24484, // Dragon Elite Guard
|
|
||||||
24485, // Behemoth Dragon
|
|
||||||
// Valley of Saints
|
// Valley of Saints
|
||||||
24876, // Guide of Splendor
|
24876, // Guide of Splendor
|
||||||
24877, // Herald of Splendor
|
24877, // Herald of Splendor
|
||||||
|
@ -22,6 +22,9 @@ import java.util.Set;
|
|||||||
import org.l2jmobius.Config;
|
import org.l2jmobius.Config;
|
||||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
import org.l2jmobius.gameserver.model.actor.Npc;
|
||||||
import org.l2jmobius.gameserver.model.actor.Player;
|
import org.l2jmobius.gameserver.model.actor.Player;
|
||||||
|
import org.l2jmobius.gameserver.model.events.EventDispatcher;
|
||||||
|
import org.l2jmobius.gameserver.model.events.EventType;
|
||||||
|
import org.l2jmobius.gameserver.model.events.impl.creature.player.OnPlayerBecomeExalted;
|
||||||
import org.l2jmobius.gameserver.model.holders.NpcLogListHolder;
|
import org.l2jmobius.gameserver.model.holders.NpcLogListHolder;
|
||||||
import org.l2jmobius.gameserver.model.quest.Quest;
|
import org.l2jmobius.gameserver.model.quest.Quest;
|
||||||
import org.l2jmobius.gameserver.model.quest.QuestState;
|
import org.l2jmobius.gameserver.model.quest.QuestState;
|
||||||
@ -253,12 +256,10 @@ public class Q10823_ExaltedOneWhoShattersTheLimit extends Quest
|
|||||||
24321, // Temple Patrol Guard
|
24321, // Temple Patrol Guard
|
||||||
24322, // Temple Knight Recruit
|
24322, // Temple Knight Recruit
|
||||||
// Dragon Valley
|
// Dragon Valley
|
||||||
24480, // Dragon Legionnaire
|
24617, // Dragon Peltast
|
||||||
24482, // Dragon Officer
|
24618, // Dragon Officer
|
||||||
24481, // Dragon Peltast
|
24619, // Behemoth Dragon
|
||||||
24483, // Dragon Centurion
|
24620, // Soul Hunter
|
||||||
24484, // Dragon Elite Guard
|
|
||||||
24485, // Behemoth Dragon
|
|
||||||
// Valley of Saints
|
// Valley of Saints
|
||||||
24876, // Guide of Splendor
|
24876, // Guide of Splendor
|
||||||
24877, // Herald of Splendor
|
24877, // Herald of Splendor
|
||||||
@ -339,6 +340,11 @@ public class Q10823_ExaltedOneWhoShattersTheLimit extends Quest
|
|||||||
player.broadcastUserInfo();
|
player.broadcastUserInfo();
|
||||||
qs.exitQuest(false, true);
|
qs.exitQuest(false, true);
|
||||||
htmltext = event;
|
htmltext = event;
|
||||||
|
// Notify to scripts.
|
||||||
|
if (EventDispatcher.getInstance().hasListener(EventType.ON_PLAYER_BECOME_EXALTED))
|
||||||
|
{
|
||||||
|
EventDispatcher.getInstance().notifyEventAsync(new OnPlayerBecomeExalted(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -248,12 +248,10 @@ public class Q10873_ExaltedReachingAnotherLevel extends Quest
|
|||||||
24321, // Temple Patrol Guard
|
24321, // Temple Patrol Guard
|
||||||
24322, // Temple Knight Recruit
|
24322, // Temple Knight Recruit
|
||||||
// Dragon Valley
|
// Dragon Valley
|
||||||
24480, // Dragon Legionnaire
|
24617, // Dragon Peltast
|
||||||
24482, // Dragon Officer
|
24618, // Dragon Officer
|
||||||
24481, // Dragon Peltast
|
24619, // Behemoth Dragon
|
||||||
24483, // Dragon Centurion
|
24620, // Soul Hunter
|
||||||
24484, // Dragon Elite Guard
|
|
||||||
24485, // Behemoth Dragon
|
|
||||||
// Valley of Saints
|
// Valley of Saints
|
||||||
24876, // Guide of Splendor
|
24876, // Guide of Splendor
|
||||||
24877, // Herald of Splendor
|
24877, // Herald of Splendor
|
||||||
|
@ -248,12 +248,10 @@ public class Q10879_ExaltedGuideToPower extends Quest
|
|||||||
24321, // Temple Patrol Guard
|
24321, // Temple Patrol Guard
|
||||||
24322, // Temple Knight Recruit
|
24322, // Temple Knight Recruit
|
||||||
// Dragon Valley
|
// Dragon Valley
|
||||||
24480, // Dragon Legionnaire
|
24617, // Dragon Peltast
|
||||||
24482, // Dragon Officer
|
24618, // Dragon Officer
|
||||||
24481, // Dragon Peltast
|
24619, // Behemoth Dragon
|
||||||
24483, // Dragon Centurion
|
24620, // Soul Hunter
|
||||||
24484, // Dragon Elite Guard
|
|
||||||
24485, // Behemoth Dragon
|
|
||||||
// Valley of Saints
|
// Valley of Saints
|
||||||
24876, // Guide of Splendor
|
24876, // Guide of Splendor
|
||||||
24877, // Herald of Splendor
|
24877, // Herald of Splendor
|
||||||
|
@ -13,8 +13,8 @@
|
|||||||
<node x="75338" y="117643" />
|
<node x="75338" y="117643" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -22,8 +22,8 @@
|
|||||||
<node x="80364" y="113857" />
|
<node x="80364" y="113857" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -31,8 +31,8 @@
|
|||||||
<node x="83106" y="113201" />
|
<node x="83106" y="113201" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -40,8 +40,8 @@
|
|||||||
<node x="85462" y="112149" />
|
<node x="85462" y="112149" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -49,8 +49,8 @@
|
|||||||
<node x="85145" y="108599" />
|
<node x="85145" y="108599" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -58,8 +58,8 @@
|
|||||||
<node x="81847" y="109277" />
|
<node x="81847" y="109277" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -67,8 +67,8 @@
|
|||||||
<node x="87300" y="112173" />
|
<node x="87300" y="112173" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -76,8 +76,8 @@
|
|||||||
<node x="90348" y="112912" />
|
<node x="90348" y="112912" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -85,8 +85,8 @@
|
|||||||
<node x="92533" y="112225" />
|
<node x="92533" y="112225" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -94,8 +94,8 @@
|
|||||||
<node x="92265" y="115121" />
|
<node x="92265" y="115121" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -103,8 +103,8 @@
|
|||||||
<node x="101309" y="110855" />
|
<node x="101309" y="110855" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -112,8 +112,8 @@
|
|||||||
<node x="101800" y="113308" />
|
<node x="101800" y="113308" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -121,8 +121,8 @@
|
|||||||
<node x="101726" y="117006" />
|
<node x="101726" y="117006" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -130,8 +130,8 @@
|
|||||||
<node x="101395" y="119362" />
|
<node x="101395" y="119362" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -139,8 +139,8 @@
|
|||||||
<node x="101315" y="121684" />
|
<node x="101315" y="121684" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -148,8 +148,8 @@
|
|||||||
<node x="102448" y="123477" />
|
<node x="102448" y="123477" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -157,8 +157,8 @@
|
|||||||
<node x="104084" y="122181" />
|
<node x="104084" y="122181" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -166,8 +166,8 @@
|
|||||||
<node x="106583" y="120296" />
|
<node x="106583" y="120296" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -175,8 +175,8 @@
|
|||||||
<node x="109092" y="122039" />
|
<node x="109092" y="122039" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -184,8 +184,8 @@
|
|||||||
<node x="110098" y="125317" />
|
<node x="110098" y="125317" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -193,8 +193,8 @@
|
|||||||
<node x="112841" y="122120" />
|
<node x="112841" y="122120" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -202,8 +202,8 @@
|
|||||||
<node x="115035" y="120020" />
|
<node x="115035" y="120020" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -211,8 +211,8 @@
|
|||||||
<node x="117067" y="120169" />
|
<node x="117067" y="120169" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -220,8 +220,8 @@
|
|||||||
<node x="116486" y="117589" />
|
<node x="116486" y="117589" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -229,8 +229,8 @@
|
|||||||
<node x="119176" y="116379" />
|
<node x="119176" y="116379" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -238,8 +238,8 @@
|
|||||||
<node x="121846" y="116537" />
|
<node x="121846" y="116537" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -247,8 +247,8 @@
|
|||||||
<node x="123423" y="114655" />
|
<node x="123423" y="114655" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -256,8 +256,8 @@
|
|||||||
<node x="121637" y="113310" />
|
<node x="121637" y="113310" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -265,8 +265,8 @@
|
|||||||
<node x="120005" y="112918" />
|
<node x="120005" y="112918" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -274,8 +274,8 @@
|
|||||||
<node x="120276" y="115142" />
|
<node x="120276" y="115142" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -283,8 +283,8 @@
|
|||||||
<node x="117905" y="118465" />
|
<node x="117905" y="118465" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -292,8 +292,8 @@
|
|||||||
<node x="113966" y="122013" />
|
<node x="113966" y="122013" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -301,8 +301,8 @@
|
|||||||
<node x="117018" y="123277" />
|
<node x="117018" y="123277" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -310,8 +310,8 @@
|
|||||||
<node x="119645" y="122096" />
|
<node x="119645" y="122096" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -319,8 +319,8 @@
|
|||||||
<node x="120892" y="120324" />
|
<node x="120892" y="120324" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -328,8 +328,8 @@
|
|||||||
<node x="123047" y="119244" />
|
<node x="123047" y="119244" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -337,8 +337,8 @@
|
|||||||
<node x="120342" y="114695" />
|
<node x="120342" y="114695" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -346,8 +346,8 @@
|
|||||||
<node x="125170" y="111148" />
|
<node x="125170" y="111148" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -355,8 +355,8 @@
|
|||||||
<node x="124087" y="108847" />
|
<node x="124087" y="108847" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -364,8 +364,8 @@
|
|||||||
<node x="121571" y="108606" />
|
<node x="121571" y="108606" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -373,8 +373,8 @@
|
|||||||
<node x="119772" y="110131" />
|
<node x="119772" y="110131" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -382,8 +382,8 @@
|
|||||||
<node x="117547" y="110165" />
|
<node x="117547" y="110165" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -391,8 +391,8 @@
|
|||||||
<node x="115551" y="109946" />
|
<node x="115551" y="109946" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -400,8 +400,8 @@
|
|||||||
<node x="113857" y="109996" />
|
<node x="113857" y="109996" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -409,8 +409,8 @@
|
|||||||
<node x="114051" y="112214" />
|
<node x="114051" y="112214" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -418,8 +418,8 @@
|
|||||||
<node x="111852" y="112169" />
|
<node x="111852" y="112169" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -427,8 +427,8 @@
|
|||||||
<node x="108966" y="111434" />
|
<node x="108966" y="111434" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -436,8 +436,8 @@
|
|||||||
<node x="109410" y="113990" />
|
<node x="109410" y="113990" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -445,8 +445,8 @@
|
|||||||
<node x="108870" y="116679" />
|
<node x="108870" y="116679" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -454,8 +454,8 @@
|
|||||||
<node x="103179" y="119387" />
|
<node x="103179" y="119387" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -463,8 +463,8 @@
|
|||||||
<node x="105897" y="121656" />
|
<node x="105897" y="121656" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -472,8 +472,8 @@
|
|||||||
<node x="107651" y="122567" />
|
<node x="107651" y="122567" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -481,8 +481,8 @@
|
|||||||
<node x="110513" y="123302" />
|
<node x="110513" y="123302" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -490,8 +490,8 @@
|
|||||||
<node x="113885" y="120976" />
|
<node x="113885" y="120976" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -499,8 +499,8 @@
|
|||||||
<node x="117980" y="118134" />
|
<node x="117980" y="118134" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -508,8 +508,8 @@
|
|||||||
<node x="122612" y="111283" />
|
<node x="122612" y="111283" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -517,8 +517,8 @@
|
|||||||
<node x="115310" y="115118" />
|
<node x="115310" y="115118" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -526,8 +526,8 @@
|
|||||||
<node x="112988" y="115417" />
|
<node x="112988" y="115417" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -535,8 +535,8 @@
|
|||||||
<node x="113208" y="117668" />
|
<node x="113208" y="117668" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -544,8 +544,8 @@
|
|||||||
<node x="111530" y="117143" />
|
<node x="111530" y="117143" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -553,8 +553,8 @@
|
|||||||
<node x="108569" y="117407" />
|
<node x="108569" y="117407" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -562,8 +562,8 @@
|
|||||||
<node x="84437" y="116919" />
|
<node x="84437" y="116919" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -571,8 +571,8 @@
|
|||||||
<node x="84933" y="118692" />
|
<node x="84933" y="118692" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -580,8 +580,8 @@
|
|||||||
<node x="83870" y="120276" />
|
<node x="83870" y="120276" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -589,8 +589,8 @@
|
|||||||
<node x="86060" y="120795" />
|
<node x="86060" y="120795" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -598,8 +598,8 @@
|
|||||||
<node x="87788" y="119420" />
|
<node x="87788" y="119420" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -607,8 +607,8 @@
|
|||||||
<node x="89751" y="120302" />
|
<node x="89751" y="120302" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -616,8 +616,8 @@
|
|||||||
<node x="90904" y="118171" />
|
<node x="90904" y="118171" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -625,8 +625,8 @@
|
|||||||
<node x="93511" y="118665" />
|
<node x="93511" y="118665" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -634,8 +634,8 @@
|
|||||||
<node x="93492" y="113682" />
|
<node x="93492" y="113682" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -643,8 +643,8 @@
|
|||||||
<node x="77147" y="117216" />
|
<node x="77147" y="117216" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -652,8 +652,8 @@
|
|||||||
<node x="79375" y="116134" />
|
<node x="79375" y="116134" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -661,8 +661,8 @@
|
|||||||
<node x="80258" y="115168" />
|
<node x="80258" y="115168" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -670,8 +670,8 @@
|
|||||||
<node x="80257" y="114229" />
|
<node x="80257" y="114229" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -679,8 +679,8 @@
|
|||||||
<node x="77147" y="117216" />
|
<node x="77147" y="117216" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -688,8 +688,8 @@
|
|||||||
<node x="79375" y="116134" />
|
<node x="79375" y="116134" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -697,8 +697,8 @@
|
|||||||
<node x="81393" y="112245" />
|
<node x="81393" y="112245" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -706,8 +706,8 @@
|
|||||||
<node x="82046" y="110888" />
|
<node x="82046" y="110888" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -715,8 +715,8 @@
|
|||||||
<node x="83460" y="111412" />
|
<node x="83460" y="111412" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -724,8 +724,8 @@
|
|||||||
<node x="84330" y="110507" />
|
<node x="84330" y="110507" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -733,8 +733,8 @@
|
|||||||
<node x="86018" y="110113" />
|
<node x="86018" y="110113" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -742,8 +742,8 @@
|
|||||||
<node x="87544" y="111013" />
|
<node x="87544" y="111013" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -751,8 +751,8 @@
|
|||||||
<node x="88982" y="110877" />
|
<node x="88982" y="110877" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -760,7 +760,7 @@
|
|||||||
<node x="91809" y="109757" />
|
<node x="91809" y="109757" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
</list>
|
</list>
|
||||||
|
@ -176,13 +176,11 @@ public class AetherDrops extends AbstractNpcAI
|
|||||||
24418, // Breka Orc Shaman
|
24418, // Breka Orc Shaman
|
||||||
24419, // Breka Orc Slaughterer
|
24419, // Breka Orc Slaughterer
|
||||||
24420, // Breka Orc prefect
|
24420, // Breka Orc prefect
|
||||||
// Dragon Valley Lv.119
|
// Dragon Valley Lv.124
|
||||||
24480, // Dragon Legionary
|
24617, // Dragon Peltast
|
||||||
24481, // Dragon Peltast
|
24618, // Dragon Officer
|
||||||
24482, // Dragon Officer
|
24619, // Behemoth Dragon
|
||||||
24483, // Dragon Centurion
|
24620, // Soul Hunter
|
||||||
24484, // Dragon Elite Guard
|
|
||||||
24485, // Behemoth Dragon
|
|
||||||
// Swamp of Screams
|
// Swamp of Screams
|
||||||
24570, // Dire Stakato Drone
|
24570, // Dire Stakato Drone
|
||||||
24571, // Dire Stakato Berserker
|
24571, // Dire Stakato Berserker
|
||||||
|
@ -245,12 +245,10 @@ public class Q10811_ExaltedOneWhoFacesTheLimit extends Quest
|
|||||||
24321, // Temple Patrol Guard
|
24321, // Temple Patrol Guard
|
||||||
24322, // Temple Knight Recruit
|
24322, // Temple Knight Recruit
|
||||||
// Dragon Valley
|
// Dragon Valley
|
||||||
24480, // Dragon Legionnaire
|
24617, // Dragon Peltast
|
||||||
24482, // Dragon Officer
|
24618, // Dragon Officer
|
||||||
24481, // Dragon Peltast
|
24619, // Behemoth Dragon
|
||||||
24483, // Dragon Centurion
|
24620, // Soul Hunter
|
||||||
24484, // Dragon Elite Guard
|
|
||||||
24485, // Behemoth Dragon
|
|
||||||
// Valley of Saints
|
// Valley of Saints
|
||||||
24876, // Guide of Splendor
|
24876, // Guide of Splendor
|
||||||
24877, // Herald of Splendor
|
24877, // Herald of Splendor
|
||||||
|
@ -249,12 +249,10 @@ public class Q10817_ExaltedOneWhoOvercomesTheLimit extends Quest
|
|||||||
24321, // Temple Patrol Guard
|
24321, // Temple Patrol Guard
|
||||||
24322, // Temple Knight Recruit
|
24322, // Temple Knight Recruit
|
||||||
// Dragon Valley
|
// Dragon Valley
|
||||||
24480, // Dragon Legionnaire
|
24617, // Dragon Peltast
|
||||||
24482, // Dragon Officer
|
24618, // Dragon Officer
|
||||||
24481, // Dragon Peltast
|
24619, // Behemoth Dragon
|
||||||
24483, // Dragon Centurion
|
24620, // Soul Hunter
|
||||||
24484, // Dragon Elite Guard
|
|
||||||
24485, // Behemoth Dragon
|
|
||||||
// Valley of Saints
|
// Valley of Saints
|
||||||
24876, // Guide of Splendor
|
24876, // Guide of Splendor
|
||||||
24877, // Herald of Splendor
|
24877, // Herald of Splendor
|
||||||
|
@ -22,6 +22,9 @@ import java.util.Set;
|
|||||||
import org.l2jmobius.Config;
|
import org.l2jmobius.Config;
|
||||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
import org.l2jmobius.gameserver.model.actor.Npc;
|
||||||
import org.l2jmobius.gameserver.model.actor.Player;
|
import org.l2jmobius.gameserver.model.actor.Player;
|
||||||
|
import org.l2jmobius.gameserver.model.events.EventDispatcher;
|
||||||
|
import org.l2jmobius.gameserver.model.events.EventType;
|
||||||
|
import org.l2jmobius.gameserver.model.events.impl.creature.player.OnPlayerBecomeExalted;
|
||||||
import org.l2jmobius.gameserver.model.holders.NpcLogListHolder;
|
import org.l2jmobius.gameserver.model.holders.NpcLogListHolder;
|
||||||
import org.l2jmobius.gameserver.model.quest.Quest;
|
import org.l2jmobius.gameserver.model.quest.Quest;
|
||||||
import org.l2jmobius.gameserver.model.quest.QuestState;
|
import org.l2jmobius.gameserver.model.quest.QuestState;
|
||||||
@ -253,12 +256,10 @@ public class Q10823_ExaltedOneWhoShattersTheLimit extends Quest
|
|||||||
24321, // Temple Patrol Guard
|
24321, // Temple Patrol Guard
|
||||||
24322, // Temple Knight Recruit
|
24322, // Temple Knight Recruit
|
||||||
// Dragon Valley
|
// Dragon Valley
|
||||||
24480, // Dragon Legionnaire
|
24617, // Dragon Peltast
|
||||||
24482, // Dragon Officer
|
24618, // Dragon Officer
|
||||||
24481, // Dragon Peltast
|
24619, // Behemoth Dragon
|
||||||
24483, // Dragon Centurion
|
24620, // Soul Hunter
|
||||||
24484, // Dragon Elite Guard
|
|
||||||
24485, // Behemoth Dragon
|
|
||||||
// Valley of Saints
|
// Valley of Saints
|
||||||
24876, // Guide of Splendor
|
24876, // Guide of Splendor
|
||||||
24877, // Herald of Splendor
|
24877, // Herald of Splendor
|
||||||
@ -339,6 +340,11 @@ public class Q10823_ExaltedOneWhoShattersTheLimit extends Quest
|
|||||||
player.broadcastUserInfo();
|
player.broadcastUserInfo();
|
||||||
qs.exitQuest(false, true);
|
qs.exitQuest(false, true);
|
||||||
htmltext = event;
|
htmltext = event;
|
||||||
|
// Notify to scripts.
|
||||||
|
if (EventDispatcher.getInstance().hasListener(EventType.ON_PLAYER_BECOME_EXALTED))
|
||||||
|
{
|
||||||
|
EventDispatcher.getInstance().notifyEventAsync(new OnPlayerBecomeExalted(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -248,12 +248,10 @@ public class Q10873_ExaltedReachingAnotherLevel extends Quest
|
|||||||
24321, // Temple Patrol Guard
|
24321, // Temple Patrol Guard
|
||||||
24322, // Temple Knight Recruit
|
24322, // Temple Knight Recruit
|
||||||
// Dragon Valley
|
// Dragon Valley
|
||||||
24480, // Dragon Legionnaire
|
24617, // Dragon Peltast
|
||||||
24482, // Dragon Officer
|
24618, // Dragon Officer
|
||||||
24481, // Dragon Peltast
|
24619, // Behemoth Dragon
|
||||||
24483, // Dragon Centurion
|
24620, // Soul Hunter
|
||||||
24484, // Dragon Elite Guard
|
|
||||||
24485, // Behemoth Dragon
|
|
||||||
// Valley of Saints
|
// Valley of Saints
|
||||||
24876, // Guide of Splendor
|
24876, // Guide of Splendor
|
||||||
24877, // Herald of Splendor
|
24877, // Herald of Splendor
|
||||||
|
@ -248,12 +248,10 @@ public class Q10879_ExaltedGuideToPower extends Quest
|
|||||||
24321, // Temple Patrol Guard
|
24321, // Temple Patrol Guard
|
||||||
24322, // Temple Knight Recruit
|
24322, // Temple Knight Recruit
|
||||||
// Dragon Valley
|
// Dragon Valley
|
||||||
24480, // Dragon Legionnaire
|
24617, // Dragon Peltast
|
||||||
24482, // Dragon Officer
|
24618, // Dragon Officer
|
||||||
24481, // Dragon Peltast
|
24619, // Behemoth Dragon
|
||||||
24483, // Dragon Centurion
|
24620, // Soul Hunter
|
||||||
24484, // Dragon Elite Guard
|
|
||||||
24485, // Behemoth Dragon
|
|
||||||
// Valley of Saints
|
// Valley of Saints
|
||||||
24876, // Guide of Splendor
|
24876, // Guide of Splendor
|
||||||
24877, // Herald of Splendor
|
24877, // Herald of Splendor
|
||||||
|
@ -13,8 +13,8 @@
|
|||||||
<node x="75338" y="117643" />
|
<node x="75338" y="117643" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -22,8 +22,8 @@
|
|||||||
<node x="80364" y="113857" />
|
<node x="80364" y="113857" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -31,8 +31,8 @@
|
|||||||
<node x="83106" y="113201" />
|
<node x="83106" y="113201" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -40,8 +40,8 @@
|
|||||||
<node x="85462" y="112149" />
|
<node x="85462" y="112149" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -49,8 +49,8 @@
|
|||||||
<node x="85145" y="108599" />
|
<node x="85145" y="108599" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -58,8 +58,8 @@
|
|||||||
<node x="81847" y="109277" />
|
<node x="81847" y="109277" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -67,8 +67,8 @@
|
|||||||
<node x="87300" y="112173" />
|
<node x="87300" y="112173" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -76,8 +76,8 @@
|
|||||||
<node x="90348" y="112912" />
|
<node x="90348" y="112912" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -85,8 +85,8 @@
|
|||||||
<node x="92533" y="112225" />
|
<node x="92533" y="112225" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -94,8 +94,8 @@
|
|||||||
<node x="92265" y="115121" />
|
<node x="92265" y="115121" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -103,8 +103,8 @@
|
|||||||
<node x="101309" y="110855" />
|
<node x="101309" y="110855" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -112,8 +112,8 @@
|
|||||||
<node x="101800" y="113308" />
|
<node x="101800" y="113308" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -121,8 +121,8 @@
|
|||||||
<node x="101726" y="117006" />
|
<node x="101726" y="117006" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -130,8 +130,8 @@
|
|||||||
<node x="101395" y="119362" />
|
<node x="101395" y="119362" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -139,8 +139,8 @@
|
|||||||
<node x="101315" y="121684" />
|
<node x="101315" y="121684" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -148,8 +148,8 @@
|
|||||||
<node x="102448" y="123477" />
|
<node x="102448" y="123477" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -157,8 +157,8 @@
|
|||||||
<node x="104084" y="122181" />
|
<node x="104084" y="122181" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -166,8 +166,8 @@
|
|||||||
<node x="106583" y="120296" />
|
<node x="106583" y="120296" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -175,8 +175,8 @@
|
|||||||
<node x="109092" y="122039" />
|
<node x="109092" y="122039" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -184,8 +184,8 @@
|
|||||||
<node x="110098" y="125317" />
|
<node x="110098" y="125317" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -193,8 +193,8 @@
|
|||||||
<node x="112841" y="122120" />
|
<node x="112841" y="122120" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -202,8 +202,8 @@
|
|||||||
<node x="115035" y="120020" />
|
<node x="115035" y="120020" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -211,8 +211,8 @@
|
|||||||
<node x="117067" y="120169" />
|
<node x="117067" y="120169" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -220,8 +220,8 @@
|
|||||||
<node x="116486" y="117589" />
|
<node x="116486" y="117589" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -229,8 +229,8 @@
|
|||||||
<node x="119176" y="116379" />
|
<node x="119176" y="116379" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -238,8 +238,8 @@
|
|||||||
<node x="121846" y="116537" />
|
<node x="121846" y="116537" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -247,8 +247,8 @@
|
|||||||
<node x="123423" y="114655" />
|
<node x="123423" y="114655" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -256,8 +256,8 @@
|
|||||||
<node x="121637" y="113310" />
|
<node x="121637" y="113310" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -265,8 +265,8 @@
|
|||||||
<node x="120005" y="112918" />
|
<node x="120005" y="112918" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -274,8 +274,8 @@
|
|||||||
<node x="120276" y="115142" />
|
<node x="120276" y="115142" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -283,8 +283,8 @@
|
|||||||
<node x="117905" y="118465" />
|
<node x="117905" y="118465" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -292,8 +292,8 @@
|
|||||||
<node x="113966" y="122013" />
|
<node x="113966" y="122013" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -301,8 +301,8 @@
|
|||||||
<node x="117018" y="123277" />
|
<node x="117018" y="123277" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -310,8 +310,8 @@
|
|||||||
<node x="119645" y="122096" />
|
<node x="119645" y="122096" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -319,8 +319,8 @@
|
|||||||
<node x="120892" y="120324" />
|
<node x="120892" y="120324" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -328,8 +328,8 @@
|
|||||||
<node x="123047" y="119244" />
|
<node x="123047" y="119244" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -337,8 +337,8 @@
|
|||||||
<node x="120342" y="114695" />
|
<node x="120342" y="114695" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -346,8 +346,8 @@
|
|||||||
<node x="125170" y="111148" />
|
<node x="125170" y="111148" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -355,8 +355,8 @@
|
|||||||
<node x="124087" y="108847" />
|
<node x="124087" y="108847" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -364,8 +364,8 @@
|
|||||||
<node x="121571" y="108606" />
|
<node x="121571" y="108606" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -373,8 +373,8 @@
|
|||||||
<node x="119772" y="110131" />
|
<node x="119772" y="110131" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -382,8 +382,8 @@
|
|||||||
<node x="117547" y="110165" />
|
<node x="117547" y="110165" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -391,8 +391,8 @@
|
|||||||
<node x="115551" y="109946" />
|
<node x="115551" y="109946" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -400,8 +400,8 @@
|
|||||||
<node x="113857" y="109996" />
|
<node x="113857" y="109996" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -409,8 +409,8 @@
|
|||||||
<node x="114051" y="112214" />
|
<node x="114051" y="112214" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -418,8 +418,8 @@
|
|||||||
<node x="111852" y="112169" />
|
<node x="111852" y="112169" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -427,8 +427,8 @@
|
|||||||
<node x="108966" y="111434" />
|
<node x="108966" y="111434" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -436,8 +436,8 @@
|
|||||||
<node x="109410" y="113990" />
|
<node x="109410" y="113990" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -445,8 +445,8 @@
|
|||||||
<node x="108870" y="116679" />
|
<node x="108870" y="116679" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -454,8 +454,8 @@
|
|||||||
<node x="103179" y="119387" />
|
<node x="103179" y="119387" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -463,8 +463,8 @@
|
|||||||
<node x="105897" y="121656" />
|
<node x="105897" y="121656" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -472,8 +472,8 @@
|
|||||||
<node x="107651" y="122567" />
|
<node x="107651" y="122567" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -481,8 +481,8 @@
|
|||||||
<node x="110513" y="123302" />
|
<node x="110513" y="123302" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -490,8 +490,8 @@
|
|||||||
<node x="113885" y="120976" />
|
<node x="113885" y="120976" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -499,8 +499,8 @@
|
|||||||
<node x="117980" y="118134" />
|
<node x="117980" y="118134" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -508,8 +508,8 @@
|
|||||||
<node x="122612" y="111283" />
|
<node x="122612" y="111283" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -517,8 +517,8 @@
|
|||||||
<node x="115310" y="115118" />
|
<node x="115310" y="115118" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -526,8 +526,8 @@
|
|||||||
<node x="112988" y="115417" />
|
<node x="112988" y="115417" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -535,8 +535,8 @@
|
|||||||
<node x="113208" y="117668" />
|
<node x="113208" y="117668" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -544,8 +544,8 @@
|
|||||||
<node x="111530" y="117143" />
|
<node x="111530" y="117143" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -553,8 +553,8 @@
|
|||||||
<node x="108569" y="117407" />
|
<node x="108569" y="117407" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -562,8 +562,8 @@
|
|||||||
<node x="84437" y="116919" />
|
<node x="84437" y="116919" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -571,8 +571,8 @@
|
|||||||
<node x="84933" y="118692" />
|
<node x="84933" y="118692" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -580,8 +580,8 @@
|
|||||||
<node x="83870" y="120276" />
|
<node x="83870" y="120276" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -589,8 +589,8 @@
|
|||||||
<node x="86060" y="120795" />
|
<node x="86060" y="120795" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -598,8 +598,8 @@
|
|||||||
<node x="87788" y="119420" />
|
<node x="87788" y="119420" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -607,8 +607,8 @@
|
|||||||
<node x="89751" y="120302" />
|
<node x="89751" y="120302" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -616,8 +616,8 @@
|
|||||||
<node x="90904" y="118171" />
|
<node x="90904" y="118171" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -625,8 +625,8 @@
|
|||||||
<node x="93511" y="118665" />
|
<node x="93511" y="118665" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -634,8 +634,8 @@
|
|||||||
<node x="93492" y="113682" />
|
<node x="93492" y="113682" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -643,8 +643,8 @@
|
|||||||
<node x="77147" y="117216" />
|
<node x="77147" y="117216" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -652,8 +652,8 @@
|
|||||||
<node x="79375" y="116134" />
|
<node x="79375" y="116134" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -661,8 +661,8 @@
|
|||||||
<node x="80258" y="115168" />
|
<node x="80258" y="115168" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -670,8 +670,8 @@
|
|||||||
<node x="80257" y="114229" />
|
<node x="80257" y="114229" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -679,8 +679,8 @@
|
|||||||
<node x="77147" y="117216" />
|
<node x="77147" y="117216" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -688,8 +688,8 @@
|
|||||||
<node x="79375" y="116134" />
|
<node x="79375" y="116134" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -697,8 +697,8 @@
|
|||||||
<node x="81393" y="112245" />
|
<node x="81393" y="112245" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -706,8 +706,8 @@
|
|||||||
<node x="82046" y="110888" />
|
<node x="82046" y="110888" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -715,8 +715,8 @@
|
|||||||
<node x="83460" y="111412" />
|
<node x="83460" y="111412" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -724,8 +724,8 @@
|
|||||||
<node x="84330" y="110507" />
|
<node x="84330" y="110507" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -733,8 +733,8 @@
|
|||||||
<node x="86018" y="110113" />
|
<node x="86018" y="110113" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -742,8 +742,8 @@
|
|||||||
<node x="87544" y="111013" />
|
<node x="87544" y="111013" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -751,8 +751,8 @@
|
|||||||
<node x="88982" y="110877" />
|
<node x="88982" y="110877" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
<spawn>
|
<spawn>
|
||||||
<territories>
|
<territories>
|
||||||
@ -760,7 +760,7 @@
|
|||||||
<node x="91809" y="109757" />
|
<node x="91809" y="109757" />
|
||||||
</territory>
|
</territory>
|
||||||
</territories>
|
</territories>
|
||||||
<npc id="24481" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
<npc id="24617" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Peltast -->
|
||||||
<npc id="24482" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
<npc id="24618" count="4" respawnTime="30sec" respawnRandom="0sec" /> <!-- Dragon Officer -->
|
||||||
</spawn>
|
</spawn>
|
||||||
</list>
|
</list>
|
||||||
|
Loading…
Reference in New Issue
Block a user