Updated raidboss spawns.

Contributed by nasseka.
This commit is contained in:
MobiusDevelopment 2022-08-17 22:52:39 +00:00
parent 7dc5d48235
commit 90ab10275e
16 changed files with 300 additions and 1548 deletions

View File

@ -1,33 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<instance id="200" maxWorlds="80" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
<time duration="120" empty="0" />
<removeBuffs type="ALL" />
<locations>
<enter type="FIXED">
<location x="-6704" y="19121" z="-5193" />
</enter>
<exit type="ORIGIN" />
</locations>
<conditions>
<condition type="Party" />
<condition type="CommandChannel" />
<condition type="CommandChannelLeader" />
<condition type="GroupMin">
<param name="limit" value="90" />
</condition>
<condition type="Level">
<param name="min" value="76" />
</condition>
<condition type="Distance" />
<condition type="Reenter" />
</conditions>
<!-- <reenter apply="ON_ENTER">
<reset day="TUESDAY" hour="9" minute="00" />
<reset day="FRIDAY" hour="9" minute="00" />
</reenter> -->
<spawnlist>
<group>
<npc id="25286" x="-6664" y="18505" z="-5493" heading="48103" /> <!-- Anakim -->
</group>
</spawnlist>
</instance>

View File

@ -1,33 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<instance id="199" maxWorlds="80" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
<time duration="120" empty="10" />
<removeBuffs type="ALL" />
<locations>
<enter type="FIXED">
<location x="185657" y="-10112" z="-5496" />
</enter>
<exit type="ORIGIN" />
</locations>
<conditions>
<condition type="Party" />
<condition type="CommandChannel" />
<condition type="CommandChannelLeader" />
<condition type="GroupMin">
<param name="limit" value="90" />
</condition>
<condition type="Level">
<param name="min" value="76" />
</condition>
<condition type="Distance" />
<condition type="Reenter" />
</conditions>
<!-- <reenter apply="ON_ENTER">
<reset day="TUESDAY" hour="9" minute="00" />
<reset day="FRIDAY" hour="9" minute="00" />
</reenter> -->
<spawnlist>
<group>
<npc id="25283" x="185067" y="-9616" z="-5493" heading="48103" /> <!-- Lilith -->
</group>
</spawnlist>
</instance>

View File

@ -1,252 +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 instances.SevenSignsRBs;
import java.util.List;
import org.l2jmobius.gameserver.instancemanager.ZoneManager;
import org.l2jmobius.gameserver.model.Location;
import org.l2jmobius.gameserver.model.Party;
import org.l2jmobius.gameserver.model.actor.Creature;
import org.l2jmobius.gameserver.model.actor.Npc;
import org.l2jmobius.gameserver.model.actor.Player;
import org.l2jmobius.gameserver.model.instancezone.Instance;
import org.l2jmobius.gameserver.model.zone.type.NoRestartZone;
import instances.AbstractInstance;
/**
* @author RobikBobik
* @NOTE: Retail like work
* @TODO: When one RB die, the second will be invul for 5 minutes.
*/
public class SevenSignsRBs extends AbstractInstance
{
// NPCs
private static final int ANAKIM_GATEKEEPER_SPIRIT = 31089;
private static final int LILITH_GATEKEEPER_SPIRIT = 31087;
private static final int GATEKEEPER_SPIRIT_OUT_TELEPORT = 31088;
private static final int ANAKIM = 25286;
private static final int LILITH = 25283;
// Misc
private static final int ANAKIM_TEMPLATE_ID = 200;
private static final int LILITH_TEMPLATE_ID = 199;
private static final int MAX_PLAYERS_IN_ZONE = 300;
private static final NoRestartZone ANAKIM_ZONE = ZoneManager.getInstance().getZoneById(70052, NoRestartZone.class);
private static final NoRestartZone LILITH_ZONE = ZoneManager.getInstance().getZoneById(70053, NoRestartZone.class);
// TELEPORTS
private static final Location[] TELEPORT_TO_DARK_ELVEN =
{
new Location(12168, 17149, -4575),
new Location(11688, 18219, -4585),
new Location(10502, 17112, -4588),
new Location(11169, 15922, -4585),
};
// TODO: When teleport from instance done. Enable it
/*
* private static final Location[] TELEPORT_TO_ADEN = { new Location(148053, 26935, -2206), new Location(148053, 28017, -2269), new Location(146558, 28017, -2269), new Location(146558, 26935, -2206), };
*/
public SevenSignsRBs()
{
super(ANAKIM_TEMPLATE_ID, LILITH_TEMPLATE_ID);
addStartNpc(ANAKIM_GATEKEEPER_SPIRIT, LILITH_GATEKEEPER_SPIRIT);
addTalkId(ANAKIM_GATEKEEPER_SPIRIT, LILITH_GATEKEEPER_SPIRIT, GATEKEEPER_SPIRIT_OUT_TELEPORT);
addKillId(ANAKIM, LILITH);
addAttackId(ANAKIM, LILITH);
addInstanceLeaveId(ANAKIM_TEMPLATE_ID, LILITH_TEMPLATE_ID);
}
@Override
public String onAdvEvent(String event, Npc npc, Player player)
{
switch (event)
{
case "ANAKIM_ENTER":
{
if (player.isInParty())
{
final Party party = player.getParty();
final boolean isInCC = party.isInCommandChannel();
final List<Player> members = (isInCC) ? party.getCommandChannel().getMembers() : party.getMembers();
if (members.size() > (MAX_PLAYERS_IN_ZONE - ANAKIM_ZONE.getPlayersInside().size()))
{
player.sendMessage("Lilith Sanctum reached 300 players. You cannot enter now.");
}
else
{
for (Player member : members)
{
if (!member.isInsideRadius3D(npc, 1000))
{
player.sendMessage("Player " + member.getName() + " must go closer to Gatekeeper Spirit.");
}
enterInstance(member, npc, ANAKIM_TEMPLATE_ID);
}
}
}
else if (player.isGM())
{
enterInstance(player, npc, ANAKIM_TEMPLATE_ID);
player.sendMessage("SYS: You have entered as GM/Admin to Anakim Instance");
}
else
{
if (!player.isInsideRadius3D(npc, 1000))
{
player.sendMessage("You must go closer to Gatekeeper Spirit.");
}
enterInstance(player, npc, ANAKIM_TEMPLATE_ID);
}
break;
}
case "LILITH_ENTER":
{
if (player.isInParty())
{
final Party party = player.getParty();
final boolean isInCC = party.isInCommandChannel();
final List<Player> members = (isInCC) ? party.getCommandChannel().getMembers() : party.getMembers();
if (members.size() > (MAX_PLAYERS_IN_ZONE - LILITH_ZONE.getPlayersInside().size()))
{
player.sendMessage("Lilith Sanctum reached 300 players. You cannot enter now.");
}
else
{
for (Player member : members)
{
if (!member.isInsideRadius3D(npc, 1000))
{
player.sendMessage("Player " + member.getName() + " must go closer to Gatekeeper Spirit.");
}
enterInstance(member, npc, LILITH_TEMPLATE_ID);
}
}
}
else if (player.isGM())
{
enterInstance(player, npc, LILITH_TEMPLATE_ID);
player.sendMessage("SYS: You have entered as GM/Admin to Anakim Instance");
}
else
{
if (!player.isInsideRadius3D(npc, 1000))
{
player.sendMessage("You must go closer to Gatekeeper Spirit.");
}
enterInstance(player, npc, LILITH_TEMPLATE_ID);
}
break;
}
case "REMOVE_PLAYERS_FROM_ZONE_ANAKIM":
{
for (Creature charInside : ANAKIM_ZONE.getCharactersInside())
{
if ((charInside != null) && charInside.isPlayer())
{
charInside.teleToLocation(-20185 + getRandom(50), 13476 + getRandom(50), -4901);
}
}
break;
}
case "REMOVE_PLAYERS_FROM_ZONE_LILITH":
{
for (Creature charInside : LILITH_ZONE.getCharactersInside())
{
if ((charInside != null) && charInside.isPlayer())
{
charInside.teleToLocation(171346 + getRandom(50), -17599 + getRandom(50), -4901);
}
}
break;
}
case "TELEPORT_OUT":
{
// TODO: Different teleport location from instance.
// switch (player.getInstanceId())
// {
// case ANAKIM_TEMPLATE_ID:
// {
// final Location destination = TELEPORT_TO_DARK_ELVEN[getRandom(TELEPORT_TO_DARK_ELVEN.length)];
// player.teleToLocation(destination.getX() + getRandom(100), destination.getY() + getRandom(100), destination.getZ());
// break;
// }
// case LILITH_TEMPLATE_ID:
// {
// final Location destination = TELEPORT_TO_ADEN[getRandom(TELEPORT_TO_ADEN.length)];
// player.teleToLocation(destination.getX() + getRandom(100), destination.getY() + getRandom(100), destination.getZ());
// break;
// }
// }
final Location destination = TELEPORT_TO_DARK_ELVEN[getRandom(TELEPORT_TO_DARK_ELVEN.length)];
player.teleToLocation(destination.getX() + getRandom(100), destination.getY() + getRandom(100), destination.getZ());
break;
}
case "ANAKIM_DEATH_CAST_LILITH_INVUL":
{
// TODO: When one RB die, the second will be invul for 5 minutes.
break;
}
case "LILITH_DEATH_CAST_ANAKIM_INVUL":
{
// TODO: When one RB die, the second will be invul for 5 minutes.
break;
}
}
return null;
}
@Override
public String onKill(Npc npc, Player player, boolean isSummon)
{
switch (npc.getId())
{
case ANAKIM:
{
// TODO:
// startQuestTimer("ANAKIM_DEATH_CAST_LILITH_INVUL", 1000, null, null);
startQuestTimer("REMOVE_PLAYERS_FROM_ZONE_ANAKIM", 600000, null, player);
addSpawn(GATEKEEPER_SPIRIT_OUT_TELEPORT, -6664, 18501, -5495, 0, false, 600000, false, npc.getInstanceId());
break;
}
case LILITH:
{
// TODO:
// startQuestTimer("LILITH_DEATH_CAST_ANAKIM_INVUL", 1000, null, null);
startQuestTimer("REMOVE_PLAYERS_FROM_ZONE_LILITH", 600000, null, player);
addSpawn(GATEKEEPER_SPIRIT_OUT_TELEPORT, 185062, -9612, -5493, 0, false, 600000, false, npc.getInstanceId());
break;
}
}
final Instance world = npc.getInstanceWorld();
if (world != null)
{
world.finishInstance();
}
return super.onKill(npc, player, isSummon);
}
public static void main(String[] args)
{
new SevenSignsRBs();
}
}

View File

@ -1,5 +1,4 @@
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/spawns.xsd">
<!-- Author: Manax, Kulrat -->
<spawn name="17_21">
<group>
<npc id="25909" x="-88881" y="105145" z="-3342" heading="53988" dbSave="true" dbName="Carcs" respawnTime="24hour" respawnRandom="12hour" /> <!-- Carcs - Elite -->
@ -156,8 +155,6 @@
<npc id="25431" x="144117" y="-24105" z="-2080" heading="16674" dbSave="true" dbName="Flamestone Golem" respawnTime="24hour" respawnRandom="12hour" /> <!-- Flamestone Golem - Elite -->
</group>
</spawn>
<spawn name="24_17">
<group>
<npc id="25749" x="133116" y="6719" z="-4349" heading="8473" dbSave="true" dbName="Tayga Feron King" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tayga Feron King - Elite -->
@ -165,4 +162,10 @@
<npc id="25751" x="135224" y="11894" z="-4150" heading="46378" dbSave="true" dbName="Tayga Septon Champion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tayga Septon Champion - Elite -->
</group>
</spawn>
<spawn name="GrandBosses">
<group name="Epic">
<npc id="25283" x="185059" y="-9610" z="-5488" heading="15640" dbSave="true" dbName="Lilith" respawnPattern="0 19 * * 1 | 0 19 * * 4" />
<npc id="25286" x="-6675" y="18505" z="-5488" heading="16550" dbSave="true" dbName="Anakim" respawnPattern="0 19 * * 2 | 0 19 * * 5" />
</group>
</spawn>
</list>

View File

@ -1,33 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<instance id="200" maxWorlds="80" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
<time duration="120" empty="0" />
<removeBuffs type="ALL" />
<locations>
<enter type="FIXED">
<location x="-6704" y="19121" z="-5193" />
</enter>
<exit type="ORIGIN" />
</locations>
<conditions>
<condition type="Party" />
<condition type="CommandChannel" />
<condition type="CommandChannelLeader" />
<condition type="GroupMin">
<param name="limit" value="90" />
</condition>
<condition type="Level">
<param name="min" value="76" />
</condition>
<condition type="Distance" />
<condition type="Reenter" />
</conditions>
<!-- <reenter apply="ON_ENTER">
<reset day="TUESDAY" hour="9" minute="00" />
<reset day="FRIDAY" hour="9" minute="00" />
</reenter> -->
<spawnlist>
<group>
<npc id="25286" x="-6664" y="18505" z="-5493" heading="48103" /> <!-- Anakim -->
</group>
</spawnlist>
</instance>

View File

@ -1,33 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<instance id="199" maxWorlds="80" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
<time duration="120" empty="10" />
<removeBuffs type="ALL" />
<locations>
<enter type="FIXED">
<location x="185657" y="-10112" z="-5496" />
</enter>
<exit type="ORIGIN" />
</locations>
<conditions>
<condition type="Party" />
<condition type="CommandChannel" />
<condition type="CommandChannelLeader" />
<condition type="GroupMin">
<param name="limit" value="90" />
</condition>
<condition type="Level">
<param name="min" value="76" />
</condition>
<condition type="Distance" />
<condition type="Reenter" />
</conditions>
<!-- <reenter apply="ON_ENTER">
<reset day="TUESDAY" hour="9" minute="00" />
<reset day="FRIDAY" hour="9" minute="00" />
</reenter> -->
<spawnlist>
<group>
<npc id="25283" x="185067" y="-9616" z="-5493" heading="48103" /> <!-- Lilith -->
</group>
</spawnlist>
</instance>

View File

@ -1,252 +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 instances.SevenSignsRBs;
import java.util.List;
import org.l2jmobius.gameserver.instancemanager.ZoneManager;
import org.l2jmobius.gameserver.model.Location;
import org.l2jmobius.gameserver.model.Party;
import org.l2jmobius.gameserver.model.actor.Creature;
import org.l2jmobius.gameserver.model.actor.Npc;
import org.l2jmobius.gameserver.model.actor.Player;
import org.l2jmobius.gameserver.model.instancezone.Instance;
import org.l2jmobius.gameserver.model.zone.type.NoRestartZone;
import instances.AbstractInstance;
/**
* @author RobikBobik
* @NOTE: Retail like work
* @TODO: When one RB die, the second will be invul for 5 minutes.
*/
public class SevenSignsRBs extends AbstractInstance
{
// NPCs
private static final int ANAKIM_GATEKEEPER_SPIRIT = 31089;
private static final int LILITH_GATEKEEPER_SPIRIT = 31087;
private static final int GATEKEEPER_SPIRIT_OUT_TELEPORT = 31088;
private static final int ANAKIM = 25286;
private static final int LILITH = 25283;
// Misc
private static final int ANAKIM_TEMPLATE_ID = 200;
private static final int LILITH_TEMPLATE_ID = 199;
private static final int MAX_PLAYERS_IN_ZONE = 300;
private static final NoRestartZone ANAKIM_ZONE = ZoneManager.getInstance().getZoneById(70052, NoRestartZone.class);
private static final NoRestartZone LILITH_ZONE = ZoneManager.getInstance().getZoneById(70053, NoRestartZone.class);
// TELEPORTS
private static final Location[] TELEPORT_TO_DARK_ELVEN =
{
new Location(12168, 17149, -4575),
new Location(11688, 18219, -4585),
new Location(10502, 17112, -4588),
new Location(11169, 15922, -4585),
};
// TODO: When teleport from instance done. Enable it
/*
* private static final Location[] TELEPORT_TO_ADEN = { new Location(148053, 26935, -2206), new Location(148053, 28017, -2269), new Location(146558, 28017, -2269), new Location(146558, 26935, -2206), };
*/
public SevenSignsRBs()
{
super(ANAKIM_TEMPLATE_ID, LILITH_TEMPLATE_ID);
addStartNpc(ANAKIM_GATEKEEPER_SPIRIT, LILITH_GATEKEEPER_SPIRIT);
addTalkId(ANAKIM_GATEKEEPER_SPIRIT, LILITH_GATEKEEPER_SPIRIT, GATEKEEPER_SPIRIT_OUT_TELEPORT);
addKillId(ANAKIM, LILITH);
addAttackId(ANAKIM, LILITH);
addInstanceLeaveId(ANAKIM_TEMPLATE_ID, LILITH_TEMPLATE_ID);
}
@Override
public String onAdvEvent(String event, Npc npc, Player player)
{
switch (event)
{
case "ANAKIM_ENTER":
{
if (player.isInParty())
{
final Party party = player.getParty();
final boolean isInCC = party.isInCommandChannel();
final List<Player> members = (isInCC) ? party.getCommandChannel().getMembers() : party.getMembers();
if (members.size() > (MAX_PLAYERS_IN_ZONE - ANAKIM_ZONE.getPlayersInside().size()))
{
player.sendMessage("Lilith Sanctum reached 300 players. You cannot enter now.");
}
else
{
for (Player member : members)
{
if (!member.isInsideRadius3D(npc, 1000))
{
player.sendMessage("Player " + member.getName() + " must go closer to Gatekeeper Spirit.");
}
enterInstance(member, npc, ANAKIM_TEMPLATE_ID);
}
}
}
else if (player.isGM())
{
enterInstance(player, npc, ANAKIM_TEMPLATE_ID);
player.sendMessage("SYS: You have entered as GM/Admin to Anakim Instance");
}
else
{
if (!player.isInsideRadius3D(npc, 1000))
{
player.sendMessage("You must go closer to Gatekeeper Spirit.");
}
enterInstance(player, npc, ANAKIM_TEMPLATE_ID);
}
break;
}
case "LILITH_ENTER":
{
if (player.isInParty())
{
final Party party = player.getParty();
final boolean isInCC = party.isInCommandChannel();
final List<Player> members = (isInCC) ? party.getCommandChannel().getMembers() : party.getMembers();
if (members.size() > (MAX_PLAYERS_IN_ZONE - LILITH_ZONE.getPlayersInside().size()))
{
player.sendMessage("Lilith Sanctum reached 300 players. You cannot enter now.");
}
else
{
for (Player member : members)
{
if (!member.isInsideRadius3D(npc, 1000))
{
player.sendMessage("Player " + member.getName() + " must go closer to Gatekeeper Spirit.");
}
enterInstance(member, npc, LILITH_TEMPLATE_ID);
}
}
}
else if (player.isGM())
{
enterInstance(player, npc, LILITH_TEMPLATE_ID);
player.sendMessage("SYS: You have entered as GM/Admin to Anakim Instance");
}
else
{
if (!player.isInsideRadius3D(npc, 1000))
{
player.sendMessage("You must go closer to Gatekeeper Spirit.");
}
enterInstance(player, npc, LILITH_TEMPLATE_ID);
}
break;
}
case "REMOVE_PLAYERS_FROM_ZONE_ANAKIM":
{
for (Creature charInside : ANAKIM_ZONE.getCharactersInside())
{
if ((charInside != null) && charInside.isPlayer())
{
charInside.teleToLocation(-20185 + getRandom(50), 13476 + getRandom(50), -4901);
}
}
break;
}
case "REMOVE_PLAYERS_FROM_ZONE_LILITH":
{
for (Creature charInside : LILITH_ZONE.getCharactersInside())
{
if ((charInside != null) && charInside.isPlayer())
{
charInside.teleToLocation(171346 + getRandom(50), -17599 + getRandom(50), -4901);
}
}
break;
}
case "TELEPORT_OUT":
{
// TODO: Different teleport location from instance.
// switch (player.getInstanceId())
// {
// case ANAKIM_TEMPLATE_ID:
// {
// final Location destination = TELEPORT_TO_DARK_ELVEN[getRandom(TELEPORT_TO_DARK_ELVEN.length)];
// player.teleToLocation(destination.getX() + getRandom(100), destination.getY() + getRandom(100), destination.getZ());
// break;
// }
// case LILITH_TEMPLATE_ID:
// {
// final Location destination = TELEPORT_TO_ADEN[getRandom(TELEPORT_TO_ADEN.length)];
// player.teleToLocation(destination.getX() + getRandom(100), destination.getY() + getRandom(100), destination.getZ());
// break;
// }
// }
final Location destination = TELEPORT_TO_DARK_ELVEN[getRandom(TELEPORT_TO_DARK_ELVEN.length)];
player.teleToLocation(destination.getX() + getRandom(100), destination.getY() + getRandom(100), destination.getZ());
break;
}
case "ANAKIM_DEATH_CAST_LILITH_INVUL":
{
// TODO: When one RB die, the second will be invul for 5 minutes.
break;
}
case "LILITH_DEATH_CAST_ANAKIM_INVUL":
{
// TODO: When one RB die, the second will be invul for 5 minutes.
break;
}
}
return null;
}
@Override
public String onKill(Npc npc, Player player, boolean isSummon)
{
switch (npc.getId())
{
case ANAKIM:
{
// TODO:
// startQuestTimer("ANAKIM_DEATH_CAST_LILITH_INVUL", 1000, null, null);
startQuestTimer("REMOVE_PLAYERS_FROM_ZONE_ANAKIM", 600000, null, player);
addSpawn(GATEKEEPER_SPIRIT_OUT_TELEPORT, -6664, 18501, -5495, 0, false, 600000, false, npc.getInstanceId());
break;
}
case LILITH:
{
// TODO:
// startQuestTimer("LILITH_DEATH_CAST_ANAKIM_INVUL", 1000, null, null);
startQuestTimer("REMOVE_PLAYERS_FROM_ZONE_LILITH", 600000, null, player);
addSpawn(GATEKEEPER_SPIRIT_OUT_TELEPORT, 185062, -9612, -5493, 0, false, 600000, false, npc.getInstanceId());
break;
}
}
final Instance world = npc.getInstanceWorld();
if (world != null)
{
world.finishInstance();
}
return super.onKill(npc, player, isSummon);
}
public static void main(String[] args)
{
new SevenSignsRBs();
}
}

View File

@ -1,96 +1,103 @@
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/spawns.xsd">
<spawn name="Raidbosses">
<group>
<npc id="25004" x="-61466" y="79786" z="-3488" heading="46378" dbSave="true" dbName="Turek Mercenary Captain" respawnTime="24hour" respawnRandom="12hour" /> <!-- Turek Mercenary Captain - Elite -->
<npc id="25026" x="137772" y="78637" z="-3608" heading="46378" dbSave="true" dbName="Atis" respawnTime="24hour" respawnRandom="12hour" /> <!-- Atis - Elite -->
<npc id="25044" x="165646" y="-20861" z="-2912" heading="46378" dbSave="true" dbName="Barion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Barion - Elite -->
<npc id="25051" x="166972" y="-21210" z="-3416" heading="46378" dbSave="true" dbName="Rahha" respawnTime="24hour" respawnRandom="12hour" /> <!-- Rahha - Elite -->
<npc id="25054" x="113489" y="16586" z="3960" heading="46378" dbSave="true" dbName="Kernon" respawnTime="24hour" respawnRandom="12hour" /> <!-- Kernon - High Elite -->
<npc id="25057" x="94373" y="83153" z="-3560" heading="46378" dbSave="true" dbName="Beacon of Blue Sky" respawnTime="24hour" respawnRandom="12hour" /> <!-- Beacon of Blue Sky - Elite -->
<npc id="25092" x="115968" y="16003" z="1944" heading="46378" dbSave="true" dbName="Korim" respawnTime="24hour" respawnRandom="12hour" /> <!-- Korim - High Elite -->
<npc id="25095" x="168148" y="-20504" z="-3680" heading="46378" dbSave="true" dbName="Renoa" respawnTime="24hour" respawnRandom="12hour" /> <!-- Renoa - Elite -->
<npc id="25099" x="167711" y="-19190" z="-3072" heading="46378" dbSave="true" dbName="Repiro" respawnTime="24hour" respawnRandom="12hour" /> <!-- Repiro - Elite -->
<npc id="25102" x="-23702" y="74952" z="-3672" heading="46378" dbSave="true" dbName="Shacram" respawnTime="24hour" respawnRandom="12hour" /> <!-- Shacram - Elite -->
<npc id="25103" x="86092" y="67675" z="-3328" heading="46378" dbSave="true" dbName="Wizard Isirr" respawnTime="24hour" respawnRandom="12hour" /> <!-- Wizard Isirr - High Elite -->
<npc id="25122" x="-27820" y="79612" z="-3576" heading="46378" dbSave="true" dbName="Refugee Applicant Leo" respawnTime="24hour" respawnRandom="12hour" /> <!-- Refugee Applicant Leo - Elite -->
<npc id="25125" x="135519" y="-17294" z="-2576" heading="46378" dbSave="true" dbName="Fierce Tiger King Angel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tiger King Kata - High Elite -->
<npc id="25126" x="113058" y="15603" z="5984" heading="46378" dbSave="true" dbName="Longhorn Golkonda" respawnTime="24hour" respawnRandom="12hour" /> <!-- Longhorn Golkonda - High Elite -->
<npc id="25127" x="89085" y="61867" z="-3688" heading="46378" dbSave="true" dbName="Langk Matriarch Rashkos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Chief Rashkos - High Elite -->
<npc id="25143" x="114243" y="14482" z="7992" heading="46378" dbSave="true" dbName="Fire of Wrath Shuriel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fire of Wrath Shuriel - High Elite -->
<npc id="25146" x="119277" y="20219" z="-5168" heading="46378" dbSave="true" dbName="Cursed Bifrons" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cursed Bifrons - Elite -->
<npc id="25152" x="119877" y="13565" z="-5184" heading="46378" dbSave="true" dbName="Cursed Shadir" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cursed Shadir - Elite -->
<npc id="25155" x="135981" y="79736" z="-3576" heading="46378" dbSave="true" dbName="Selu" respawnTime="24hour" respawnRandom="12hour" /> <!-- Selu - Elite -->
<npc id="25158" x="128048" y="-5376" z="-3280" heading="46378" dbSave="true" dbName="King Tarlk" respawnTime="24hour" respawnRandom="12hour" /> <!-- King Tarlk - High Elite -->
<npc id="25159" x="85179" y="87669" z="-3152" heading="46378" dbSave="true" dbName="Paniel the Unicorn" respawnTime="24hour" respawnRandom="12hour" /> <!-- Paniel the Unicorn - Elite -->
<npc id="25163" x="87669" y="108230" z="-3088" heading="46378" dbSave="true" dbName="Roaring Skylancer" respawnTime="24hour" respawnRandom="12hour" /> <!-- Roaring Skylancer - Elite -->
<npc id="25173" x="133703" y="-14093" z="-2656" heading="46378" dbSave="true" dbName="Tiger King Karuta" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tiger King Karu - High Elite -->
<npc id="25176" x="92127" y="119736" z="-2912" heading="46378" dbSave="true" dbName="Black Lily" respawnTime="24hour" respawnRandom="12hour" /> <!-- Black Lily - Elite -->
<npc id="25217" x="115966" y="10530" z="-5136" heading="46378" dbSave="true" dbName="Cursed Kele" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cursed Kele - Elite -->
<npc id="25220" x="114635" y="18179" z="-2896" heading="46378" dbSave="true" dbName="Death Lord Hallate" respawnTime="24hour" respawnRandom="12hour" /> <!-- Death Lord Hallate - High Elite -->
<npc id="25226" x="-27463" y="84255" z="-3464" heading="46378" dbSave="true" dbName="Roaring Lord Kastor" respawnTime="24hour" respawnRandom="12hour" /> <!-- Roaring Lord Kastor - Elite -->
<npc id="25230" x="-58461" y="75471" z="-3176" heading="46378" dbSave="true" dbName="Timak Priest Ragoth" respawnTime="24hour" respawnRandom="12hour" /> <!-- Priest Ragoth - Elite -->
<npc id="25241" x="91330" y="69898" z="-3464" heading="46378" dbSave="true" dbName="Hero Tamash" respawnTime="24hour" respawnRandom="12hour" /> <!-- Hero Tamash - High Elite -->
<npc id="25252" x="96835" y="109953" z="-3712" heading="46378" dbSave="true" dbName="Palibati Queen Themis" respawnTime="24hour" respawnRandom="12hour" /> <!-- Palibati Queen Themis - High Elite -->
<npc id="25255" x="85189" y="119998" z="-2944" heading="46378" dbSave="true" dbName="Tiphon" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tiphon - Elite -->
<npc id="25256" x="-54418" y="81791" z="-3480" heading="46378" dbSave="true" dbName="Taik High Prefect Arak" respawnTime="24hour" respawnRandom="12hour" /> <!-- High Prefect Arak - Elite -->
<npc id="25260" x="133853" y="-8115" z="-3384" heading="46378" dbSave="true" dbName="Iron Giant Totem" respawnTime="24hour" respawnRandom="12hour" /> <!-- Iron Giant Totem - High Elite -->
<npc id="25365" x="89837" y="67707" z="-3664" heading="46378" dbSave="true" dbName="Patriarch Kuroboros" respawnTime="24hour" respawnRandom="12hour" /> <!-- Patriarch Kuroboros - High Elite -->
<npc id="25366" x="82341" y="60738" z="-3496" heading="46378" dbSave="true" dbName="Kuroboros' High Priest" respawnTime="24hour" respawnRandom="12hour" /> <!-- Kuroboros' High Priest - High Elite -->
<npc id="25369" x="110571" y="11967" z="-5152" heading="46378" dbSave="true" dbName="Cursed Scavenger" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cursed Scavenger - Elite -->
<npc id="25385" x="114815" y="1744" z="-3720" heading="46378" dbSave="true" dbName="Evil Spirit Tempest" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Spirit Tempest - High Elite -->
<npc id="25398" x="94774" y="81548" z="-3680" heading="46378" dbSave="true" dbName="Gaze of Abyss" respawnTime="24hour" respawnRandom="12hour" /> <!-- Gaze of Abyss - Elite -->
<npc id="25420" x="66911" y="31145" z="-3720" heading="46378" dbSave="true" dbName="Orfen's Handmaiden" respawnTime="24hour" respawnRandom="12hour" /> <!-- Orfen's Handmaiden - Elite -->
<npc id="25431" x="158212" y="-13096" z="-2816" heading="46378" dbSave="true" dbName="Flamestone Golem" respawnTime="24hour" respawnRandom="12hour" /> <!-- Flamestone Golem - Elite -->
<npc id="25437" x="180790" y="37516" z="-4792" heading="46378" dbSave="true" dbName="Timak Orc Gosmos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Orc Gosmos - High Elite -->
<npc id="25441" x="81273" y="109691" z="-3056" heading="46378" dbSave="true" dbName="Cyrion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cyrion - Elite -->
<npc id="25444" x="112565" y="16055" z="-4376" heading="46378" dbSave="true" dbName="Enmity Ghost Ramdal" respawnTime="24hour" respawnRandom="12hour" /> <!-- Enmity Ghost Ramdal - High Elite -->
<npc id="25447" x="114660" y="13914" z="64" heading="46378" dbSave="true" dbName="Immortal Savior Mardil" respawnTime="24hour" respawnRandom="12hour" /> <!-- Immortal Savior Mardil - High Elite -->
<npc id="25450" x="113430" y="14836" z="9560" heading="46378" dbSave="true" dbName="Cherub Galaxia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cherub Galaxia - High Elite -->
<npc id="25463" x="-63757" y="82701" z="-3432" heading="46378" dbSave="true" dbName="Harit Guardian Garangky" respawnTime="24hour" respawnRandom="12hour" /> <!-- Guardian Garangky - Elite -->
<npc id="25478" x="91189" y="110550" z="-3808" heading="46378" dbSave="true" dbName="Shillien's Priest Hisilrome" respawnTime="24hour" respawnRandom="12hour" /> <!-- Shillien's Priest Hisilrome - High Elite -->
<npc id="25738" x="96002" y="27789" z="-3640" heading="46378" dbSave="true" dbName="Queen Ant Drone Priest" respawnTime="24hour" respawnRandom="12hour" /> <!-- Queen Ant Drone Priest - High Elite -->
<npc id="25739" x="108543" y="27676" z="-3480" heading="46378" dbSave="true" dbName="Angel Priest of Baium" respawnTime="24hour" respawnRandom="12hour" /> <!-- Angel Priest of Baium - High Elite -->
<npc id="25742" x="95285" y="20886" z="-3120" heading="46378" dbSave="true" dbName="Priest of Core Decar" respawnTime="24hour" respawnRandom="12hour" /> <!-- Priest of Core Decar - High Elite -->
<npc id="25743" x="102675" y="26799" z="-3376" heading="46378" dbSave="true" dbName="Orfen's Priest Lord Ipos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Orfen's Priest Lord Ipos - High Elite -->
<npc id="25745" x="180326" y="43505" z="-3840" heading="46378" dbSave="true" dbName="Orc Timak Darphen" respawnTime="24hour" respawnRandom="12hour" chaseRange="1500" /> <!-- Evil Orc Darphen - High Elite -->
<npc id="25746" x="170376" y="-19957" z="-3504" heading="46378" dbSave="true" dbName="Magikus" respawnTime="24hour" respawnRandom="12hour" /> <!-- Magikus - Elite -->
<npc id="25747" x="108414" y="80429" z="-2808" heading="46378" dbSave="true" dbName="Rael Mahum Radium" respawnTime="24hour" respawnRandom="12hour" /> <!-- Rael Mahum Radium - Elite -->
<npc id="25748" x="107567" y="86892" z="-3144" heading="46378" dbSave="true" dbName="Rael Mahum Supercium" respawnTime="24hour" respawnRandom="12hour" /> <!-- Rael Mahum Supercium - Elite -->
<npc id="25749" x="133071" y="6662" z="-4344" heading="46378" dbSave="true" dbName="Tayga Feron King" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tayga Feron King - Elite -->
<npc id="25750" x="138820" y="3347" z="-4520" heading="46378" dbSave="true" dbName="Tayga Marga Shaman" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tayga Marga Shaman - Elite -->
<npc id="25751" x="135274" y="11909" z="-4144" heading="46378" dbSave="true" dbName="Tayga Septon Champion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tayga Septon Champion - Elite -->
<npc id="25754" x="155519" y="-20579" z="-1776" heading="46378" dbSave="true" dbName="Flamestone Giant" respawnTime="24hour" respawnRandom="12hour" /> <!-- Flamestone Giant - Elite -->
<npc id="25755" x="129750" y="-9334" z="-3600" heading="46378" dbSave="true" dbName="Gross Salamander" respawnTime="24hour" respawnRandom="12hour" /> <!-- Flame Salamander - High Elite -->
<npc id="25756" x="128767" y="-11501" z="-3664" heading="46378" dbSave="true" dbName="Gross Dre Vanul" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fire Dre Vanul - High Elite -->
<npc id="25757" x="80223" y="85605" z="-3528" heading="46378" dbSave="true" dbName="Grousse" respawnTime="24hour" respawnRandom="12hour" /> <!-- Grousse - Elite -->
<npc id="25758" x="112793" y="-987" z="-3904" heading="46378" dbSave="true" dbName="Fiend Goblier" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fiend Goblier - High Elite -->
<npc id="25759" x="119294" y="-1929" z="-3720" heading="46378" dbSave="true" dbName="Fiend Cherkia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fiend Cherkia - High Elite -->
<npc id="25760" x="123636" y="-4094" z="-3304" heading="46378" dbSave="true" dbName="Fiend Harthemon" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Fiend Harthemon - High Elite -->
<npc id="25761" x="120924" y="-7493" z="-3152" heading="46378" dbSave="true" dbName="Fiend Sarboth" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Fiend Sarboth - High Elite -->
<npc id="25762" x="119518" y="-2860" z="-3760" heading="46378" dbSave="true" dbName="Demon Bedukel" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Demon Bedukel - High Elite -->
<npc id="25763" x="115975" y="-5424" z="-3416" heading="46378" dbSave="true" dbName="Bloody Witch Rumilla" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Bloody Witch Rumilla - High Elite -->
<npc id="25766" x="-47586" y="141472" z="-2920" heading="46378" dbSave="true" dbName="Monster Minotaur" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Monster Minotaur - High Elite -->
<npc id="25767" x="-51042" y="135662" z="-2920" heading="46378" dbSave="true" dbName="Monster Bulleroth" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Monster Bulleroth - High Elite -->
<npc id="25768" x="176307" y="40572" z="-3824" heading="46378" dbSave="true" dbName="Dorcaus" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Dorcaus - High Elite -->
<npc id="25769" x="163749" y="42252" z="-3352" heading="46378" dbSave="true" dbName="Kerfaus" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Kerfaus - High Elite -->
<npc id="25770" x="168081" y="46863" z="-3672" heading="46378" dbSave="true" dbName="Milinaus" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Milinaus - High Elite -->
<npc id="25772" x="185073" y="36926" z="-4176" heading="46378" dbSave="true" dbName="Evil Orc Zetahl" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Orc Zetahl - High Elite -->
<npc id="25773" x="-89953" y="105548" z="-3576" heading="46378" dbSave="true" dbName="Evil Orc Tabris" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Orc Tabris - High Elite -->
<npc id="25774" x="166837" y="39190" z="-3616" heading="46378" dbSave="true" dbName="Evil Orc Ravolas" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Orc Ravolas - High Elite -->
<npc id="25775" x="-94488" y="109525" z="-3784" heading="46378" dbSave="true" dbName="Evil Orc Dephracor" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Evil Orc Dephracor - High Elite -->
<npc id="25776" x="174507" y="42098" z="-4872" heading="46378" dbSave="true" dbName="Amden Orc Turahot" respawnTime="24hour" respawnRandom="12hour" chaseRange="2000" /> <!-- Evil Orc Turahot - High Elite -->
<npc id="25777" x="178757" y="41533" z="-3688" heading="46378" dbSave="true" dbName="Amden Orc Turation" respawnTime="24hour" respawnRandom="12hour" chaseRange="2000" /> <!-- Evil Orc Turation - High Elite -->
<npc id="25780" x="145002" y="86608" z="-3600" heading="46378" dbSave="true" dbName="Varbasion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varbasion - High Elite -->
<npc id="25781" x="147320" y="83986" z="-3624" heading="46378" dbSave="true" dbName="Varmoni" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varmoni - High Elite -->
<npc id="25782" x="151096" y="83959" z="-3432" heading="46378" dbSave="true" dbName="Overlord Muscel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Overlord Muscel - High Elite -->
<npc id="25783" x="148726" y="82720" z="-3264" heading="46378" dbSave="true" dbName="Bathus Elbogen" respawnTime="24hour" respawnRandom="12hour" /> <!-- Bathus Elbogen - High Elite -->
<npc id="25784" x="154506" y="81675" z="-3160" heading="46378" dbSave="true" dbName="Daumen Kshana" respawnTime="24hour" respawnRandom="12hour" /> <!-- Daumen Kshana - High Elite -->
<npc id="25909" x="-89105" y="104554" z="-3312" heading="46378" dbSave="true" dbName="Carcs" respawnTime="24hour" respawnRandom="12hour" /> <!-- Carcs - Elite -->
<npc id="25910" x="-89635" y="115127" z="-3400" heading="46378" dbSave="true" dbName="Drak" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Drak - Elite -->
<npc id="25911" x="-92358" y="119334" z="-3488" heading="46378" dbSave="true" dbName="Ourick" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Ourick - Elite -->
<npc id="25925" x="-60496" y="137347" z="-2392" heading="46378" dbSave="true" dbName="Jisra" respawnTime="24hour" respawnRandom="12hour" /> <!-- Jisra - Elite -->
<npc id="25926" x="-58974" y="135294" z="-2392" heading="46378" dbSave="true" dbName="Kuka" respawnTime="24hour" respawnRandom="12hour" /> <!-- Kuka - Jisra's Prefect -->
<npc id="25932" x="127644" y="114568" z="-3520" heading="46378" dbSave="true" dbName="Katuba" respawnTime="24hour" respawnRandom="12hour" /> <!-- Katuba - High Elite -->
<npc id="25004" x="-61466" y="79786" z="-3488" heading="46378" dbSave="true" dbName="Turek Mercenary Captain" respawnPattern="0 1-23/2 * * *" />
<npc id="25026" x="137772" y="78637" z="-3608" heading="46378" dbSave="true" dbName="Atis" respawnPattern="0 1-23/2 * * *" />
<npc id="25044" x="165646" y="-20861" z="-2912" heading="46378" dbSave="true" dbName="Barion" respawnPattern="0 1-23/2 * * *" />
<npc id="25051" x="166972" y="-21210" z="-3416" heading="46378" dbSave="true" dbName="Rahha" respawnPattern="0 1-23/2 * * *" />
<npc id="25057" x="94373" y="83153" z="-3560" heading="46378" dbSave="true" dbName="Beacon of Blue Sky" respawnPattern="0 1-23/2 * * *" />
<npc id="25095" x="168148" y="-20504" z="-3680" heading="46378" dbSave="true" dbName="Renoa" respawnPattern="0 1-23/2 * * *" />
<npc id="25099" x="167711" y="-19190" z="-3072" heading="46378" dbSave="true" dbName="Repiro" respawnPattern="0 1-23/2 * * *" />
<npc id="25102" x="-23702" y="74952" z="-3672" heading="46378" dbSave="true" dbName="Shacram" respawnPattern="0 1-23/2 * * *" />
<npc id="25122" x="-27820" y="79612" z="-3576" heading="46378" dbSave="true" dbName="Refugee Applicant Leo" respawnPattern="0 1-23/2 * * *" />
<npc id="25146" x="119277" y="20219" z="-5168" heading="46378" dbSave="true" dbName="Cursed Bifrons" respawnPattern="0 1-23/2 * * *" />
<npc id="25152" x="119877" y="13565" z="-5184" heading="46378" dbSave="true" dbName="Cursed Shadir" respawnPattern="0 1-23/2 * * *" />
<npc id="25155" x="135981" y="79736" z="-3576" heading="46378" dbSave="true" dbName="Selu" respawnPattern="0 1-23/2 * * *" />
<npc id="25159" x="85179" y="87669" z="-3152" heading="46378" dbSave="true" dbName="Paniel the Unicorn" respawnPattern="0 1-23/2 * * *" />
<npc id="25163" x="87669" y="108230" z="-3088" heading="46378" dbSave="true" dbName="Roaring Skylancer" respawnPattern="0 1-23/2 * * *" />
<npc id="25176" x="92127" y="119736" z="-2912" heading="46378" dbSave="true" dbName="Black Lily" respawnPattern="0 1-23/2 * * *" />
<npc id="25217" x="115966" y="10530" z="-5136" heading="46378" dbSave="true" dbName="Cursed Kele" respawnPattern="0 1-23/2 * * *" />
<npc id="25226" x="-27463" y="84255" z="-3464" heading="46378" dbSave="true" dbName="Roaring Lord Kastor" respawnPattern="0 1-23/2 * * *" />
<npc id="25230" x="-58461" y="75471" z="-3176" heading="46378" dbSave="true" dbName="Timak Priest Ragoth" respawnPattern="0 1-23/2 * * *" />
<npc id="25255" x="85189" y="119998" z="-2944" heading="46378" dbSave="true" dbName="Tiphon" respawnPattern="0 1-23/2 * * *" />
<npc id="25256" x="-54418" y="81791" z="-3480" heading="46378" dbSave="true" dbName="Taik High Prefect Arak" respawnPattern="0 1-23/2 * * *" />
<npc id="25369" x="110571" y="11967" z="-5152" heading="46378" dbSave="true" dbName="Cursed Scavenger" respawnPattern="0 1-23/2 * * *" />
<npc id="25398" x="94774" y="81548" z="-3680" heading="46378" dbSave="true" dbName="Gaze of Abyss" respawnPattern="0 1-23/2 * * *" />
<npc id="25420" x="66911" y="31145" z="-3720" heading="46378" dbSave="true" dbName="Orfen's Handmaiden" respawnPattern="0 1-23/2 * * *" />
<npc id="25431" x="158212" y="-13096" z="-2816" heading="46378" dbSave="true" dbName="Flamestone Golem" respawnPattern="0 1-23/2 * * *" />
<npc id="25441" x="81273" y="109691" z="-3056" heading="46378" dbSave="true" dbName="Cyrion" respawnPattern="0 1-23/2 * * *" />
<npc id="25463" x="-63757" y="82701" z="-3432" heading="46378" dbSave="true" dbName="Harit Guardian Garangky" respawnPattern="0 1-23/2 * * *" />
<npc id="25746" x="170376" y="-19957" z="-3504" heading="46378" dbSave="true" dbName="Magikus" respawnPattern="0 1-23/2 * * *" />
<npc id="25747" x="108414" y="80429" z="-2808" heading="46378" dbSave="true" dbName="Rael Mahum Radium" respawnPattern="0 1-23/2 * * *" />
<npc id="25748" x="107567" y="86892" z="-3144" heading="46378" dbSave="true" dbName="Rael Mahum Supercium" respawnPattern="0 1-23/2 * * *" />
<npc id="25749" x="133071" y="6662" z="-4344" heading="46378" dbSave="true" dbName="Tayga Feron King" respawnPattern="0 1-23/2 * * *" />
<npc id="25750" x="138820" y="3347" z="-4520" heading="46378" dbSave="true" dbName="Tayga Marga Shaman" respawnPattern="0 1-23/2 * * *" />
<npc id="25751" x="135274" y="11909" z="-4144" heading="46378" dbSave="true" dbName="Tayga Septon Champion" respawnPattern="0 1-23/2 * * *" />
<npc id="25754" x="155519" y="-20579" z="-1776" heading="46378" dbSave="true" dbName="Flamestone Giant" respawnPattern="0 1-23/2 * * *" />
<npc id="25757" x="80223" y="85605" z="-3528" heading="46378" dbSave="true" dbName="Grousse" respawnPattern="0 1-23/2 * * *" />
<npc id="25909" x="-89105" y="104554" z="-3312" heading="46378" dbSave="true" dbName="Carcs" respawnPattern="0 1-23/2 * * *" />
<npc id="25910" x="-89635" y="115127" z="-3400" heading="46378" dbSave="true" dbName="Drak" respawnPattern="0 1-23/2 * * *" />
<npc id="25911" x="-92358" y="119334" z="-3488" heading="46378" dbSave="true" dbName="Ourick" respawnPattern="0 1-23/2 * * *" />
<npc id="25925" x="-60496" y="137347" z="-2392" heading="46378" dbSave="true" dbName="Jisra" respawnPattern="0 1-23/2 * * *" />
<npc id="25926" x="-58974" y="135294" z="-2392" heading="46378" dbSave="true" dbName="Kuka" respawnPattern="0 1-23/2 * * *" />
</group>
<group name="High Elites">
<npc id="25054" x="113489" y="16586" z="3960" heading="46378" dbSave="true" dbName="Kernon" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25092" x="115968" y="16003" z="1944" heading="46378" dbSave="true" dbName="Korim" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25103" x="86092" y="67675" z="-3328" heading="46378" dbSave="true" dbName="Wizard Isirr" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25125" x="135519" y="-17294" z="-2576" heading="46378" dbSave="true" dbName="Fierce Tiger King Angel" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25126" x="113058" y="15603" z="5984" heading="46378" dbSave="true" dbName="Longhorn Golkonda" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25127" x="89085" y="61867" z="-3688" heading="46378" dbSave="true" dbName="Langk Matriarch Rashkos" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25143" x="114243" y="14482" z="7992" heading="46378" dbSave="true" dbName="Fire of Wrath Shuriel" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25158" x="128048" y="-5376" z="-3280" heading="46378" dbSave="true" dbName="King Tarlk" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25173" x="133703" y="-14093" z="-2656" heading="46378" dbSave="true" dbName="Tiger King Karuta" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25220" x="114635" y="18179" z="-2896" heading="46378" dbSave="true" dbName="Death Lord Hallate" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25241" x="91330" y="69898" z="-3464" heading="46378" dbSave="true" dbName="Hero Tamash" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25252" x="96835" y="109953" z="-3712" heading="46378" dbSave="true" dbName="Palibati Queen Themis" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25260" x="133853" y="-8115" z="-3384" heading="46378" dbSave="true" dbName="Iron Giant Totem" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25365" x="89837" y="67707" z="-3664" heading="46378" dbSave="true" dbName="Patriarch Kuroboros" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25366" x="82341" y="60738" z="-3496" heading="46378" dbSave="true" dbName="Kuroboros' High Priest" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25385" x="114815" y="1744" z="-3720" heading="46378" dbSave="true" dbName="Evil Spirit Tempest" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25437" x="180790" y="37516" z="-4792" heading="46378" dbSave="true" dbName="Timak Orc Gosmos" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25444" x="112565" y="16055" z="-4376" heading="46378" dbSave="true" dbName="Enmity Ghost Ramdal" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25447" x="114660" y="13914" z="64" heading="46378" dbSave="true" dbName="Immortal Savior Mardil" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25450" x="113430" y="14836" z="9560" heading="46378" dbSave="true" dbName="Cherub Galaxia" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25478" x="91189" y="110550" z="-3808" heading="46378" dbSave="true" dbName="Shillien's Priest Hisilrome" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25738" x="96002" y="27789" z="-3640" heading="46378" dbSave="true" dbName="Queen Ant Drone Priest" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25739" x="108543" y="27676" z="-3480" heading="46378" dbSave="true" dbName="Angel Priest of Baium" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25742" x="95285" y="20886" z="-3120" heading="46378" dbSave="true" dbName="Priest of Core Decar" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25743" x="102675" y="26799" z="-3376" heading="46378" dbSave="true" dbName="Orfen's Priest Lord Ipos" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25745" x="180326" y="43505" z="-3840" heading="46378" dbSave="true" dbName="Orc Timak Darphen" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25755" x="129750" y="-9334" z="-3600" heading="46378" dbSave="true" dbName="Gross Salamander" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25756" x="128767" y="-11501" z="-3664" heading="46378" dbSave="true" dbName="Gross Dre Vanul" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25758" x="112793" y="-987" z="-3904" heading="46378" dbSave="true" dbName="Fiend Goblier" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25759" x="119294" y="-1929" z="-3720" heading="46378" dbSave="true" dbName="Fiend Cherkia" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25760" x="123636" y="-4094" z="-3304" heading="46378" dbSave="true" dbName="Fiend Harthemon" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25761" x="120924" y="-7493" z="-3152" heading="46378" dbSave="true" dbName="Fiend Sarboth" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25762" x="119518" y="-2860" z="-3760" heading="46378" dbSave="true" dbName="Demon Bedukel" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25763" x="115975" y="-5424" z="-3416" heading="46378" dbSave="true" dbName="Bloody Witch Rumilla" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25766" x="-47586" y="141472" z="-2920" heading="46378" dbSave="true" dbName="Monster Minotaur" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25767" x="-51042" y="135662" z="-2920" heading="46378" dbSave="true" dbName="Monster Bulleroth" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25768" x="176307" y="40572" z="-3824" heading="46378" dbSave="true" dbName="Dorcaus" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25769" x="163749" y="42252" z="-3352" heading="46378" dbSave="true" dbName="Kerfaus" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25770" x="168081" y="46863" z="-3672" heading="46378" dbSave="true" dbName="Milinaus" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25772" x="185073" y="36926" z="-4176" heading="46378" dbSave="true" dbName="Evil Orc Zetahl" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25773" x="-89953" y="105548" z="-3576" heading="46378" dbSave="true" dbName="Evil Orc Tabris" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25774" x="166837" y="39190" z="-3616" heading="46378" dbSave="true" dbName="Evil Orc Ravolas" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25775" x="-94488" y="109525" z="-3784" heading="46378" dbSave="true" dbName="Evil Orc Dephracor" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25776" x="174507" y="42098" z="-4872" heading="46378" dbSave="true" dbName="Amden Orc Turahot" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25777" x="178757" y="41533" z="-3688" heading="46378" dbSave="true" dbName="Amden Orc Turation" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25780" x="145002" y="86608" z="-3600" heading="46378" dbSave="true" dbName="Varbasion" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25781" x="147320" y="83986" z="-3624" heading="46378" dbSave="true" dbName="Varmoni" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25782" x="151096" y="83959" z="-3432" heading="46378" dbSave="true" dbName="Overlord Muscel" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25783" x="148726" y="82720" z="-3264" heading="46378" dbSave="true" dbName="Bathus Elbogen" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25784" x="154506" y="81675" z="-3160" heading="46378" dbSave="true" dbName="Daumen Kshana" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25932" x="127644" y="114568" z="-3520" heading="46378" dbSave="true" dbName="Katuba" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25948" x="26625" y="183245" z="-3415" heading="5000" dbSave="true" dbName="Beoro" respawnTime="11hour" respawnRandom="0hour" />
</group>
<group name="Epic">
<npc id="25283" x="185059" y="-9610" z="-5488" heading="15640" dbSave="true" dbName="Lilith" respawnPattern="0 19 * * 1 | 0 19 * * 4" />
<npc id="25286" x="-6675" y="18505" z="-5488" heading="16550" dbSave="true" dbName="Anakim" respawnPattern="0 19 * * 2 | 0 19 * * 5" />
</group>
</spawn>
</list>
</list>

View File

@ -1,33 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<instance id="200" maxWorlds="80" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
<time duration="120" empty="0" />
<removeBuffs type="ALL" />
<locations>
<enter type="FIXED">
<location x="-6704" y="19121" z="-5193" />
</enter>
<exit type="ORIGIN" />
</locations>
<conditions>
<condition type="Party" />
<condition type="CommandChannel" />
<condition type="CommandChannelLeader" />
<condition type="GroupMin">
<param name="limit" value="90" />
</condition>
<condition type="Level">
<param name="min" value="76" />
</condition>
<condition type="Distance" />
<condition type="Reenter" />
</conditions>
<!-- <reenter apply="ON_ENTER">
<reset day="TUESDAY" hour="9" minute="00" />
<reset day="FRIDAY" hour="9" minute="00" />
</reenter> -->
<spawnlist>
<group>
<npc id="25286" x="-6664" y="18505" z="-5493" heading="48103" /> <!-- Anakim -->
</group>
</spawnlist>
</instance>

View File

@ -1,33 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<instance id="199" maxWorlds="80" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
<time duration="120" empty="10" />
<removeBuffs type="ALL" />
<locations>
<enter type="FIXED">
<location x="185657" y="-10112" z="-5496" />
</enter>
<exit type="ORIGIN" />
</locations>
<conditions>
<condition type="Party" />
<condition type="CommandChannel" />
<condition type="CommandChannelLeader" />
<condition type="GroupMin">
<param name="limit" value="90" />
</condition>
<condition type="Level">
<param name="min" value="76" />
</condition>
<condition type="Distance" />
<condition type="Reenter" />
</conditions>
<!-- <reenter apply="ON_ENTER">
<reset day="TUESDAY" hour="9" minute="00" />
<reset day="FRIDAY" hour="9" minute="00" />
</reenter> -->
<spawnlist>
<group>
<npc id="25283" x="185067" y="-9616" z="-5493" heading="48103" /> <!-- Lilith -->
</group>
</spawnlist>
</instance>

View File

@ -1,252 +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 instances.SevenSignsRBs;
import java.util.List;
import org.l2jmobius.gameserver.instancemanager.ZoneManager;
import org.l2jmobius.gameserver.model.Location;
import org.l2jmobius.gameserver.model.Party;
import org.l2jmobius.gameserver.model.actor.Creature;
import org.l2jmobius.gameserver.model.actor.Npc;
import org.l2jmobius.gameserver.model.actor.Player;
import org.l2jmobius.gameserver.model.instancezone.Instance;
import org.l2jmobius.gameserver.model.zone.type.NoRestartZone;
import instances.AbstractInstance;
/**
* @author RobikBobik
* @NOTE: Retail like work
* @TODO: When one RB die, the second will be invul for 5 minutes.
*/
public class SevenSignsRBs extends AbstractInstance
{
// NPCs
private static final int ANAKIM_GATEKEEPER_SPIRIT = 31089;
private static final int LILITH_GATEKEEPER_SPIRIT = 31087;
private static final int GATEKEEPER_SPIRIT_OUT_TELEPORT = 31088;
private static final int ANAKIM = 25286;
private static final int LILITH = 25283;
// Misc
private static final int ANAKIM_TEMPLATE_ID = 200;
private static final int LILITH_TEMPLATE_ID = 199;
private static final int MAX_PLAYERS_IN_ZONE = 300;
private static final NoRestartZone ANAKIM_ZONE = ZoneManager.getInstance().getZoneById(70052, NoRestartZone.class);
private static final NoRestartZone LILITH_ZONE = ZoneManager.getInstance().getZoneById(70053, NoRestartZone.class);
// TELEPORTS
private static final Location[] TELEPORT_TO_DARK_ELVEN =
{
new Location(12168, 17149, -4575),
new Location(11688, 18219, -4585),
new Location(10502, 17112, -4588),
new Location(11169, 15922, -4585),
};
// TODO: When teleport from instance done. Enable it
/*
* private static final Location[] TELEPORT_TO_ADEN = { new Location(148053, 26935, -2206), new Location(148053, 28017, -2269), new Location(146558, 28017, -2269), new Location(146558, 26935, -2206), };
*/
public SevenSignsRBs()
{
super(ANAKIM_TEMPLATE_ID, LILITH_TEMPLATE_ID);
addStartNpc(ANAKIM_GATEKEEPER_SPIRIT, LILITH_GATEKEEPER_SPIRIT);
addTalkId(ANAKIM_GATEKEEPER_SPIRIT, LILITH_GATEKEEPER_SPIRIT, GATEKEEPER_SPIRIT_OUT_TELEPORT);
addKillId(ANAKIM, LILITH);
addAttackId(ANAKIM, LILITH);
addInstanceLeaveId(ANAKIM_TEMPLATE_ID, LILITH_TEMPLATE_ID);
}
@Override
public String onAdvEvent(String event, Npc npc, Player player)
{
switch (event)
{
case "ANAKIM_ENTER":
{
if (player.isInParty())
{
final Party party = player.getParty();
final boolean isInCC = party.isInCommandChannel();
final List<Player> members = (isInCC) ? party.getCommandChannel().getMembers() : party.getMembers();
if (members.size() > (MAX_PLAYERS_IN_ZONE - ANAKIM_ZONE.getPlayersInside().size()))
{
player.sendMessage("Lilith Sanctum reached 300 players. You cannot enter now.");
}
else
{
for (Player member : members)
{
if (!member.isInsideRadius3D(npc, 1000))
{
player.sendMessage("Player " + member.getName() + " must go closer to Gatekeeper Spirit.");
}
enterInstance(member, npc, ANAKIM_TEMPLATE_ID);
}
}
}
else if (player.isGM())
{
enterInstance(player, npc, ANAKIM_TEMPLATE_ID);
player.sendMessage("SYS: You have entered as GM/Admin to Anakim Instance");
}
else
{
if (!player.isInsideRadius3D(npc, 1000))
{
player.sendMessage("You must go closer to Gatekeeper Spirit.");
}
enterInstance(player, npc, ANAKIM_TEMPLATE_ID);
}
break;
}
case "LILITH_ENTER":
{
if (player.isInParty())
{
final Party party = player.getParty();
final boolean isInCC = party.isInCommandChannel();
final List<Player> members = (isInCC) ? party.getCommandChannel().getMembers() : party.getMembers();
if (members.size() > (MAX_PLAYERS_IN_ZONE - LILITH_ZONE.getPlayersInside().size()))
{
player.sendMessage("Lilith Sanctum reached 300 players. You cannot enter now.");
}
else
{
for (Player member : members)
{
if (!member.isInsideRadius3D(npc, 1000))
{
player.sendMessage("Player " + member.getName() + " must go closer to Gatekeeper Spirit.");
}
enterInstance(member, npc, LILITH_TEMPLATE_ID);
}
}
}
else if (player.isGM())
{
enterInstance(player, npc, LILITH_TEMPLATE_ID);
player.sendMessage("SYS: You have entered as GM/Admin to Anakim Instance");
}
else
{
if (!player.isInsideRadius3D(npc, 1000))
{
player.sendMessage("You must go closer to Gatekeeper Spirit.");
}
enterInstance(player, npc, LILITH_TEMPLATE_ID);
}
break;
}
case "REMOVE_PLAYERS_FROM_ZONE_ANAKIM":
{
for (Creature charInside : ANAKIM_ZONE.getCharactersInside())
{
if ((charInside != null) && charInside.isPlayer())
{
charInside.teleToLocation(-20185 + getRandom(50), 13476 + getRandom(50), -4901);
}
}
break;
}
case "REMOVE_PLAYERS_FROM_ZONE_LILITH":
{
for (Creature charInside : LILITH_ZONE.getCharactersInside())
{
if ((charInside != null) && charInside.isPlayer())
{
charInside.teleToLocation(171346 + getRandom(50), -17599 + getRandom(50), -4901);
}
}
break;
}
case "TELEPORT_OUT":
{
// TODO: Different teleport location from instance.
// switch (player.getInstanceId())
// {
// case ANAKIM_TEMPLATE_ID:
// {
// final Location destination = TELEPORT_TO_DARK_ELVEN[getRandom(TELEPORT_TO_DARK_ELVEN.length)];
// player.teleToLocation(destination.getX() + getRandom(100), destination.getY() + getRandom(100), destination.getZ());
// break;
// }
// case LILITH_TEMPLATE_ID:
// {
// final Location destination = TELEPORT_TO_ADEN[getRandom(TELEPORT_TO_ADEN.length)];
// player.teleToLocation(destination.getX() + getRandom(100), destination.getY() + getRandom(100), destination.getZ());
// break;
// }
// }
final Location destination = TELEPORT_TO_DARK_ELVEN[getRandom(TELEPORT_TO_DARK_ELVEN.length)];
player.teleToLocation(destination.getX() + getRandom(100), destination.getY() + getRandom(100), destination.getZ());
break;
}
case "ANAKIM_DEATH_CAST_LILITH_INVUL":
{
// TODO: When one RB die, the second will be invul for 5 minutes.
break;
}
case "LILITH_DEATH_CAST_ANAKIM_INVUL":
{
// TODO: When one RB die, the second will be invul for 5 minutes.
break;
}
}
return null;
}
@Override
public String onKill(Npc npc, Player player, boolean isSummon)
{
switch (npc.getId())
{
case ANAKIM:
{
// TODO:
// startQuestTimer("ANAKIM_DEATH_CAST_LILITH_INVUL", 1000, null, null);
startQuestTimer("REMOVE_PLAYERS_FROM_ZONE_ANAKIM", 600000, null, player);
addSpawn(GATEKEEPER_SPIRIT_OUT_TELEPORT, -6664, 18501, -5495, 0, false, 600000, false, npc.getInstanceId());
break;
}
case LILITH:
{
// TODO:
// startQuestTimer("LILITH_DEATH_CAST_ANAKIM_INVUL", 1000, null, null);
startQuestTimer("REMOVE_PLAYERS_FROM_ZONE_LILITH", 600000, null, player);
addSpawn(GATEKEEPER_SPIRIT_OUT_TELEPORT, 185062, -9612, -5493, 0, false, 600000, false, npc.getInstanceId());
break;
}
}
final Instance world = npc.getInstanceWorld();
if (world != null)
{
world.finishInstance();
}
return super.onKill(npc, player, isSummon);
}
public static void main(String[] args)
{
new SevenSignsRBs();
}
}

View File

@ -1,96 +1,103 @@
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/spawns.xsd">
<spawn name="Raidbosses">
<group>
<npc id="25004" x="-61466" y="79786" z="-3488" heading="46378" dbSave="true" dbName="Turek Mercenary Captain" respawnTime="24hour" respawnRandom="12hour" /> <!-- Turek Mercenary Captain - Elite -->
<npc id="25026" x="137772" y="78637" z="-3608" heading="46378" dbSave="true" dbName="Atis" respawnTime="24hour" respawnRandom="12hour" /> <!-- Atis - Elite -->
<npc id="25044" x="165646" y="-20861" z="-2912" heading="46378" dbSave="true" dbName="Barion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Barion - Elite -->
<npc id="25051" x="166972" y="-21210" z="-3416" heading="46378" dbSave="true" dbName="Rahha" respawnTime="24hour" respawnRandom="12hour" /> <!-- Rahha - Elite -->
<npc id="25054" x="113489" y="16586" z="3960" heading="46378" dbSave="true" dbName="Kernon" respawnTime="24hour" respawnRandom="12hour" /> <!-- Kernon - High Elite -->
<npc id="25057" x="94373" y="83153" z="-3560" heading="46378" dbSave="true" dbName="Beacon of Blue Sky" respawnTime="24hour" respawnRandom="12hour" /> <!-- Beacon of Blue Sky - Elite -->
<npc id="25092" x="115968" y="16003" z="1944" heading="46378" dbSave="true" dbName="Korim" respawnTime="24hour" respawnRandom="12hour" /> <!-- Korim - High Elite -->
<npc id="25095" x="168148" y="-20504" z="-3680" heading="46378" dbSave="true" dbName="Renoa" respawnTime="24hour" respawnRandom="12hour" /> <!-- Renoa - Elite -->
<npc id="25099" x="167711" y="-19190" z="-3072" heading="46378" dbSave="true" dbName="Repiro" respawnTime="24hour" respawnRandom="12hour" /> <!-- Repiro - Elite -->
<npc id="25102" x="-23702" y="74952" z="-3672" heading="46378" dbSave="true" dbName="Shacram" respawnTime="24hour" respawnRandom="12hour" /> <!-- Shacram - Elite -->
<npc id="25103" x="86092" y="67675" z="-3328" heading="46378" dbSave="true" dbName="Wizard Isirr" respawnTime="24hour" respawnRandom="12hour" /> <!-- Wizard Isirr - High Elite -->
<npc id="25122" x="-27820" y="79612" z="-3576" heading="46378" dbSave="true" dbName="Refugee Applicant Leo" respawnTime="24hour" respawnRandom="12hour" /> <!-- Refugee Applicant Leo - Elite -->
<npc id="25125" x="135519" y="-17294" z="-2576" heading="46378" dbSave="true" dbName="Fierce Tiger King Angel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tiger King Kata - High Elite -->
<npc id="25126" x="113058" y="15603" z="5984" heading="46378" dbSave="true" dbName="Longhorn Golkonda" respawnTime="24hour" respawnRandom="12hour" /> <!-- Longhorn Golkonda - High Elite -->
<npc id="25127" x="89085" y="61867" z="-3688" heading="46378" dbSave="true" dbName="Langk Matriarch Rashkos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Chief Rashkos - High Elite -->
<npc id="25143" x="114243" y="14482" z="7992" heading="46378" dbSave="true" dbName="Fire of Wrath Shuriel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fire of Wrath Shuriel - High Elite -->
<npc id="25146" x="119277" y="20219" z="-5168" heading="46378" dbSave="true" dbName="Cursed Bifrons" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cursed Bifrons - Elite -->
<npc id="25152" x="119877" y="13565" z="-5184" heading="46378" dbSave="true" dbName="Cursed Shadir" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cursed Shadir - Elite -->
<npc id="25155" x="135981" y="79736" z="-3576" heading="46378" dbSave="true" dbName="Selu" respawnTime="24hour" respawnRandom="12hour" /> <!-- Selu - Elite -->
<npc id="25158" x="128048" y="-5376" z="-3280" heading="46378" dbSave="true" dbName="King Tarlk" respawnTime="24hour" respawnRandom="12hour" /> <!-- King Tarlk - High Elite -->
<npc id="25159" x="85179" y="87669" z="-3152" heading="46378" dbSave="true" dbName="Paniel the Unicorn" respawnTime="24hour" respawnRandom="12hour" /> <!-- Paniel the Unicorn - Elite -->
<npc id="25163" x="87669" y="108230" z="-3088" heading="46378" dbSave="true" dbName="Roaring Skylancer" respawnTime="24hour" respawnRandom="12hour" /> <!-- Roaring Skylancer - Elite -->
<npc id="25173" x="133703" y="-14093" z="-2656" heading="46378" dbSave="true" dbName="Tiger King Karuta" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tiger King Karu - High Elite -->
<npc id="25176" x="92127" y="119736" z="-2912" heading="46378" dbSave="true" dbName="Black Lily" respawnTime="24hour" respawnRandom="12hour" /> <!-- Black Lily - Elite -->
<npc id="25217" x="115966" y="10530" z="-5136" heading="46378" dbSave="true" dbName="Cursed Kele" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cursed Kele - Elite -->
<npc id="25220" x="114635" y="18179" z="-2896" heading="46378" dbSave="true" dbName="Death Lord Hallate" respawnTime="24hour" respawnRandom="12hour" /> <!-- Death Lord Hallate - High Elite -->
<npc id="25226" x="-27463" y="84255" z="-3464" heading="46378" dbSave="true" dbName="Roaring Lord Kastor" respawnTime="24hour" respawnRandom="12hour" /> <!-- Roaring Lord Kastor - Elite -->
<npc id="25230" x="-58461" y="75471" z="-3176" heading="46378" dbSave="true" dbName="Timak Priest Ragoth" respawnTime="24hour" respawnRandom="12hour" /> <!-- Priest Ragoth - Elite -->
<npc id="25241" x="91330" y="69898" z="-3464" heading="46378" dbSave="true" dbName="Hero Tamash" respawnTime="24hour" respawnRandom="12hour" /> <!-- Hero Tamash - High Elite -->
<npc id="25252" x="96835" y="109953" z="-3712" heading="46378" dbSave="true" dbName="Palibati Queen Themis" respawnTime="24hour" respawnRandom="12hour" /> <!-- Palibati Queen Themis - High Elite -->
<npc id="25255" x="85189" y="119998" z="-2944" heading="46378" dbSave="true" dbName="Tiphon" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tiphon - Elite -->
<npc id="25256" x="-54418" y="81791" z="-3480" heading="46378" dbSave="true" dbName="Taik High Prefect Arak" respawnTime="24hour" respawnRandom="12hour" /> <!-- High Prefect Arak - Elite -->
<npc id="25260" x="133853" y="-8115" z="-3384" heading="46378" dbSave="true" dbName="Iron Giant Totem" respawnTime="24hour" respawnRandom="12hour" /> <!-- Iron Giant Totem - High Elite -->
<npc id="25365" x="89837" y="67707" z="-3664" heading="46378" dbSave="true" dbName="Patriarch Kuroboros" respawnTime="24hour" respawnRandom="12hour" /> <!-- Patriarch Kuroboros - High Elite -->
<npc id="25366" x="82341" y="60738" z="-3496" heading="46378" dbSave="true" dbName="Kuroboros' High Priest" respawnTime="24hour" respawnRandom="12hour" /> <!-- Kuroboros' High Priest - High Elite -->
<npc id="25369" x="110571" y="11967" z="-5152" heading="46378" dbSave="true" dbName="Cursed Scavenger" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cursed Scavenger - Elite -->
<npc id="25385" x="114815" y="1744" z="-3720" heading="46378" dbSave="true" dbName="Evil Spirit Tempest" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Spirit Tempest - High Elite -->
<npc id="25398" x="94774" y="81548" z="-3680" heading="46378" dbSave="true" dbName="Gaze of Abyss" respawnTime="24hour" respawnRandom="12hour" /> <!-- Gaze of Abyss - Elite -->
<npc id="25420" x="66911" y="31145" z="-3720" heading="46378" dbSave="true" dbName="Orfen's Handmaiden" respawnTime="24hour" respawnRandom="12hour" /> <!-- Orfen's Handmaiden - Elite -->
<npc id="25431" x="158212" y="-13096" z="-2816" heading="46378" dbSave="true" dbName="Flamestone Golem" respawnTime="24hour" respawnRandom="12hour" /> <!-- Flamestone Golem - Elite -->
<npc id="25437" x="180790" y="37516" z="-4792" heading="46378" dbSave="true" dbName="Timak Orc Gosmos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Orc Gosmos - High Elite -->
<npc id="25441" x="81273" y="109691" z="-3056" heading="46378" dbSave="true" dbName="Cyrion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cyrion - Elite -->
<npc id="25444" x="112565" y="16055" z="-4376" heading="46378" dbSave="true" dbName="Enmity Ghost Ramdal" respawnTime="24hour" respawnRandom="12hour" /> <!-- Enmity Ghost Ramdal - High Elite -->
<npc id="25447" x="114660" y="13914" z="64" heading="46378" dbSave="true" dbName="Immortal Savior Mardil" respawnTime="24hour" respawnRandom="12hour" /> <!-- Immortal Savior Mardil - High Elite -->
<npc id="25450" x="113430" y="14836" z="9560" heading="46378" dbSave="true" dbName="Cherub Galaxia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cherub Galaxia - High Elite -->
<npc id="25463" x="-63757" y="82701" z="-3432" heading="46378" dbSave="true" dbName="Harit Guardian Garangky" respawnTime="24hour" respawnRandom="12hour" /> <!-- Guardian Garangky - Elite -->
<npc id="25478" x="91189" y="110550" z="-3808" heading="46378" dbSave="true" dbName="Shillien's Priest Hisilrome" respawnTime="24hour" respawnRandom="12hour" /> <!-- Shillien's Priest Hisilrome - High Elite -->
<npc id="25738" x="96002" y="27789" z="-3640" heading="46378" dbSave="true" dbName="Queen Ant Drone Priest" respawnTime="24hour" respawnRandom="12hour" /> <!-- Queen Ant Drone Priest - High Elite -->
<npc id="25739" x="108543" y="27676" z="-3480" heading="46378" dbSave="true" dbName="Angel Priest of Baium" respawnTime="24hour" respawnRandom="12hour" /> <!-- Angel Priest of Baium - High Elite -->
<npc id="25742" x="95285" y="20886" z="-3120" heading="46378" dbSave="true" dbName="Priest of Core Decar" respawnTime="24hour" respawnRandom="12hour" /> <!-- Priest of Core Decar - High Elite -->
<npc id="25743" x="102675" y="26799" z="-3376" heading="46378" dbSave="true" dbName="Orfen's Priest Lord Ipos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Orfen's Priest Lord Ipos - High Elite -->
<npc id="25745" x="180326" y="43505" z="-3840" heading="46378" dbSave="true" dbName="Orc Timak Darphen" respawnTime="24hour" respawnRandom="12hour" chaseRange="1500" /> <!-- Evil Orc Darphen - High Elite -->
<npc id="25746" x="170376" y="-19957" z="-3504" heading="46378" dbSave="true" dbName="Magikus" respawnTime="24hour" respawnRandom="12hour" /> <!-- Magikus - Elite -->
<npc id="25747" x="108414" y="80429" z="-2808" heading="46378" dbSave="true" dbName="Rael Mahum Radium" respawnTime="24hour" respawnRandom="12hour" /> <!-- Rael Mahum Radium - Elite -->
<npc id="25748" x="107567" y="86892" z="-3144" heading="46378" dbSave="true" dbName="Rael Mahum Supercium" respawnTime="24hour" respawnRandom="12hour" /> <!-- Rael Mahum Supercium - Elite -->
<npc id="25749" x="133071" y="6662" z="-4344" heading="46378" dbSave="true" dbName="Tayga Feron King" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tayga Feron King - Elite -->
<npc id="25750" x="138820" y="3347" z="-4520" heading="46378" dbSave="true" dbName="Tayga Marga Shaman" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tayga Marga Shaman - Elite -->
<npc id="25751" x="135274" y="11909" z="-4144" heading="46378" dbSave="true" dbName="Tayga Septon Champion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tayga Septon Champion - Elite -->
<npc id="25754" x="155519" y="-20579" z="-1776" heading="46378" dbSave="true" dbName="Flamestone Giant" respawnTime="24hour" respawnRandom="12hour" /> <!-- Flamestone Giant - Elite -->
<npc id="25755" x="129750" y="-9334" z="-3600" heading="46378" dbSave="true" dbName="Gross Salamander" respawnTime="24hour" respawnRandom="12hour" /> <!-- Flame Salamander - High Elite -->
<npc id="25756" x="128767" y="-11501" z="-3664" heading="46378" dbSave="true" dbName="Gross Dre Vanul" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fire Dre Vanul - High Elite -->
<npc id="25757" x="80223" y="85605" z="-3528" heading="46378" dbSave="true" dbName="Grousse" respawnTime="24hour" respawnRandom="12hour" /> <!-- Grousse - Elite -->
<npc id="25758" x="112793" y="-987" z="-3904" heading="46378" dbSave="true" dbName="Fiend Goblier" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fiend Goblier - High Elite -->
<npc id="25759" x="119294" y="-1929" z="-3720" heading="46378" dbSave="true" dbName="Fiend Cherkia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fiend Cherkia - High Elite -->
<npc id="25760" x="123636" y="-4094" z="-3304" heading="46378" dbSave="true" dbName="Fiend Harthemon" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Fiend Harthemon - High Elite -->
<npc id="25761" x="120924" y="-7493" z="-3152" heading="46378" dbSave="true" dbName="Fiend Sarboth" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Fiend Sarboth - High Elite -->
<npc id="25762" x="119518" y="-2860" z="-3760" heading="46378" dbSave="true" dbName="Demon Bedukel" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Demon Bedukel - High Elite -->
<npc id="25763" x="115975" y="-5424" z="-3416" heading="46378" dbSave="true" dbName="Bloody Witch Rumilla" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Bloody Witch Rumilla - High Elite -->
<npc id="25766" x="-47586" y="141472" z="-2920" heading="46378" dbSave="true" dbName="Monster Minotaur" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Monster Minotaur - High Elite -->
<npc id="25767" x="-51042" y="135662" z="-2920" heading="46378" dbSave="true" dbName="Monster Bulleroth" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Monster Bulleroth - High Elite -->
<npc id="25768" x="176307" y="40572" z="-3824" heading="46378" dbSave="true" dbName="Dorcaus" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Dorcaus - High Elite -->
<npc id="25769" x="163749" y="42252" z="-3352" heading="46378" dbSave="true" dbName="Kerfaus" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Kerfaus - High Elite -->
<npc id="25770" x="168081" y="46863" z="-3672" heading="46378" dbSave="true" dbName="Milinaus" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Milinaus - High Elite -->
<npc id="25772" x="185073" y="36926" z="-4176" heading="46378" dbSave="true" dbName="Evil Orc Zetahl" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Orc Zetahl - High Elite -->
<npc id="25773" x="-89953" y="105548" z="-3576" heading="46378" dbSave="true" dbName="Evil Orc Tabris" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Orc Tabris - High Elite -->
<npc id="25774" x="166837" y="39190" z="-3616" heading="46378" dbSave="true" dbName="Evil Orc Ravolas" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Orc Ravolas - High Elite -->
<npc id="25775" x="-94488" y="109525" z="-3784" heading="46378" dbSave="true" dbName="Evil Orc Dephracor" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Evil Orc Dephracor - High Elite -->
<npc id="25776" x="174507" y="42098" z="-4872" heading="46378" dbSave="true" dbName="Amden Orc Turahot" respawnTime="24hour" respawnRandom="12hour" chaseRange="2000" /> <!-- Evil Orc Turahot - High Elite -->
<npc id="25777" x="178757" y="41533" z="-3688" heading="46378" dbSave="true" dbName="Amden Orc Turation" respawnTime="24hour" respawnRandom="12hour" chaseRange="2000" /> <!-- Evil Orc Turation - High Elite -->
<npc id="25780" x="145002" y="86608" z="-3600" heading="46378" dbSave="true" dbName="Varbasion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varbasion - High Elite -->
<npc id="25781" x="147320" y="83986" z="-3624" heading="46378" dbSave="true" dbName="Varmoni" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varmoni - High Elite -->
<npc id="25782" x="151096" y="83959" z="-3432" heading="46378" dbSave="true" dbName="Overlord Muscel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Overlord Muscel - High Elite -->
<npc id="25783" x="148726" y="82720" z="-3264" heading="46378" dbSave="true" dbName="Bathus Elbogen" respawnTime="24hour" respawnRandom="12hour" /> <!-- Bathus Elbogen - High Elite -->
<npc id="25784" x="154506" y="81675" z="-3160" heading="46378" dbSave="true" dbName="Daumen Kshana" respawnTime="24hour" respawnRandom="12hour" /> <!-- Daumen Kshana - High Elite -->
<npc id="25909" x="-89105" y="104554" z="-3312" heading="46378" dbSave="true" dbName="Carcs" respawnTime="24hour" respawnRandom="12hour" /> <!-- Carcs - Elite -->
<npc id="25910" x="-89635" y="115127" z="-3400" heading="46378" dbSave="true" dbName="Drak" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Drak - Elite -->
<npc id="25911" x="-92358" y="119334" z="-3488" heading="46378" dbSave="true" dbName="Ourick" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Ourick - Elite -->
<npc id="25925" x="-60496" y="137347" z="-2392" heading="46378" dbSave="true" dbName="Jisra" respawnTime="24hour" respawnRandom="12hour" /> <!-- Jisra - Elite -->
<npc id="25926" x="-58974" y="135294" z="-2392" heading="46378" dbSave="true" dbName="Kuka" respawnTime="24hour" respawnRandom="12hour" /> <!-- Kuka - Jisra's Prefect -->
<npc id="25932" x="127644" y="114568" z="-3520" heading="46378" dbSave="true" dbName="Katuba" respawnTime="24hour" respawnRandom="12hour" /> <!-- Katuba - High Elite -->
<npc id="25004" x="-61466" y="79786" z="-3488" heading="46378" dbSave="true" dbName="Turek Mercenary Captain" respawnPattern="0 1-23/2 * * *" />
<npc id="25026" x="137772" y="78637" z="-3608" heading="46378" dbSave="true" dbName="Atis" respawnPattern="0 1-23/2 * * *" />
<npc id="25044" x="165646" y="-20861" z="-2912" heading="46378" dbSave="true" dbName="Barion" respawnPattern="0 1-23/2 * * *" />
<npc id="25051" x="166972" y="-21210" z="-3416" heading="46378" dbSave="true" dbName="Rahha" respawnPattern="0 1-23/2 * * *" />
<npc id="25057" x="94373" y="83153" z="-3560" heading="46378" dbSave="true" dbName="Beacon of Blue Sky" respawnPattern="0 1-23/2 * * *" />
<npc id="25095" x="168148" y="-20504" z="-3680" heading="46378" dbSave="true" dbName="Renoa" respawnPattern="0 1-23/2 * * *" />
<npc id="25099" x="167711" y="-19190" z="-3072" heading="46378" dbSave="true" dbName="Repiro" respawnPattern="0 1-23/2 * * *" />
<npc id="25102" x="-23702" y="74952" z="-3672" heading="46378" dbSave="true" dbName="Shacram" respawnPattern="0 1-23/2 * * *" />
<npc id="25122" x="-27820" y="79612" z="-3576" heading="46378" dbSave="true" dbName="Refugee Applicant Leo" respawnPattern="0 1-23/2 * * *" />
<npc id="25146" x="119277" y="20219" z="-5168" heading="46378" dbSave="true" dbName="Cursed Bifrons" respawnPattern="0 1-23/2 * * *" />
<npc id="25152" x="119877" y="13565" z="-5184" heading="46378" dbSave="true" dbName="Cursed Shadir" respawnPattern="0 1-23/2 * * *" />
<npc id="25155" x="135981" y="79736" z="-3576" heading="46378" dbSave="true" dbName="Selu" respawnPattern="0 1-23/2 * * *" />
<npc id="25159" x="85179" y="87669" z="-3152" heading="46378" dbSave="true" dbName="Paniel the Unicorn" respawnPattern="0 1-23/2 * * *" />
<npc id="25163" x="87669" y="108230" z="-3088" heading="46378" dbSave="true" dbName="Roaring Skylancer" respawnPattern="0 1-23/2 * * *" />
<npc id="25176" x="92127" y="119736" z="-2912" heading="46378" dbSave="true" dbName="Black Lily" respawnPattern="0 1-23/2 * * *" />
<npc id="25217" x="115966" y="10530" z="-5136" heading="46378" dbSave="true" dbName="Cursed Kele" respawnPattern="0 1-23/2 * * *" />
<npc id="25226" x="-27463" y="84255" z="-3464" heading="46378" dbSave="true" dbName="Roaring Lord Kastor" respawnPattern="0 1-23/2 * * *" />
<npc id="25230" x="-58461" y="75471" z="-3176" heading="46378" dbSave="true" dbName="Timak Priest Ragoth" respawnPattern="0 1-23/2 * * *" />
<npc id="25255" x="85189" y="119998" z="-2944" heading="46378" dbSave="true" dbName="Tiphon" respawnPattern="0 1-23/2 * * *" />
<npc id="25256" x="-54418" y="81791" z="-3480" heading="46378" dbSave="true" dbName="Taik High Prefect Arak" respawnPattern="0 1-23/2 * * *" />
<npc id="25369" x="110571" y="11967" z="-5152" heading="46378" dbSave="true" dbName="Cursed Scavenger" respawnPattern="0 1-23/2 * * *" />
<npc id="25398" x="94774" y="81548" z="-3680" heading="46378" dbSave="true" dbName="Gaze of Abyss" respawnPattern="0 1-23/2 * * *" />
<npc id="25420" x="66911" y="31145" z="-3720" heading="46378" dbSave="true" dbName="Orfen's Handmaiden" respawnPattern="0 1-23/2 * * *" />
<npc id="25431" x="158212" y="-13096" z="-2816" heading="46378" dbSave="true" dbName="Flamestone Golem" respawnPattern="0 1-23/2 * * *" />
<npc id="25441" x="81273" y="109691" z="-3056" heading="46378" dbSave="true" dbName="Cyrion" respawnPattern="0 1-23/2 * * *" />
<npc id="25463" x="-63757" y="82701" z="-3432" heading="46378" dbSave="true" dbName="Harit Guardian Garangky" respawnPattern="0 1-23/2 * * *" />
<npc id="25746" x="170376" y="-19957" z="-3504" heading="46378" dbSave="true" dbName="Magikus" respawnPattern="0 1-23/2 * * *" />
<npc id="25747" x="108414" y="80429" z="-2808" heading="46378" dbSave="true" dbName="Rael Mahum Radium" respawnPattern="0 1-23/2 * * *" />
<npc id="25748" x="107567" y="86892" z="-3144" heading="46378" dbSave="true" dbName="Rael Mahum Supercium" respawnPattern="0 1-23/2 * * *" />
<npc id="25749" x="133071" y="6662" z="-4344" heading="46378" dbSave="true" dbName="Tayga Feron King" respawnPattern="0 1-23/2 * * *" />
<npc id="25750" x="138820" y="3347" z="-4520" heading="46378" dbSave="true" dbName="Tayga Marga Shaman" respawnPattern="0 1-23/2 * * *" />
<npc id="25751" x="135274" y="11909" z="-4144" heading="46378" dbSave="true" dbName="Tayga Septon Champion" respawnPattern="0 1-23/2 * * *" />
<npc id="25754" x="155519" y="-20579" z="-1776" heading="46378" dbSave="true" dbName="Flamestone Giant" respawnPattern="0 1-23/2 * * *" />
<npc id="25757" x="80223" y="85605" z="-3528" heading="46378" dbSave="true" dbName="Grousse" respawnPattern="0 1-23/2 * * *" />
<npc id="25909" x="-89105" y="104554" z="-3312" heading="46378" dbSave="true" dbName="Carcs" respawnPattern="0 1-23/2 * * *" />
<npc id="25910" x="-89635" y="115127" z="-3400" heading="46378" dbSave="true" dbName="Drak" respawnPattern="0 1-23/2 * * *" />
<npc id="25911" x="-92358" y="119334" z="-3488" heading="46378" dbSave="true" dbName="Ourick" respawnPattern="0 1-23/2 * * *" />
<npc id="25925" x="-60496" y="137347" z="-2392" heading="46378" dbSave="true" dbName="Jisra" respawnPattern="0 1-23/2 * * *" />
<npc id="25926" x="-58974" y="135294" z="-2392" heading="46378" dbSave="true" dbName="Kuka" respawnPattern="0 1-23/2 * * *" />
</group>
<group name="High Elites">
<npc id="25054" x="113489" y="16586" z="3960" heading="46378" dbSave="true" dbName="Kernon" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25092" x="115968" y="16003" z="1944" heading="46378" dbSave="true" dbName="Korim" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25103" x="86092" y="67675" z="-3328" heading="46378" dbSave="true" dbName="Wizard Isirr" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25125" x="135519" y="-17294" z="-2576" heading="46378" dbSave="true" dbName="Fierce Tiger King Angel" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25126" x="113058" y="15603" z="5984" heading="46378" dbSave="true" dbName="Longhorn Golkonda" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25127" x="89085" y="61867" z="-3688" heading="46378" dbSave="true" dbName="Langk Matriarch Rashkos" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25143" x="114243" y="14482" z="7992" heading="46378" dbSave="true" dbName="Fire of Wrath Shuriel" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25158" x="128048" y="-5376" z="-3280" heading="46378" dbSave="true" dbName="King Tarlk" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25173" x="133703" y="-14093" z="-2656" heading="46378" dbSave="true" dbName="Tiger King Karuta" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25220" x="114635" y="18179" z="-2896" heading="46378" dbSave="true" dbName="Death Lord Hallate" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25241" x="91330" y="69898" z="-3464" heading="46378" dbSave="true" dbName="Hero Tamash" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25252" x="96835" y="109953" z="-3712" heading="46378" dbSave="true" dbName="Palibati Queen Themis" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25260" x="133853" y="-8115" z="-3384" heading="46378" dbSave="true" dbName="Iron Giant Totem" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25365" x="89837" y="67707" z="-3664" heading="46378" dbSave="true" dbName="Patriarch Kuroboros" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25366" x="82341" y="60738" z="-3496" heading="46378" dbSave="true" dbName="Kuroboros' High Priest" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25385" x="114815" y="1744" z="-3720" heading="46378" dbSave="true" dbName="Evil Spirit Tempest" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25437" x="180790" y="37516" z="-4792" heading="46378" dbSave="true" dbName="Timak Orc Gosmos" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25444" x="112565" y="16055" z="-4376" heading="46378" dbSave="true" dbName="Enmity Ghost Ramdal" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25447" x="114660" y="13914" z="64" heading="46378" dbSave="true" dbName="Immortal Savior Mardil" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25450" x="113430" y="14836" z="9560" heading="46378" dbSave="true" dbName="Cherub Galaxia" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25478" x="91189" y="110550" z="-3808" heading="46378" dbSave="true" dbName="Shillien's Priest Hisilrome" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25738" x="96002" y="27789" z="-3640" heading="46378" dbSave="true" dbName="Queen Ant Drone Priest" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25739" x="108543" y="27676" z="-3480" heading="46378" dbSave="true" dbName="Angel Priest of Baium" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25742" x="95285" y="20886" z="-3120" heading="46378" dbSave="true" dbName="Priest of Core Decar" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25743" x="102675" y="26799" z="-3376" heading="46378" dbSave="true" dbName="Orfen's Priest Lord Ipos" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25745" x="180326" y="43505" z="-3840" heading="46378" dbSave="true" dbName="Orc Timak Darphen" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25755" x="129750" y="-9334" z="-3600" heading="46378" dbSave="true" dbName="Gross Salamander" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25756" x="128767" y="-11501" z="-3664" heading="46378" dbSave="true" dbName="Gross Dre Vanul" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25758" x="112793" y="-987" z="-3904" heading="46378" dbSave="true" dbName="Fiend Goblier" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25759" x="119294" y="-1929" z="-3720" heading="46378" dbSave="true" dbName="Fiend Cherkia" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25760" x="123636" y="-4094" z="-3304" heading="46378" dbSave="true" dbName="Fiend Harthemon" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25761" x="120924" y="-7493" z="-3152" heading="46378" dbSave="true" dbName="Fiend Sarboth" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25762" x="119518" y="-2860" z="-3760" heading="46378" dbSave="true" dbName="Demon Bedukel" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25763" x="115975" y="-5424" z="-3416" heading="46378" dbSave="true" dbName="Bloody Witch Rumilla" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25766" x="-47586" y="141472" z="-2920" heading="46378" dbSave="true" dbName="Monster Minotaur" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25767" x="-51042" y="135662" z="-2920" heading="46378" dbSave="true" dbName="Monster Bulleroth" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25768" x="176307" y="40572" z="-3824" heading="46378" dbSave="true" dbName="Dorcaus" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25769" x="163749" y="42252" z="-3352" heading="46378" dbSave="true" dbName="Kerfaus" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25770" x="168081" y="46863" z="-3672" heading="46378" dbSave="true" dbName="Milinaus" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25772" x="185073" y="36926" z="-4176" heading="46378" dbSave="true" dbName="Evil Orc Zetahl" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25773" x="-89953" y="105548" z="-3576" heading="46378" dbSave="true" dbName="Evil Orc Tabris" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25774" x="166837" y="39190" z="-3616" heading="46378" dbSave="true" dbName="Evil Orc Ravolas" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25775" x="-94488" y="109525" z="-3784" heading="46378" dbSave="true" dbName="Evil Orc Dephracor" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25776" x="174507" y="42098" z="-4872" heading="46378" dbSave="true" dbName="Amden Orc Turahot" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25777" x="178757" y="41533" z="-3688" heading="46378" dbSave="true" dbName="Amden Orc Turation" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25780" x="145002" y="86608" z="-3600" heading="46378" dbSave="true" dbName="Varbasion" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25781" x="147320" y="83986" z="-3624" heading="46378" dbSave="true" dbName="Varmoni" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25782" x="151096" y="83959" z="-3432" heading="46378" dbSave="true" dbName="Overlord Muscel" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25783" x="148726" y="82720" z="-3264" heading="46378" dbSave="true" dbName="Bathus Elbogen" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25784" x="154506" y="81675" z="-3160" heading="46378" dbSave="true" dbName="Daumen Kshana" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25932" x="127644" y="114568" z="-3520" heading="46378" dbSave="true" dbName="Katuba" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25948" x="26625" y="183245" z="-3415" heading="5000" dbSave="true" dbName="Beoro" respawnTime="11hour" respawnRandom="0hour" />
</group>
<group name="Epic">
<npc id="25283" x="185059" y="-9610" z="-5488" heading="15640" dbSave="true" dbName="Lilith" respawnPattern="0 19 * * 1 | 0 19 * * 4" />
<npc id="25286" x="-6675" y="18505" z="-5488" heading="16550" dbSave="true" dbName="Anakim" respawnPattern="0 19 * * 2 | 0 19 * * 5" />
</group>
</spawn>
</list>
</list>

View File

@ -1,33 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<instance id="200" maxWorlds="80" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
<time duration="120" empty="0" />
<removeBuffs type="ALL" />
<locations>
<enter type="FIXED">
<location x="-6704" y="19121" z="-5193" />
</enter>
<exit type="ORIGIN" />
</locations>
<conditions>
<condition type="Party" />
<condition type="CommandChannel" />
<condition type="CommandChannelLeader" />
<condition type="GroupMin">
<param name="limit" value="90" />
</condition>
<condition type="Level">
<param name="min" value="76" />
</condition>
<condition type="Distance" />
<condition type="Reenter" />
</conditions>
<!-- <reenter apply="ON_ENTER">
<reset day="TUESDAY" hour="9" minute="00" />
<reset day="FRIDAY" hour="9" minute="00" />
</reenter> -->
<spawnlist>
<group>
<npc id="25286" x="-6664" y="18505" z="-5493" heading="48103" /> <!-- Anakim -->
</group>
</spawnlist>
</instance>

View File

@ -1,33 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<instance id="199" maxWorlds="80" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
<time duration="120" empty="10" />
<removeBuffs type="ALL" />
<locations>
<enter type="FIXED">
<location x="185657" y="-10112" z="-5496" />
</enter>
<exit type="ORIGIN" />
</locations>
<conditions>
<condition type="Party" />
<condition type="CommandChannel" />
<condition type="CommandChannelLeader" />
<condition type="GroupMin">
<param name="limit" value="90" />
</condition>
<condition type="Level">
<param name="min" value="76" />
</condition>
<condition type="Distance" />
<condition type="Reenter" />
</conditions>
<!-- <reenter apply="ON_ENTER">
<reset day="TUESDAY" hour="9" minute="00" />
<reset day="FRIDAY" hour="9" minute="00" />
</reenter> -->
<spawnlist>
<group>
<npc id="25283" x="185067" y="-9616" z="-5493" heading="48103" /> <!-- Lilith -->
</group>
</spawnlist>
</instance>

View File

@ -1,252 +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 instances.SevenSignsRBs;
import java.util.List;
import org.l2jmobius.gameserver.instancemanager.ZoneManager;
import org.l2jmobius.gameserver.model.Location;
import org.l2jmobius.gameserver.model.Party;
import org.l2jmobius.gameserver.model.actor.Creature;
import org.l2jmobius.gameserver.model.actor.Npc;
import org.l2jmobius.gameserver.model.actor.Player;
import org.l2jmobius.gameserver.model.instancezone.Instance;
import org.l2jmobius.gameserver.model.zone.type.NoRestartZone;
import instances.AbstractInstance;
/**
* @author RobikBobik
* @NOTE: Retail like work
* @TODO: When one RB die, the second will be invul for 5 minutes.
*/
public class SevenSignsRBs extends AbstractInstance
{
// NPCs
private static final int ANAKIM_GATEKEEPER_SPIRIT = 31089;
private static final int LILITH_GATEKEEPER_SPIRIT = 31087;
private static final int GATEKEEPER_SPIRIT_OUT_TELEPORT = 31088;
private static final int ANAKIM = 25286;
private static final int LILITH = 25283;
// Misc
private static final int ANAKIM_TEMPLATE_ID = 200;
private static final int LILITH_TEMPLATE_ID = 199;
private static final int MAX_PLAYERS_IN_ZONE = 300;
private static final NoRestartZone ANAKIM_ZONE = ZoneManager.getInstance().getZoneById(70052, NoRestartZone.class);
private static final NoRestartZone LILITH_ZONE = ZoneManager.getInstance().getZoneById(70053, NoRestartZone.class);
// TELEPORTS
private static final Location[] TELEPORT_TO_DARK_ELVEN =
{
new Location(12168, 17149, -4575),
new Location(11688, 18219, -4585),
new Location(10502, 17112, -4588),
new Location(11169, 15922, -4585),
};
// TODO: When teleport from instance done. Enable it
/*
* private static final Location[] TELEPORT_TO_ADEN = { new Location(148053, 26935, -2206), new Location(148053, 28017, -2269), new Location(146558, 28017, -2269), new Location(146558, 26935, -2206), };
*/
public SevenSignsRBs()
{
super(ANAKIM_TEMPLATE_ID, LILITH_TEMPLATE_ID);
addStartNpc(ANAKIM_GATEKEEPER_SPIRIT, LILITH_GATEKEEPER_SPIRIT);
addTalkId(ANAKIM_GATEKEEPER_SPIRIT, LILITH_GATEKEEPER_SPIRIT, GATEKEEPER_SPIRIT_OUT_TELEPORT);
addKillId(ANAKIM, LILITH);
addAttackId(ANAKIM, LILITH);
addInstanceLeaveId(ANAKIM_TEMPLATE_ID, LILITH_TEMPLATE_ID);
}
@Override
public String onAdvEvent(String event, Npc npc, Player player)
{
switch (event)
{
case "ANAKIM_ENTER":
{
if (player.isInParty())
{
final Party party = player.getParty();
final boolean isInCC = party.isInCommandChannel();
final List<Player> members = (isInCC) ? party.getCommandChannel().getMembers() : party.getMembers();
if (members.size() > (MAX_PLAYERS_IN_ZONE - ANAKIM_ZONE.getPlayersInside().size()))
{
player.sendMessage("Lilith Sanctum reached 300 players. You cannot enter now.");
}
else
{
for (Player member : members)
{
if (!member.isInsideRadius3D(npc, 1000))
{
player.sendMessage("Player " + member.getName() + " must go closer to Gatekeeper Spirit.");
}
enterInstance(member, npc, ANAKIM_TEMPLATE_ID);
}
}
}
else if (player.isGM())
{
enterInstance(player, npc, ANAKIM_TEMPLATE_ID);
player.sendMessage("SYS: You have entered as GM/Admin to Anakim Instance");
}
else
{
if (!player.isInsideRadius3D(npc, 1000))
{
player.sendMessage("You must go closer to Gatekeeper Spirit.");
}
enterInstance(player, npc, ANAKIM_TEMPLATE_ID);
}
break;
}
case "LILITH_ENTER":
{
if (player.isInParty())
{
final Party party = player.getParty();
final boolean isInCC = party.isInCommandChannel();
final List<Player> members = (isInCC) ? party.getCommandChannel().getMembers() : party.getMembers();
if (members.size() > (MAX_PLAYERS_IN_ZONE - LILITH_ZONE.getPlayersInside().size()))
{
player.sendMessage("Lilith Sanctum reached 300 players. You cannot enter now.");
}
else
{
for (Player member : members)
{
if (!member.isInsideRadius3D(npc, 1000))
{
player.sendMessage("Player " + member.getName() + " must go closer to Gatekeeper Spirit.");
}
enterInstance(member, npc, LILITH_TEMPLATE_ID);
}
}
}
else if (player.isGM())
{
enterInstance(player, npc, LILITH_TEMPLATE_ID);
player.sendMessage("SYS: You have entered as GM/Admin to Anakim Instance");
}
else
{
if (!player.isInsideRadius3D(npc, 1000))
{
player.sendMessage("You must go closer to Gatekeeper Spirit.");
}
enterInstance(player, npc, LILITH_TEMPLATE_ID);
}
break;
}
case "REMOVE_PLAYERS_FROM_ZONE_ANAKIM":
{
for (Creature charInside : ANAKIM_ZONE.getCharactersInside())
{
if ((charInside != null) && charInside.isPlayer())
{
charInside.teleToLocation(-20185 + getRandom(50), 13476 + getRandom(50), -4901);
}
}
break;
}
case "REMOVE_PLAYERS_FROM_ZONE_LILITH":
{
for (Creature charInside : LILITH_ZONE.getCharactersInside())
{
if ((charInside != null) && charInside.isPlayer())
{
charInside.teleToLocation(171346 + getRandom(50), -17599 + getRandom(50), -4901);
}
}
break;
}
case "TELEPORT_OUT":
{
// TODO: Different teleport location from instance.
// switch (player.getInstanceId())
// {
// case ANAKIM_TEMPLATE_ID:
// {
// final Location destination = TELEPORT_TO_DARK_ELVEN[getRandom(TELEPORT_TO_DARK_ELVEN.length)];
// player.teleToLocation(destination.getX() + getRandom(100), destination.getY() + getRandom(100), destination.getZ());
// break;
// }
// case LILITH_TEMPLATE_ID:
// {
// final Location destination = TELEPORT_TO_ADEN[getRandom(TELEPORT_TO_ADEN.length)];
// player.teleToLocation(destination.getX() + getRandom(100), destination.getY() + getRandom(100), destination.getZ());
// break;
// }
// }
final Location destination = TELEPORT_TO_DARK_ELVEN[getRandom(TELEPORT_TO_DARK_ELVEN.length)];
player.teleToLocation(destination.getX() + getRandom(100), destination.getY() + getRandom(100), destination.getZ());
break;
}
case "ANAKIM_DEATH_CAST_LILITH_INVUL":
{
// TODO: When one RB die, the second will be invul for 5 minutes.
break;
}
case "LILITH_DEATH_CAST_ANAKIM_INVUL":
{
// TODO: When one RB die, the second will be invul for 5 minutes.
break;
}
}
return null;
}
@Override
public String onKill(Npc npc, Player player, boolean isSummon)
{
switch (npc.getId())
{
case ANAKIM:
{
// TODO:
// startQuestTimer("ANAKIM_DEATH_CAST_LILITH_INVUL", 1000, null, null);
startQuestTimer("REMOVE_PLAYERS_FROM_ZONE_ANAKIM", 600000, null, player);
addSpawn(GATEKEEPER_SPIRIT_OUT_TELEPORT, -6664, 18501, -5495, 0, false, 600000, false, npc.getInstanceId());
break;
}
case LILITH:
{
// TODO:
// startQuestTimer("LILITH_DEATH_CAST_ANAKIM_INVUL", 1000, null, null);
startQuestTimer("REMOVE_PLAYERS_FROM_ZONE_LILITH", 600000, null, player);
addSpawn(GATEKEEPER_SPIRIT_OUT_TELEPORT, 185062, -9612, -5493, 0, false, 600000, false, npc.getInstanceId());
break;
}
}
final Instance world = npc.getInstanceWorld();
if (world != null)
{
world.finishInstance();
}
return super.onKill(npc, player, isSummon);
}
public static void main(String[] args)
{
new SevenSignsRBs();
}
}

View File

@ -1,96 +1,103 @@
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/spawns.xsd">
<spawn name="Raidbosses">
<group>
<npc id="25004" x="-61466" y="79786" z="-3488" heading="46378" dbSave="true" dbName="Turek Mercenary Captain" respawnTime="24hour" respawnRandom="12hour" /> <!-- Turek Mercenary Captain - Elite -->
<npc id="25026" x="137772" y="78637" z="-3608" heading="46378" dbSave="true" dbName="Atis" respawnTime="24hour" respawnRandom="12hour" /> <!-- Atis - Elite -->
<npc id="25044" x="165646" y="-20861" z="-2912" heading="46378" dbSave="true" dbName="Barion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Barion - Elite -->
<npc id="25051" x="166972" y="-21210" z="-3416" heading="46378" dbSave="true" dbName="Rahha" respawnTime="24hour" respawnRandom="12hour" /> <!-- Rahha - Elite -->
<npc id="25054" x="113489" y="16586" z="3960" heading="46378" dbSave="true" dbName="Kernon" respawnTime="24hour" respawnRandom="12hour" /> <!-- Kernon - High Elite -->
<npc id="25057" x="94373" y="83153" z="-3560" heading="46378" dbSave="true" dbName="Beacon of Blue Sky" respawnTime="24hour" respawnRandom="12hour" /> <!-- Beacon of Blue Sky - Elite -->
<npc id="25092" x="115968" y="16003" z="1944" heading="46378" dbSave="true" dbName="Korim" respawnTime="24hour" respawnRandom="12hour" /> <!-- Korim - High Elite -->
<npc id="25095" x="168148" y="-20504" z="-3680" heading="46378" dbSave="true" dbName="Renoa" respawnTime="24hour" respawnRandom="12hour" /> <!-- Renoa - Elite -->
<npc id="25099" x="167711" y="-19190" z="-3072" heading="46378" dbSave="true" dbName="Repiro" respawnTime="24hour" respawnRandom="12hour" /> <!-- Repiro - Elite -->
<npc id="25102" x="-23702" y="74952" z="-3672" heading="46378" dbSave="true" dbName="Shacram" respawnTime="24hour" respawnRandom="12hour" /> <!-- Shacram - Elite -->
<npc id="25103" x="86092" y="67675" z="-3328" heading="46378" dbSave="true" dbName="Wizard Isirr" respawnTime="24hour" respawnRandom="12hour" /> <!-- Wizard Isirr - High Elite -->
<npc id="25122" x="-27820" y="79612" z="-3576" heading="46378" dbSave="true" dbName="Refugee Applicant Leo" respawnTime="24hour" respawnRandom="12hour" /> <!-- Refugee Applicant Leo - Elite -->
<npc id="25125" x="135519" y="-17294" z="-2576" heading="46378" dbSave="true" dbName="Fierce Tiger King Angel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tiger King Kata - High Elite -->
<npc id="25126" x="113058" y="15603" z="5984" heading="46378" dbSave="true" dbName="Longhorn Golkonda" respawnTime="24hour" respawnRandom="12hour" /> <!-- Longhorn Golkonda - High Elite -->
<npc id="25127" x="89085" y="61867" z="-3688" heading="46378" dbSave="true" dbName="Langk Matriarch Rashkos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Chief Rashkos - High Elite -->
<npc id="25143" x="114243" y="14482" z="7992" heading="46378" dbSave="true" dbName="Fire of Wrath Shuriel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fire of Wrath Shuriel - High Elite -->
<npc id="25146" x="119277" y="20219" z="-5168" heading="46378" dbSave="true" dbName="Cursed Bifrons" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cursed Bifrons - Elite -->
<npc id="25152" x="119877" y="13565" z="-5184" heading="46378" dbSave="true" dbName="Cursed Shadir" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cursed Shadir - Elite -->
<npc id="25155" x="135981" y="79736" z="-3576" heading="46378" dbSave="true" dbName="Selu" respawnTime="24hour" respawnRandom="12hour" /> <!-- Selu - Elite -->
<npc id="25158" x="128048" y="-5376" z="-3280" heading="46378" dbSave="true" dbName="King Tarlk" respawnTime="24hour" respawnRandom="12hour" /> <!-- King Tarlk - High Elite -->
<npc id="25159" x="85179" y="87669" z="-3152" heading="46378" dbSave="true" dbName="Paniel the Unicorn" respawnTime="24hour" respawnRandom="12hour" /> <!-- Paniel the Unicorn - Elite -->
<npc id="25163" x="87669" y="108230" z="-3088" heading="46378" dbSave="true" dbName="Roaring Skylancer" respawnTime="24hour" respawnRandom="12hour" /> <!-- Roaring Skylancer - Elite -->
<npc id="25173" x="133703" y="-14093" z="-2656" heading="46378" dbSave="true" dbName="Tiger King Karuta" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tiger King Karu - High Elite -->
<npc id="25176" x="92127" y="119736" z="-2912" heading="46378" dbSave="true" dbName="Black Lily" respawnTime="24hour" respawnRandom="12hour" /> <!-- Black Lily - Elite -->
<npc id="25217" x="115966" y="10530" z="-5136" heading="46378" dbSave="true" dbName="Cursed Kele" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cursed Kele - Elite -->
<npc id="25220" x="114635" y="18179" z="-2896" heading="46378" dbSave="true" dbName="Death Lord Hallate" respawnTime="24hour" respawnRandom="12hour" /> <!-- Death Lord Hallate - High Elite -->
<npc id="25226" x="-27463" y="84255" z="-3464" heading="46378" dbSave="true" dbName="Roaring Lord Kastor" respawnTime="24hour" respawnRandom="12hour" /> <!-- Roaring Lord Kastor - Elite -->
<npc id="25230" x="-58461" y="75471" z="-3176" heading="46378" dbSave="true" dbName="Timak Priest Ragoth" respawnTime="24hour" respawnRandom="12hour" /> <!-- Priest Ragoth - Elite -->
<npc id="25241" x="91330" y="69898" z="-3464" heading="46378" dbSave="true" dbName="Hero Tamash" respawnTime="24hour" respawnRandom="12hour" /> <!-- Hero Tamash - High Elite -->
<npc id="25252" x="96835" y="109953" z="-3712" heading="46378" dbSave="true" dbName="Palibati Queen Themis" respawnTime="24hour" respawnRandom="12hour" /> <!-- Palibati Queen Themis - High Elite -->
<npc id="25255" x="85189" y="119998" z="-2944" heading="46378" dbSave="true" dbName="Tiphon" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tiphon - Elite -->
<npc id="25256" x="-54418" y="81791" z="-3480" heading="46378" dbSave="true" dbName="Taik High Prefect Arak" respawnTime="24hour" respawnRandom="12hour" /> <!-- High Prefect Arak - Elite -->
<npc id="25260" x="133853" y="-8115" z="-3384" heading="46378" dbSave="true" dbName="Iron Giant Totem" respawnTime="24hour" respawnRandom="12hour" /> <!-- Iron Giant Totem - High Elite -->
<npc id="25365" x="89837" y="67707" z="-3664" heading="46378" dbSave="true" dbName="Patriarch Kuroboros" respawnTime="24hour" respawnRandom="12hour" /> <!-- Patriarch Kuroboros - High Elite -->
<npc id="25366" x="82341" y="60738" z="-3496" heading="46378" dbSave="true" dbName="Kuroboros' High Priest" respawnTime="24hour" respawnRandom="12hour" /> <!-- Kuroboros' High Priest - High Elite -->
<npc id="25369" x="110571" y="11967" z="-5152" heading="46378" dbSave="true" dbName="Cursed Scavenger" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cursed Scavenger - Elite -->
<npc id="25385" x="114815" y="1744" z="-3720" heading="46378" dbSave="true" dbName="Evil Spirit Tempest" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Spirit Tempest - High Elite -->
<npc id="25398" x="94774" y="81548" z="-3680" heading="46378" dbSave="true" dbName="Gaze of Abyss" respawnTime="24hour" respawnRandom="12hour" /> <!-- Gaze of Abyss - Elite -->
<npc id="25420" x="66911" y="31145" z="-3720" heading="46378" dbSave="true" dbName="Orfen's Handmaiden" respawnTime="24hour" respawnRandom="12hour" /> <!-- Orfen's Handmaiden - Elite -->
<npc id="25431" x="158212" y="-13096" z="-2816" heading="46378" dbSave="true" dbName="Flamestone Golem" respawnTime="24hour" respawnRandom="12hour" /> <!-- Flamestone Golem - Elite -->
<npc id="25437" x="180790" y="37516" z="-4792" heading="46378" dbSave="true" dbName="Timak Orc Gosmos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Orc Gosmos - High Elite -->
<npc id="25441" x="81273" y="109691" z="-3056" heading="46378" dbSave="true" dbName="Cyrion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cyrion - Elite -->
<npc id="25444" x="112565" y="16055" z="-4376" heading="46378" dbSave="true" dbName="Enmity Ghost Ramdal" respawnTime="24hour" respawnRandom="12hour" /> <!-- Enmity Ghost Ramdal - High Elite -->
<npc id="25447" x="114660" y="13914" z="64" heading="46378" dbSave="true" dbName="Immortal Savior Mardil" respawnTime="24hour" respawnRandom="12hour" /> <!-- Immortal Savior Mardil - High Elite -->
<npc id="25450" x="113430" y="14836" z="9560" heading="46378" dbSave="true" dbName="Cherub Galaxia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Cherub Galaxia - High Elite -->
<npc id="25463" x="-63757" y="82701" z="-3432" heading="46378" dbSave="true" dbName="Harit Guardian Garangky" respawnTime="24hour" respawnRandom="12hour" /> <!-- Guardian Garangky - Elite -->
<npc id="25478" x="91189" y="110550" z="-3808" heading="46378" dbSave="true" dbName="Shillien's Priest Hisilrome" respawnTime="24hour" respawnRandom="12hour" /> <!-- Shillien's Priest Hisilrome - High Elite -->
<npc id="25738" x="96002" y="27789" z="-3640" heading="46378" dbSave="true" dbName="Queen Ant Drone Priest" respawnTime="24hour" respawnRandom="12hour" /> <!-- Queen Ant Drone Priest - High Elite -->
<npc id="25739" x="108543" y="27676" z="-3480" heading="46378" dbSave="true" dbName="Angel Priest of Baium" respawnTime="24hour" respawnRandom="12hour" /> <!-- Angel Priest of Baium - High Elite -->
<npc id="25742" x="95285" y="20886" z="-3120" heading="46378" dbSave="true" dbName="Priest of Core Decar" respawnTime="24hour" respawnRandom="12hour" /> <!-- Priest of Core Decar - High Elite -->
<npc id="25743" x="102675" y="26799" z="-3376" heading="46378" dbSave="true" dbName="Orfen's Priest Lord Ipos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Orfen's Priest Lord Ipos - High Elite -->
<npc id="25745" x="180326" y="43505" z="-3840" heading="46378" dbSave="true" dbName="Orc Timak Darphen" respawnTime="24hour" respawnRandom="12hour" chaseRange="1500" /> <!-- Evil Orc Darphen - High Elite -->
<npc id="25746" x="170376" y="-19957" z="-3504" heading="46378" dbSave="true" dbName="Magikus" respawnTime="24hour" respawnRandom="12hour" /> <!-- Magikus - Elite -->
<npc id="25747" x="108414" y="80429" z="-2808" heading="46378" dbSave="true" dbName="Rael Mahum Radium" respawnTime="24hour" respawnRandom="12hour" /> <!-- Rael Mahum Radium - Elite -->
<npc id="25748" x="107567" y="86892" z="-3144" heading="46378" dbSave="true" dbName="Rael Mahum Supercium" respawnTime="24hour" respawnRandom="12hour" /> <!-- Rael Mahum Supercium - Elite -->
<npc id="25749" x="133071" y="6662" z="-4344" heading="46378" dbSave="true" dbName="Tayga Feron King" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tayga Feron King - Elite -->
<npc id="25750" x="138820" y="3347" z="-4520" heading="46378" dbSave="true" dbName="Tayga Marga Shaman" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tayga Marga Shaman - Elite -->
<npc id="25751" x="135274" y="11909" z="-4144" heading="46378" dbSave="true" dbName="Tayga Septon Champion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tayga Septon Champion - Elite -->
<npc id="25754" x="155519" y="-20579" z="-1776" heading="46378" dbSave="true" dbName="Flamestone Giant" respawnTime="24hour" respawnRandom="12hour" /> <!-- Flamestone Giant - Elite -->
<npc id="25755" x="129750" y="-9334" z="-3600" heading="46378" dbSave="true" dbName="Gross Salamander" respawnTime="24hour" respawnRandom="12hour" /> <!-- Flame Salamander - High Elite -->
<npc id="25756" x="128767" y="-11501" z="-3664" heading="46378" dbSave="true" dbName="Gross Dre Vanul" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fire Dre Vanul - High Elite -->
<npc id="25757" x="80223" y="85605" z="-3528" heading="46378" dbSave="true" dbName="Grousse" respawnTime="24hour" respawnRandom="12hour" /> <!-- Grousse - Elite -->
<npc id="25758" x="112793" y="-987" z="-3904" heading="46378" dbSave="true" dbName="Fiend Goblier" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fiend Goblier - High Elite -->
<npc id="25759" x="119294" y="-1929" z="-3720" heading="46378" dbSave="true" dbName="Fiend Cherkia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fiend Cherkia - High Elite -->
<npc id="25760" x="123636" y="-4094" z="-3304" heading="46378" dbSave="true" dbName="Fiend Harthemon" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Fiend Harthemon - High Elite -->
<npc id="25761" x="120924" y="-7493" z="-3152" heading="46378" dbSave="true" dbName="Fiend Sarboth" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Fiend Sarboth - High Elite -->
<npc id="25762" x="119518" y="-2860" z="-3760" heading="46378" dbSave="true" dbName="Demon Bedukel" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Demon Bedukel - High Elite -->
<npc id="25763" x="115975" y="-5424" z="-3416" heading="46378" dbSave="true" dbName="Bloody Witch Rumilla" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Bloody Witch Rumilla - High Elite -->
<npc id="25766" x="-47586" y="141472" z="-2920" heading="46378" dbSave="true" dbName="Monster Minotaur" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Monster Minotaur - High Elite -->
<npc id="25767" x="-51042" y="135662" z="-2920" heading="46378" dbSave="true" dbName="Monster Bulleroth" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Monster Bulleroth - High Elite -->
<npc id="25768" x="176307" y="40572" z="-3824" heading="46378" dbSave="true" dbName="Dorcaus" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Dorcaus - High Elite -->
<npc id="25769" x="163749" y="42252" z="-3352" heading="46378" dbSave="true" dbName="Kerfaus" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Kerfaus - High Elite -->
<npc id="25770" x="168081" y="46863" z="-3672" heading="46378" dbSave="true" dbName="Milinaus" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Milinaus - High Elite -->
<npc id="25772" x="185073" y="36926" z="-4176" heading="46378" dbSave="true" dbName="Evil Orc Zetahl" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Orc Zetahl - High Elite -->
<npc id="25773" x="-89953" y="105548" z="-3576" heading="46378" dbSave="true" dbName="Evil Orc Tabris" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Orc Tabris - High Elite -->
<npc id="25774" x="166837" y="39190" z="-3616" heading="46378" dbSave="true" dbName="Evil Orc Ravolas" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Orc Ravolas - High Elite -->
<npc id="25775" x="-94488" y="109525" z="-3784" heading="46378" dbSave="true" dbName="Evil Orc Dephracor" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Evil Orc Dephracor - High Elite -->
<npc id="25776" x="174507" y="42098" z="-4872" heading="46378" dbSave="true" dbName="Amden Orc Turahot" respawnTime="24hour" respawnRandom="12hour" chaseRange="2000" /> <!-- Evil Orc Turahot - High Elite -->
<npc id="25777" x="178757" y="41533" z="-3688" heading="46378" dbSave="true" dbName="Amden Orc Turation" respawnTime="24hour" respawnRandom="12hour" chaseRange="2000" /> <!-- Evil Orc Turation - High Elite -->
<npc id="25780" x="145002" y="86608" z="-3600" heading="46378" dbSave="true" dbName="Varbasion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varbasion - High Elite -->
<npc id="25781" x="147320" y="83986" z="-3624" heading="46378" dbSave="true" dbName="Varmoni" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varmoni - High Elite -->
<npc id="25782" x="151096" y="83959" z="-3432" heading="46378" dbSave="true" dbName="Overlord Muscel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Overlord Muscel - High Elite -->
<npc id="25783" x="148726" y="82720" z="-3264" heading="46378" dbSave="true" dbName="Bathus Elbogen" respawnTime="24hour" respawnRandom="12hour" /> <!-- Bathus Elbogen - High Elite -->
<npc id="25784" x="154506" y="81675" z="-3160" heading="46378" dbSave="true" dbName="Daumen Kshana" respawnTime="24hour" respawnRandom="12hour" /> <!-- Daumen Kshana - High Elite -->
<npc id="25909" x="-89105" y="104554" z="-3312" heading="46378" dbSave="true" dbName="Carcs" respawnTime="24hour" respawnRandom="12hour" /> <!-- Carcs - Elite -->
<npc id="25910" x="-89635" y="115127" z="-3400" heading="46378" dbSave="true" dbName="Drak" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Drak - Elite -->
<npc id="25911" x="-92358" y="119334" z="-3488" heading="46378" dbSave="true" dbName="Ourick" respawnTime="24hour" respawnRandom="12hour" chaseRange="5000" /> <!-- Ourick - Elite -->
<npc id="25925" x="-60496" y="137347" z="-2392" heading="46378" dbSave="true" dbName="Jisra" respawnTime="24hour" respawnRandom="12hour" /> <!-- Jisra - Elite -->
<npc id="25926" x="-58974" y="135294" z="-2392" heading="46378" dbSave="true" dbName="Kuka" respawnTime="24hour" respawnRandom="12hour" /> <!-- Kuka - Jisra's Prefect -->
<npc id="25932" x="127644" y="114568" z="-3520" heading="46378" dbSave="true" dbName="Katuba" respawnTime="24hour" respawnRandom="12hour" /> <!-- Katuba - High Elite -->
<npc id="25004" x="-61466" y="79786" z="-3488" heading="46378" dbSave="true" dbName="Turek Mercenary Captain" respawnPattern="0 1-23/2 * * *" />
<npc id="25026" x="137772" y="78637" z="-3608" heading="46378" dbSave="true" dbName="Atis" respawnPattern="0 1-23/2 * * *" />
<npc id="25044" x="165646" y="-20861" z="-2912" heading="46378" dbSave="true" dbName="Barion" respawnPattern="0 1-23/2 * * *" />
<npc id="25051" x="166972" y="-21210" z="-3416" heading="46378" dbSave="true" dbName="Rahha" respawnPattern="0 1-23/2 * * *" />
<npc id="25057" x="94373" y="83153" z="-3560" heading="46378" dbSave="true" dbName="Beacon of Blue Sky" respawnPattern="0 1-23/2 * * *" />
<npc id="25095" x="168148" y="-20504" z="-3680" heading="46378" dbSave="true" dbName="Renoa" respawnPattern="0 1-23/2 * * *" />
<npc id="25099" x="167711" y="-19190" z="-3072" heading="46378" dbSave="true" dbName="Repiro" respawnPattern="0 1-23/2 * * *" />
<npc id="25102" x="-23702" y="74952" z="-3672" heading="46378" dbSave="true" dbName="Shacram" respawnPattern="0 1-23/2 * * *" />
<npc id="25122" x="-27820" y="79612" z="-3576" heading="46378" dbSave="true" dbName="Refugee Applicant Leo" respawnPattern="0 1-23/2 * * *" />
<npc id="25146" x="119277" y="20219" z="-5168" heading="46378" dbSave="true" dbName="Cursed Bifrons" respawnPattern="0 1-23/2 * * *" />
<npc id="25152" x="119877" y="13565" z="-5184" heading="46378" dbSave="true" dbName="Cursed Shadir" respawnPattern="0 1-23/2 * * *" />
<npc id="25155" x="135981" y="79736" z="-3576" heading="46378" dbSave="true" dbName="Selu" respawnPattern="0 1-23/2 * * *" />
<npc id="25159" x="85179" y="87669" z="-3152" heading="46378" dbSave="true" dbName="Paniel the Unicorn" respawnPattern="0 1-23/2 * * *" />
<npc id="25163" x="87669" y="108230" z="-3088" heading="46378" dbSave="true" dbName="Roaring Skylancer" respawnPattern="0 1-23/2 * * *" />
<npc id="25176" x="92127" y="119736" z="-2912" heading="46378" dbSave="true" dbName="Black Lily" respawnPattern="0 1-23/2 * * *" />
<npc id="25217" x="115966" y="10530" z="-5136" heading="46378" dbSave="true" dbName="Cursed Kele" respawnPattern="0 1-23/2 * * *" />
<npc id="25226" x="-27463" y="84255" z="-3464" heading="46378" dbSave="true" dbName="Roaring Lord Kastor" respawnPattern="0 1-23/2 * * *" />
<npc id="25230" x="-58461" y="75471" z="-3176" heading="46378" dbSave="true" dbName="Timak Priest Ragoth" respawnPattern="0 1-23/2 * * *" />
<npc id="25255" x="85189" y="119998" z="-2944" heading="46378" dbSave="true" dbName="Tiphon" respawnPattern="0 1-23/2 * * *" />
<npc id="25256" x="-54418" y="81791" z="-3480" heading="46378" dbSave="true" dbName="Taik High Prefect Arak" respawnPattern="0 1-23/2 * * *" />
<npc id="25369" x="110571" y="11967" z="-5152" heading="46378" dbSave="true" dbName="Cursed Scavenger" respawnPattern="0 1-23/2 * * *" />
<npc id="25398" x="94774" y="81548" z="-3680" heading="46378" dbSave="true" dbName="Gaze of Abyss" respawnPattern="0 1-23/2 * * *" />
<npc id="25420" x="66911" y="31145" z="-3720" heading="46378" dbSave="true" dbName="Orfen's Handmaiden" respawnPattern="0 1-23/2 * * *" />
<npc id="25431" x="158212" y="-13096" z="-2816" heading="46378" dbSave="true" dbName="Flamestone Golem" respawnPattern="0 1-23/2 * * *" />
<npc id="25441" x="81273" y="109691" z="-3056" heading="46378" dbSave="true" dbName="Cyrion" respawnPattern="0 1-23/2 * * *" />
<npc id="25463" x="-63757" y="82701" z="-3432" heading="46378" dbSave="true" dbName="Harit Guardian Garangky" respawnPattern="0 1-23/2 * * *" />
<npc id="25746" x="170376" y="-19957" z="-3504" heading="46378" dbSave="true" dbName="Magikus" respawnPattern="0 1-23/2 * * *" />
<npc id="25747" x="108414" y="80429" z="-2808" heading="46378" dbSave="true" dbName="Rael Mahum Radium" respawnPattern="0 1-23/2 * * *" />
<npc id="25748" x="107567" y="86892" z="-3144" heading="46378" dbSave="true" dbName="Rael Mahum Supercium" respawnPattern="0 1-23/2 * * *" />
<npc id="25749" x="133071" y="6662" z="-4344" heading="46378" dbSave="true" dbName="Tayga Feron King" respawnPattern="0 1-23/2 * * *" />
<npc id="25750" x="138820" y="3347" z="-4520" heading="46378" dbSave="true" dbName="Tayga Marga Shaman" respawnPattern="0 1-23/2 * * *" />
<npc id="25751" x="135274" y="11909" z="-4144" heading="46378" dbSave="true" dbName="Tayga Septon Champion" respawnPattern="0 1-23/2 * * *" />
<npc id="25754" x="155519" y="-20579" z="-1776" heading="46378" dbSave="true" dbName="Flamestone Giant" respawnPattern="0 1-23/2 * * *" />
<npc id="25757" x="80223" y="85605" z="-3528" heading="46378" dbSave="true" dbName="Grousse" respawnPattern="0 1-23/2 * * *" />
<npc id="25909" x="-89105" y="104554" z="-3312" heading="46378" dbSave="true" dbName="Carcs" respawnPattern="0 1-23/2 * * *" />
<npc id="25910" x="-89635" y="115127" z="-3400" heading="46378" dbSave="true" dbName="Drak" respawnPattern="0 1-23/2 * * *" />
<npc id="25911" x="-92358" y="119334" z="-3488" heading="46378" dbSave="true" dbName="Ourick" respawnPattern="0 1-23/2 * * *" />
<npc id="25925" x="-60496" y="137347" z="-2392" heading="46378" dbSave="true" dbName="Jisra" respawnPattern="0 1-23/2 * * *" />
<npc id="25926" x="-58974" y="135294" z="-2392" heading="46378" dbSave="true" dbName="Kuka" respawnPattern="0 1-23/2 * * *" />
</group>
<group name="High Elites">
<npc id="25054" x="113489" y="16586" z="3960" heading="46378" dbSave="true" dbName="Kernon" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25092" x="115968" y="16003" z="1944" heading="46378" dbSave="true" dbName="Korim" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25103" x="86092" y="67675" z="-3328" heading="46378" dbSave="true" dbName="Wizard Isirr" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25125" x="135519" y="-17294" z="-2576" heading="46378" dbSave="true" dbName="Fierce Tiger King Angel" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25126" x="113058" y="15603" z="5984" heading="46378" dbSave="true" dbName="Longhorn Golkonda" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25127" x="89085" y="61867" z="-3688" heading="46378" dbSave="true" dbName="Langk Matriarch Rashkos" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25143" x="114243" y="14482" z="7992" heading="46378" dbSave="true" dbName="Fire of Wrath Shuriel" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25158" x="128048" y="-5376" z="-3280" heading="46378" dbSave="true" dbName="King Tarlk" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25173" x="133703" y="-14093" z="-2656" heading="46378" dbSave="true" dbName="Tiger King Karuta" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25220" x="114635" y="18179" z="-2896" heading="46378" dbSave="true" dbName="Death Lord Hallate" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25241" x="91330" y="69898" z="-3464" heading="46378" dbSave="true" dbName="Hero Tamash" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25252" x="96835" y="109953" z="-3712" heading="46378" dbSave="true" dbName="Palibati Queen Themis" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25260" x="133853" y="-8115" z="-3384" heading="46378" dbSave="true" dbName="Iron Giant Totem" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25365" x="89837" y="67707" z="-3664" heading="46378" dbSave="true" dbName="Patriarch Kuroboros" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25366" x="82341" y="60738" z="-3496" heading="46378" dbSave="true" dbName="Kuroboros' High Priest" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25385" x="114815" y="1744" z="-3720" heading="46378" dbSave="true" dbName="Evil Spirit Tempest" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25437" x="180790" y="37516" z="-4792" heading="46378" dbSave="true" dbName="Timak Orc Gosmos" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25444" x="112565" y="16055" z="-4376" heading="46378" dbSave="true" dbName="Enmity Ghost Ramdal" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25447" x="114660" y="13914" z="64" heading="46378" dbSave="true" dbName="Immortal Savior Mardil" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25450" x="113430" y="14836" z="9560" heading="46378" dbSave="true" dbName="Cherub Galaxia" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25478" x="91189" y="110550" z="-3808" heading="46378" dbSave="true" dbName="Shillien's Priest Hisilrome" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25738" x="96002" y="27789" z="-3640" heading="46378" dbSave="true" dbName="Queen Ant Drone Priest" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25739" x="108543" y="27676" z="-3480" heading="46378" dbSave="true" dbName="Angel Priest of Baium" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25742" x="95285" y="20886" z="-3120" heading="46378" dbSave="true" dbName="Priest of Core Decar" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25743" x="102675" y="26799" z="-3376" heading="46378" dbSave="true" dbName="Orfen's Priest Lord Ipos" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25745" x="180326" y="43505" z="-3840" heading="46378" dbSave="true" dbName="Orc Timak Darphen" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25755" x="129750" y="-9334" z="-3600" heading="46378" dbSave="true" dbName="Gross Salamander" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25756" x="128767" y="-11501" z="-3664" heading="46378" dbSave="true" dbName="Gross Dre Vanul" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25758" x="112793" y="-987" z="-3904" heading="46378" dbSave="true" dbName="Fiend Goblier" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25759" x="119294" y="-1929" z="-3720" heading="46378" dbSave="true" dbName="Fiend Cherkia" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25760" x="123636" y="-4094" z="-3304" heading="46378" dbSave="true" dbName="Fiend Harthemon" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25761" x="120924" y="-7493" z="-3152" heading="46378" dbSave="true" dbName="Fiend Sarboth" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25762" x="119518" y="-2860" z="-3760" heading="46378" dbSave="true" dbName="Demon Bedukel" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25763" x="115975" y="-5424" z="-3416" heading="46378" dbSave="true" dbName="Bloody Witch Rumilla" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25766" x="-47586" y="141472" z="-2920" heading="46378" dbSave="true" dbName="Monster Minotaur" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25767" x="-51042" y="135662" z="-2920" heading="46378" dbSave="true" dbName="Monster Bulleroth" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25768" x="176307" y="40572" z="-3824" heading="46378" dbSave="true" dbName="Dorcaus" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25769" x="163749" y="42252" z="-3352" heading="46378" dbSave="true" dbName="Kerfaus" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25770" x="168081" y="46863" z="-3672" heading="46378" dbSave="true" dbName="Milinaus" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25772" x="185073" y="36926" z="-4176" heading="46378" dbSave="true" dbName="Evil Orc Zetahl" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25773" x="-89953" y="105548" z="-3576" heading="46378" dbSave="true" dbName="Evil Orc Tabris" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25774" x="166837" y="39190" z="-3616" heading="46378" dbSave="true" dbName="Evil Orc Ravolas" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25775" x="-94488" y="109525" z="-3784" heading="46378" dbSave="true" dbName="Evil Orc Dephracor" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25776" x="174507" y="42098" z="-4872" heading="46378" dbSave="true" dbName="Amden Orc Turahot" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25777" x="178757" y="41533" z="-3688" heading="46378" dbSave="true" dbName="Amden Orc Turation" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25780" x="145002" y="86608" z="-3600" heading="46378" dbSave="true" dbName="Varbasion" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25781" x="147320" y="83986" z="-3624" heading="46378" dbSave="true" dbName="Varmoni" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25782" x="151096" y="83959" z="-3432" heading="46378" dbSave="true" dbName="Overlord Muscel" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25783" x="148726" y="82720" z="-3264" heading="46378" dbSave="true" dbName="Bathus Elbogen" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25784" x="154506" y="81675" z="-3160" heading="46378" dbSave="true" dbName="Daumen Kshana" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25932" x="127644" y="114568" z="-3520" heading="46378" dbSave="true" dbName="Katuba" respawnTime="22hour" respawnRandom="0hour" />
<npc id="25948" x="26625" y="183245" z="-3415" heading="5000" dbSave="true" dbName="Beoro" respawnTime="11hour" respawnRandom="0hour" />
</group>
<group name="Epic">
<npc id="25283" x="185059" y="-9610" z="-5488" heading="15640" dbSave="true" dbName="Lilith" respawnPattern="0 19 * * 1 | 0 19 * * 4" />
<npc id="25286" x="-6675" y="18505" z="-5488" heading="16550" dbSave="true" dbName="Anakim" respawnPattern="0 19 * * 2 | 0 19 * * 5" />
</group>
</spawn>
</list>
</list>