Initial commit for dimensional crack and rift.

Contributed by gigilo1968.
This commit is contained in:
MobiusDev 2018-01-21 06:11:59 +00:00
parent 3e102f5e7f
commit 7b5bd9e25e
52 changed files with 1526 additions and 6 deletions

View File

@ -0,0 +1,9 @@
<html><body>Dimensional Pursuer Beloa:<br>
A Dimensional Crack has occurred here. I'm Beloa, and sensing something strange about the Dimensional Crack here, I've come to research it.<br>
They say this area used to be called the Catacomb of the Witch. However, it's a completely different place now, and you'd best not let down your guard.<br>
Collect <font color="LEVEL">10</font> of the <font color="LEVEL">Superior Giant's Codex Fragments</font> and <font color="LEVEL">Rune Stone Fragments</font> that you receive after participating in the operation. They can be <font color="LEVEL">exchanged for the Superior Giant's Codex and Rune Stones</font>, respectively, so tell me when you're ready.<br>
Also, if you want to leave this horrifying place, tell me. I'll let you out.<br>
<Button ALIGN=LEFT ICON="Normal" action="bypass -h npc_%objectId%_multisell 2191">Exchange Superior Giant's Codex fragments and Rune Stone fragments</Button>
<Button ALIGN=LEFT ICON="Normal" action="bypass -h npc_%objectId%_teleport OTHER 0">Leave the Dimensional Crack</Button>
<Button ALIGN=LEFT ICON="QUEST" action="bypass -h npc_%objectId%_Quest">Quest</Button>
</body></html>

View File

@ -4,6 +4,6 @@ They say this area used to be called the Catacomb of the Witch. However, it's a
Collect <font color="LEVEL">10</font> of the <font color="LEVEL">Superior Giant's Codex Fragments</font> and <font color="LEVEL">Rune Stone Fragments</font> that you receive after participating in the operation. They can be <font color="LEVEL">exchanged for the Superior Giant's Codex and Rune Stones</font>, respectively, so tell me when you're ready.<br>
Also, if you want to leave this horrifying place, tell me. I'll let you out.<br>
<Button ALIGN=LEFT ICON="Normal" action="bypass -h npc_%objectId%_multisell 2191">Exchange Superior Giant's Codex fragments and Rune Stone fragments</Button>
<Button ALIGN=LEFT ICON="Normal" action="bypass -h npc_%objectId%_teleport return_to_aden 0">Leave the Dimensional Rift</Button>
<Button ALIGN=LEFT ICON="Normal" action="bypass -h npc_%objectId%_teleport OTHER 0">Leave the Dimensional Rift</Button>
<Button ALIGN=LEFT ICON="QUEST" action="bypass -h npc_%objectId%_Quest">Quest</Button>
</body></html>

View File

@ -0,0 +1,96 @@
/*
* This file is part of the L2J Mobius project.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.Aden.Ruine;
import com.l2jmobius.gameserver.model.Location;
import com.l2jmobius.gameserver.model.actor.L2Npc;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
import ai.AbstractNpcAI;
/**
* Ruine AI
* @author Gigi
* @date 2017-02-18 - [20:14:22]
*/
public class Ruine extends AbstractNpcAI
{
// NPC
private static final int COD_ADEN_OFFICER = 34229;
// Level checks
private static final int MIN_LEVEL_CRACK = 95;
private static final int MIN_LEVEL_RIFT = 100;
// Teleports
private static final Location DIMENSIONAL_CRACK = new Location(-120313, -182464, -6752);
private static final Location DIMENSIONAL_RIFT = new Location(140629, 79672, -5424);
private Ruine()
{
addStartNpc(COD_ADEN_OFFICER);
addFirstTalkId(COD_ADEN_OFFICER);
addTalkId(COD_ADEN_OFFICER);
}
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
String htmltext = null;
switch (event)
{
case "cod_aden_officer001.htm":
case "cod_aden_officer004.htm":
case "cod_aden_officer005.htm":
{
htmltext = event;
break;
}
case "crack_teleport":
{
if (player.getLevel() >= MIN_LEVEL_CRACK)
{
player.teleToLocation(DIMENSIONAL_CRACK);
break;
}
htmltext = "cod_aden_officer003.htm";
break;
}
case "rift_teleport":
{
if (player.getLevel() >= MIN_LEVEL_RIFT)
{
player.teleToLocation(DIMENSIONAL_RIFT);
break;
}
htmltext = "cod_aden_officer003.htm";
break;
}
}
return htmltext;
}
@Override
public String onFirstTalk(L2Npc npc, L2PcInstance player)
{
return "cod_aden_officer001.htm";
}
public static void main(String[] args)
{
new Ruine();
}
}

View File

@ -0,0 +1,10 @@
<html><body>Dimension Seeker Ruine:<br>
Nice to meet you. I am Dimension Seeker Ruine.<br>
Many problems associated with the dimensions have been occurring nowadays. I have been asked by Aden Castle to investigate, and that is what brings me here.<br>
Among the various issues relating to the dimension, the issues that I am involved with are the <font color="LEVEL">Dimensional Crack</font> and the <font color="LEVEL">Dimensional Rift</font>.<br>
If you would like, I will send you to the <font color="LEVEL">Dimensional Crack</font> and the <font color="LEVEL">Dimensional Rift</font>. Please help me with searching the dimension.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Ruine cod_aden_officer004.htm">&quot;Tell me about the Dimensional Crack.&quot;</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Ruine cod_aden_officer005.htm">&quot;Tell me about the Dimensional Rift.&quot;</Button>
<Button ALIGN=LEFT ICON="TELEPORT" action="bypass -h Quest Ruine crack_teleport">&quot;I want to teleport to the Dimensional Crack (Lv. 95+).&quot;</Button>
<Button ALIGN=LEFT ICON="TELEPORT" action="bypass -h Quest Ruine rift_teleport">&quot;I want to teleport to the Dimensional Rift (Lv. 100+).&quot;</Button>
</body></html>

View File

@ -0,0 +1,4 @@
<html><body>Dimension Seeker Ruine:<br>
Something has happened with the dimension, and I am investigating it at the moment. Could you please return later?<br>
<Button ALIGN=LEFT ICON="RETURN" action="bypass -h Quest Ruine cod_aden_officer001.htm">Back</Button>
</body></html>

View File

@ -0,0 +1,4 @@
<html><body>Dimension Seeker Ruine:<br>
I don't think that you meet our qualifications for dimension seekers.<br>
(Your level is too low.)
</body></html>

View File

@ -0,0 +1,6 @@
<html><body>Dimension Seeker Ruine:<br>
The <font color="LEVEL">Dimensional Crack</font>, they say, is originally a labyrinth that was created by the influence of the Seven Signs. However, one day, it was closed shut. Because it happened before the Ertheia came into the Material Realm, we knew nothing of the Dimensional Crack.<br>
We were investigating the warping of the dimension, which we discovered in Faeron Village. In the process, we found that the dimensional warp was linked to the Dimensional Crack, and that the Dimensional Crack was growing in the process.<br>
Also, we found that the monsters that appear in the Dimensional Crack were similar to the monsters that had attacked Faeron Village, and started investigating this fact.<br>
<Button ALIGN=LEFT ICON="RETURN" action="bypass -h Quest Ruine cod_aden_officer001.htm">Back</Button>
</body></html>

View File

@ -0,0 +1,7 @@
<html><body>Dimension Seeker Ruine:<br>
<font color="LEVEL">The Dimensional Rift</font> was a phenomenon that was identified after the Dimensional Crack was discovered, during additional investigations of Aden Castle and the Ivory Tower. It all began when strange movement was detected in the sealed off Catacomb of the Witch.<br>
Monsters began appearing in the Catacomb of the Witch. We felt they were out of place, and got to thinking that they might have something to do with the various recent events that have to do with the dimension. We therefore participated in the survey as well.<br>
What we found was that as the Dimensional Crack grew, the Dimensional Rift which had existed previously had been growing. The Catacomb of the Witch has now been completely consumed by the Dimensional Rift. I don't know if this is a good or bad thing, but the Dimensional Rift has not expanded beyond the size of the Catacomb of the Witch. However, we could not leave the situation as it was, and thus we began our expedition of the Dimensional Rift.<br>
The Dimensional Rift is even more dangerous than then Dimensional Crack. You must be even more careful there.<br>
<Button ALIGN=LEFT ICON="RETURN" action="bypass -h Quest Ruine cod_aden_officer001.htm">Back</Button>
</body></html>

View File

@ -63,7 +63,6 @@
924 Giant of the Restoration Room
925 Hunter Guild Request - Garden of Spirits
926 Exploring the Dimension - 30-day Search Operation
928 100-day Subjugation Operation
929 Seeker Rescue
930 Disparaging the Phantoms
931 Memories of the Wind

View File

@ -0,0 +1,3 @@
<html><body>
Your character's level exceeds the level limit for this quest.
</body></html>

View File

@ -0,0 +1,7 @@
<html><body>Dimensional Researcher Lias:<br>
What brings you here? The Catacomb of the Witch used to be here, but it's not the Catacomb of the Witch of old anymore. It you were trying to get to the Catacomb of the Witch, you're in the wrong place.<br>
Aden Castle, where they were regularly observing the catacombs and necropolis, told us, the Ertheia, that a Dimensional rift has appeared here.<br>
There was a treaty that the Ertheia had entered into with the other races. I'm here to investigate the Dimensional Rift that has appeared here.<br>
Well, since news has gotten out about the Dimensional Rift or Gap or what not, I'm guessing that's what brought you here, but... You wouldn't be here to help us with the operation to suppress the Dimensional Rift, would you?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00928_100DaySubjugationOperation 34265-02.htm">"Well, in fact I am."</Button>
</body></html>

View File

@ -0,0 +1,8 @@
<html><body>Dimensional Researcher Lias:<br>
That's great! I needed a lot of help with the operation to suppress the Dimensional Rift. Since I found out that a Dimensional Rift had appeared
here, I carried out a battery of experiments to make my research more effective. I discovered something important in the process.<br>
Currently, monsters that look exactly like the monsters that used to exist in the Catacomb of the Witch are appearing here. But it's my judgment that this is just to hide the Dimensional Rift.<br>
The Lillim, Nephilim and Gigantics here are actually all illusions. They're monsters whose substance actually exists beyond
the dimensional. At first, it was difficult to prove this, but with you joining the operation, that'il become much easier!<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00928_100DaySubjugationOperation 34265-03.htm">"How do you prove that?"</Button>
</body></html>

View File

@ -0,0 +1,7 @@
<html><body>Dimensional Researcher Lias:<br>
See, the monsters here didn't respond much to attacks from the guards at Aden Castle or the Ivory Tower Wizards are reacting strangely to adventures who have come here to take part in the suppression operation.<br>
You might say they're revealing their true selves, much like snakes molting.<br>
What I mean is, if you find in the Lillim, Nephilim or Gigantics that appear here the dimensional monsters that appear here the dimensional monsters that correspond to their main bodies,
that can prove that because of the Dimensional Rift that has appeared here, this place is on longer the Catacomb of the Witch!<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00928_100DaySubjugationOperation 34265-04.htm">"What exactly is the aim of the suppression operation?"</Button>
</body></html>

View File

@ -0,0 +1,6 @@
<html><body>Dimensional Researcher Lias:<br>
First, we need to prove that the monsters we see here aren't all there is.<br>
First, stay the Lillim Royal Knight, Lillim Slayer, Lillim Great Magus, Gigantic Healer, Nephilim Royal Guard, and the Nephilim and Gigantes to find out what they actually are.<br>
The Wandering Dead of the Dimensional, Roaming Vengeance of the Dimension, Lost Dimensional Evil Thoughts, Lost Soul of the Dimension, Wandering Dimensional Spirit and other monsters that exist within the Dimensional Rift should appear.<br>
Slaying the Dimensional monsters attacking through the rift, you'll obtain <font color="LEVEL">Attackers' Souls</font>. Just collect around 100 of those for me. What do you think? Not too difficult, hmm?
</body></html>

View File

@ -0,0 +1,3 @@
<html><body>Dimensional Researcher Lias:<br>
Slaying the Dimensional monsters attacking through the rift, you'll obtain <font color="LEVEL">Attackers' Souls</font>. Just collect around 100 of those for me.
</body></html>

View File

@ -0,0 +1,6 @@
<html><body>Dimensional Researcher Lias:<br>
Are you finished today's operation?<br>
That's amazing! You're even faster than I expected?<br>
Are you sure you've defeated the dimensional monsters in the Dimensional Rift, and collected 100 <font color="LEVEL">Attackers' Souls</font>?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00928_100DaySubjugationOperation 34265-07.html">"Yes, I'm sure."</Button>
</body></html>

View File

@ -0,0 +1,4 @@
<html><body>Dimensional Researcher Lias:<br>
Thank you! Thanks to help, it's becoming more and more evident that this place is not in fact the Catacomb of the Witch, but a Dimensional Rift that has consumed the Catacomb of the Witch<br>
This is your reward for you help with the operation. The operation continues as we speak, and I'd like you to return and help out again whenever you'd like.<br>
</body></html>

View File

@ -0,0 +1,204 @@
/*
* 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 quests.Q00928_100DaySubjugationOperation;
import com.l2jmobius.gameserver.enums.QuestType;
import com.l2jmobius.gameserver.model.actor.L2Npc;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
import com.l2jmobius.gameserver.model.quest.Quest;
import com.l2jmobius.gameserver.model.quest.QuestState;
import com.l2jmobius.gameserver.model.quest.State;
/**
* 100-day Subjugation Operation (928)
* @URL https://l2wiki.com/100-day_Subjugation_Operation
* @VIDEO https://www.youtube.com/watch?v=83Z85GRNpzA
* @author Gigi
* @date 2017-12-05 - [11:45:30]
*/
public class Q00928_100DaySubjugationOperation extends Quest
{
// Npc
private static final int LIAS = 34265;
// Monsters
private static final int LILLIM_ROYAL_KNIGHT = 23801;
private static final int LILLIM_SLAYER = 23802;
private static final int GIGANTIC_HEALER = 23803;
private static final int LILLIM_GRAT_MAGUS = 23804;
private static final int NEPHILM_ROYAL_GUARD = 23805;
private static final int WANDERING_OF_DIMENSION = 23806;
private static final int WANDERING_SPIRIT = 23807;
private static final int LOST_SOUL_DIMENSION = 23808;
private static final int LOST_DIMENSION_EVIL = 23809;
private static final int ROAMING_VENGEANCE = 23810;
// Items
private static final int ATTACKERS_SOUL = 47512;
private static final int LIAS_SUPPLY_ITEMS = 47504;
private static final int DIMENSIONAL_TRACES = 47511;
// Misc
private static final int MIN_LEVEL = 100;
public Q00928_100DaySubjugationOperation()
{
super(928);
addStartNpc(LIAS);
addTalkId(LIAS);
addKillId(LILLIM_ROYAL_KNIGHT, LILLIM_SLAYER, GIGANTIC_HEALER, LILLIM_GRAT_MAGUS, NEPHILM_ROYAL_GUARD);
addKillId(WANDERING_OF_DIMENSION, WANDERING_SPIRIT, LOST_SOUL_DIMENSION, LOST_DIMENSION_EVIL, ROAMING_VENGEANCE);
registerQuestItems(ATTACKERS_SOUL);
addCondMinLevel(MIN_LEVEL, "34265-00.html");
}
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
final QuestState qs = getQuestState(player, false);
if (qs == null)
{
return null;
}
String htmltext = null;
switch (event)
{
case "34265-02.htm":
case "34265-03.htm":
{
htmltext = event;
break;
}
case "34265-04.htm":
{
qs.startQuest();
htmltext = event;
break;
}
case "34265-07.html":
{
if (player.getLevel() >= MIN_LEVEL)
{
if (getQuestItemsCount(player, DIMENSIONAL_TRACES) < 99)
{
giveItems(player, DIMENSIONAL_TRACES, 1);
giveItems(player, LIAS_SUPPLY_ITEMS, 1);
addExpAndSp(player, 11_028_245_723L, 26_467_790);
qs.exitQuest(QuestType.DAILY, true);
htmltext = event;
break;
}
addExpAndSp(player, 11_028_245_723L, 26_467_790);
giveItems(player, DIMENSIONAL_TRACES, 1);
giveItems(player, LIAS_SUPPLY_ITEMS, 1);
qs.exitQuest(QuestType.ONE_TIME, true);
htmltext = event;
}
else
{
htmltext = getNoQuestLevelRewardMsg(player);
}
break;
}
}
return htmltext;
}
@Override
public String onTalk(L2Npc npc, L2PcInstance player)
{
final QuestState qs = getQuestState(player, true);
String htmltext = getNoQuestMsg(player);
switch (qs.getState())
{
case State.COMPLETED:
{
if (!qs.isNowAvailable())
{
htmltext = getAlreadyCompletedMsg(player);
break;
}
qs.setState(State.CREATED);
}
case State.CREATED:
{
htmltext = "34265-01.htm";
break;
}
case State.STARTED:
{
htmltext = (qs.isCond(1)) ? "34265-05.html" : "34265-06.html";
break;
}
}
return htmltext;
}
@Override
public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
{
final QuestState qs = getQuestState(killer, false);
if ((qs != null) && (qs.isCond(1)))
{
switch (npc.getId())
{
case LILLIM_ROYAL_KNIGHT:
{
final L2Npc mob1 = addSpawn(WANDERING_OF_DIMENSION, npc, false, 180000, false);
addAttackPlayerDesire(mob1, killer);
break;
}
case LILLIM_SLAYER:
{
final L2Npc mob2 = addSpawn(ROAMING_VENGEANCE, npc, false, 180000, false);
addAttackPlayerDesire(mob2, killer);
break;
}
case GIGANTIC_HEALER:
{
final L2Npc mob3 = addSpawn(LOST_SOUL_DIMENSION, npc, false, 180000, false);
addAttackPlayerDesire(mob3, killer);
break;
}
case LILLIM_GRAT_MAGUS:
{
final L2Npc mob4 = addSpawn(LOST_DIMENSION_EVIL, npc, false, 180000, false);
addAttackPlayerDesire(mob4, killer);
break;
}
case NEPHILM_ROYAL_GUARD:
{
final L2Npc mob5 = addSpawn(WANDERING_SPIRIT, npc, false, 180000, false);
addAttackPlayerDesire(mob5, killer);
break;
}
case WANDERING_OF_DIMENSION:
case WANDERING_SPIRIT:
case LOST_SOUL_DIMENSION:
case LOST_DIMENSION_EVIL:
case ROAMING_VENGEANCE:
{
if (giveItemRandomly(killer, npc, ATTACKERS_SOUL, 1, 100, 1.0, true))
{
qs.setCond(2, true);
}
break;
}
}
}
return super.onKill(npc, killer, isSummon);
}
}

View File

@ -192,6 +192,7 @@ import quests.Q00904_DragonTrophyAntharas.Q00904_DragonTrophyAntharas;
import quests.Q00905_RefinedDragonBlood.Q00905_RefinedDragonBlood;
import quests.Q00906_TheCallOfValakas.Q00906_TheCallOfValakas;
import quests.Q00907_DragonTrophyValakas.Q00907_DragonTrophyValakas;
import quests.Q00928_100DaySubjugationOperation.Q00928_100DaySubjugationOperation;
import quests.Q00937_ToReviveTheFishingGuild.Q00937_ToReviveTheFishingGuild;
import quests.Q10273_GoodDayToFly.Q10273_GoodDayToFly;
import quests.Q10274_CollectingInTheAir.Q10274_CollectingInTheAir;
@ -612,6 +613,7 @@ public class QuestMasterHandler
Q00905_RefinedDragonBlood.class,
Q00906_TheCallOfValakas.class,
Q00907_DragonTrophyValakas.class,
Q00928_100DaySubjugationOperation.class,
Q00937_ToReviveTheFishingGuild.class,
Q10273_GoodDayToFly.class,
Q10274_CollectingInTheAir.class,

View File

@ -107,6 +107,7 @@
<npc id="36478" x="145174" y="30492" z="-2456" respawnTime="60sec" /> <!-- Mickey -->
<npc id="36479" x="146437" y="27902" z="-2264" heading="60664" respawnTime="60sec" /> <!-- Rapidus -->
<npc id="36706" x="146264" y="21952" z="-2136" heading="36261" respawnTime="60sec" /> <!-- Mermoden -->
<npc id="34229" x="146949" y="26684" z="-2200" heading="16161" respawnTime="60sec" /> <!-- Ruine -->
</group>
</spawn>
</list>

View File

@ -0,0 +1,97 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
<spawn name="DimensionalCrack">
<group>
<npc id="23755" x="-119293" y="-182503" z="-6752" heading="13414" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119533" y="-182503" z="-6752" heading="58201" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119701" y="-180803" z="-6752" heading="26187" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-120036" y="-180803" z="-6752" heading="20489" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119165" y="-180555" z="-6752" heading="28056" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119748" y="-181666" z="-6752" heading="20667" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119684" y="-181756" z="-6752" heading="27559" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119812" y="-181456" z="-6752" heading="37094" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118507" y="-182380" z="-6752" heading="45673" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117547" y="-182530" z="-6752" heading="34507" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118443" y="-182380" z="-6752" heading="35171" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117743" y="-180422" z="-6752" heading="37764" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117526" y="-180482" z="-6752" heading="62869" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117418" y="-181278" z="-6752" heading="22228" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117985" y="-181428" z="-6752" heading="27715" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118237" y="-181518" z="-6752" heading="53896" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118661" y="-180414" z="-6752" heading="14227" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118226" y="-180559" z="-6752" heading="64540" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119173" y="-179374" z="-6752" heading="6902" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119550" y="-179464" z="-6752" heading="25190" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119150" y="-178607" z="-6752" heading="46065" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-120272" y="-178577" z="-6752" heading="64746" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119282" y="-178937" z="-6752" heading="11433" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-120136" y="-177429" z="-6752" heading="40408" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-120274" y="-177954" z="-6752" heading="16780" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-120412" y="-178059" z="-6752" heading="2914" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117568" y="-179574" z="-6752" heading="35322" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117696" y="-179822" z="-6752" heading="56171" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118272" y="-179760" z="-6752" heading="28977" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117876" y="-178442" z="-6752" heading="14887" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118006" y="-178814" z="-6752" heading="25554" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117811" y="-178659" z="-6752" heading="35241" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118259" y="-177922" z="-6752" heading="9478" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118321" y="-177570" z="-6752" heading="19795" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117521" y="-177933" z="-6752" heading="13154" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117425" y="-178020" z="-6752" heading="22839" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23757" x="-119503" y="-182557" z="-6752" heading="57751" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119369" y="-182618" z="-6752" heading="2107" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119477" y="-180279" z="-6752" heading="31011" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119396" y="-180514" z="-6752" heading="39920" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-120332" y="-180601" z="-6752" heading="21399" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119050" y="-181742" z="-6752" heading="62012" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119144" y="-181239" z="-6752" heading="1592" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-120009" y="-181676" z="-6752" heading="41088" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118233" y="-182391" z="-6752" heading="52762" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117916" y="-182378" z="-6752" heading="43434" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118431" y="-182325" z="-6752" heading="39912" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117402" y="-180602" z="-6752" heading="34057" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117614" y="-180771" z="-6752" heading="28899" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118433" y="-181537" z="-6752" heading="45159" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118573" y="-181582" z="-6752" heading="31154" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117847" y="-181618" z="-6752" heading="39817" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118581" y="-180520" z="-6752" heading="57626" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118454" y="-180654" z="-6752" heading="8383" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119202" y="-179614" z="-6752" heading="6174" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119144" y="-179884" z="-6752" heading="33938" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-120140" y="-178757" z="-6752" heading="22488" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119653" y="-178618" z="-6752" heading="63858" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119414" y="-178517" z="-6752" heading="53778" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119581" y="-177668" z="-6752" heading="16218" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119518" y="-177786" z="-6752" heading="61317" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-120093" y="-177725" z="-6752" heading="27007" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117888" y="-179512" z="-6752" heading="16660" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117824" y="-179698" z="-6752" heading="32071" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118528" y="-179698" z="-6752" heading="63898" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117993" y="-178708" z="-6752" heading="4510" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117786" y="-178542" z="-6752" heading="47989" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117551" y="-178597" z="-6752" heading="11655" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118519" y="-177582" z="-6752" heading="44142" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118259" y="-177538" z="-6752" heading="35249" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117649" y="-177469" z="-6752" heading="44127" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117878" y="-178003" z="-6752" heading="47736" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23759" x="-119366" y="-180307" z="-6752" heading="9381" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-120170" y="-180679" z="-6752" heading="12740" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-120260" y="-181636" z="-6752" heading="24854" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-119684" y="-181186" z="-6752" heading="6764" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117419" y="-182500" z="-6752" heading="19737" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117931" y="-182410" z="-6752" heading="4073" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117985" y="-181458" z="-6752" heading="48073" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117418" y="-181458" z="-6752" heading="21843" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-120206" y="-178817" z="-6752" heading="10535" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-119744" y="-178457" z="-6752" heading="37907" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-119308" y="-177674" z="-6752" heading="50988" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-120205" y="-177779" z="-6752" heading="9657" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117696" y="-179450" z="-6752" heading="35760" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117440" y="-179574" z="-6752" heading="35640" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117551" y="-178659" z="-6752" heading="57918" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117811" y="-178721" z="-6752" heading="23990" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="34227" x="-119936" y="-182574" z="-6752" heading="36621" respawnTime="60sec" /> <!-- Beloa -->
<npc id="34228" x="-119931" y="-179752" z="-6752" heading="32767" respawnTime="60sec" /> <!-- Subi -->
</group>
</spawn>
</list>

View File

@ -0,0 +1,230 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
<spawn name="DimensionalRift">
<group>
<npc id="23801" x="140898" y="81468" z="-5424" heading="34118" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="143239" y="79468" z="-5424" heading="17837" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="141629" y="79742" z="-5424" heading="31644" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="143151" y="81730" z="-5424" heading="60880" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="140842" y="84052" z="-5424" heading="34236" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="140593" y="85574" z="-5424" heading="33011" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="142540" y="85304" z="-5424" heading="20779" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="142734" y="84349" z="-5424" heading="38148" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="144686" y="85149" z="-5424" heading="27709" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="145192" y="85342" z="-5424" heading="39430" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="145184" y="84466" z="-5424" heading="54098" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="146417" y="80536" z="-5424" heading="37699" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="146567" y="81716" z="-5424" heading="7381" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="145620" y="81560" z="-5424" heading="12864" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="146568" y="85185" z="-5424" heading="13052" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="146477" y="84367" z="-5424" heading="60959" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="146651" y="79855" z="-5424" heading="18405" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="145492" y="79521" z="-5424" heading="5287" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="149217" y="80080" z="-5424" heading="31834" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="151138" y="79920" z="-5424" heading="10773" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="149867" y="81583" z="-5424" heading="53084" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="148113" y="84177" z="-5424" heading="22024" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="149637" y="85519" z="-5424" heading="56009" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="151117" y="85368" z="-5424" heading="23837" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="151020" y="84382" z="-5424" heading="19536" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="147703" y="87215" z="-5424" heading="19390" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="149678" y="87607" z="-5424" heading="18653" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="148447" y="89398" z="-5424" heading="7275" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="147324" y="88469" z="-5424" heading="42028" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="151081" y="88323" z="-5424" heading="47960" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="149774" y="88968" z="-5424" heading="45797" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="150806" y="90222" z="-5424" heading="28613" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="146677" y="90169" z="-5424" heading="10190" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="145618" y="90257" z="-5424" heading="18504" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="144557" y="88301" z="-5424" heading="15965" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23802" x="140898" y="82188" z="-5424" heading="16804" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="142788" y="83328" z="-5424" heading="28304" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="143531" y="79747" z="-5424" heading="39574" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="145172" y="82208" z="-5424" heading="26649" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="143318" y="84318" z="-5424" heading="30563" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="144128" y="85879" z="-5424" heading="29965" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="143416" y="85180" z="-5424" heading="25358" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="147001" y="80784" z="-5424" heading="1106" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="146631" y="81572" z="-5424" heading="63786" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="148907" y="80728" z="-5424" heading="56096" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="149773" y="82093" z="-5424" heading="28110" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="147729" y="84396" z="-5424" heading="15273" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="147849" y="87029" z="-5424" heading="51683" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="149924" y="86667" z="-5424" heading="35199" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="148593" y="89801" z="-5424" heading="32359" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="147499" y="88599" z="-5424" heading="21539" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="151081" y="88725" z="-5424" heading="6085" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="144630" y="88177" z="-5424" heading="42405" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23803" x="140650" y="81036" z="-5424" heading="15066" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="140929" y="81828" z="-5424" heading="2848" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="142947" y="79840" z="-5424" heading="33888" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="142139" y="79618" z="-5424" heading="417" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="142695" y="82253" z="-5424" heading="41288" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="142821" y="82106" z="-5424" heading="54157" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="143385" y="79623" z="-5424" heading="30714" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="145282" y="79552" z="-5424" heading="58786" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="145125" y="81416" z="-5424" heading="15162" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="145204" y="82136" z="-5424" heading="18942" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="140572" y="84424" z="-5424" heading="35755" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="140863" y="85233" z="-5424" heading="32417" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="142905" y="85459" z="-5424" heading="43403" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="142905" y="85490" z="-5424" heading="28021" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="143172" y="84070" z="-5424" heading="42596" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="144128" y="85660" z="-5424" heading="21476" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="145342" y="85435" z="-5424" heading="21447" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="143829" y="84349" z="-5424" heading="1602" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="145394" y="84559" z="-5424" heading="50732" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="147293" y="80567" z="-5424" heading="57772" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="146417" y="80908" z="-5424" heading="26184" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="146343" y="81716" z="-5424" heading="15846" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="146631" y="81932" z="-5424" heading="52564" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="146538" y="85309" z="-5424" heading="57759" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="146207" y="84181" z="-5424" heading="26084" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="146231" y="79700" z="-5424" heading="56300" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149279" y="79720" z="-5424" heading="8733" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149303" y="81821" z="-5424" heading="20380" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149372" y="80368" z="-5424" heading="65352" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="151318" y="79486" z="-5424" heading="16645" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149021" y="81991" z="-5424" heading="43800" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="147697" y="84250" z="-5424" heading="23821" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="147825" y="84177" z="-5424" heading="55934" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149822" y="85163" z="-5424" heading="34118" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149618" y="85445" z="-5424" heading="49428" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="151117" y="85492" z="-5424" heading="60927" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="151110" y="84382" z="-5424" heading="37507" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="147338" y="87184" z="-5424" heading="2474" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="147703" y="87091" z="-5424" heading="31705" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149858" y="87793" z="-5424" heading="64401" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="151401" y="87854" z="-5424" heading="38900" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="148743" y="89775" z="-5424" heading="64811" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="148155" y="89367" z="-5424" heading="14374" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="147504" y="88792" z="-5424" heading="56680" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="151241" y="88658" z="-5424" heading="58983" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149850" y="88791" z="-5424" heading="44121" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="151286" y="90253" z="-5424" heading="27153" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="146407" y="89797" z="-5424" heading="27876" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="147225" y="88826" z="-5424" heading="42928" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="144128" y="86390" z="-5424" heading="33765" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="144411" y="87898" z="-5424" heading="51992" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="145214" y="88332" z="-5424" heading="54339" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="145228" y="89916" z="-5424" heading="9128" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23804" x="140526" y="81828" z="-5424" heading="59339" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="140681" y="81324" z="-5424" heading="2749" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="141599" y="79494" z="-5424" heading="29999" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="143166" y="79933" z="-5424" heading="38907" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="142656" y="83046" z="-5424" heading="59532" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="142997" y="82615" z="-5424" heading="20427" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="143458" y="79871" z="-5424" heading="41835" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="145332" y="81560" z="-5424" heading="54206" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="140572" y="84548" z="-5424" heading="44394" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="140593" y="85109" z="-5424" heading="54239" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="143124" y="85552" z="-5424" heading="1472" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="142807" y="84287" z="-5424" heading="22992" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="144314" y="85368" z="-5424" heading="33366" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="144407" y="85295" z="-5424" heading="14155" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="143562" y="85335" z="-5424" heading="63438" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="143829" y="84101" z="-5424" heading="21161" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146928" y="80691" z="-5424" heading="4802" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146928" y="80660" z="-5424" heading="27662" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146311" y="82220" z="-5424" heading="17438" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146407" y="82292" z="-5424" heading="6108" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="145460" y="81992" z="-5424" heading="2958" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="145582" y="85404" z="-5424" heading="1726" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146748" y="85371" z="-5424" heading="28581" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146657" y="84243" z="-5424" heading="49446" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="145574" y="84187" z="-5424" heading="30714" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146531" y="79576" z="-5424" heading="1975" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="145552" y="79676" z="-5424" heading="13334" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="149303" y="81821" z="-5424" heading="4346" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="149434" y="80224" z="-5424" heading="1476" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="149155" y="80224" z="-5424" heading="11887" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="151168" y="79548" z="-5424" heading="2554" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="150149" y="81685" z="-5424" heading="18861" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="148113" y="83447" z="-5424" heading="1127" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="147857" y="83958" z="-5424" heading="25365" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="149981" y="85872" z="-5424" heading="45870" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="151237" y="85182" z="-5424" heading="30300" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="151020" y="84320" z="-5424" heading="54466" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="145433" y="87836" z="-5424" heading="62311" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="147630" y="87184" z="-5424" heading="28031" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="148214" y="87370" z="-5424" heading="8224" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="150128" y="86479" z="-5424" heading="42214" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="149768" y="87514" z="-5424" heading="9206" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="150793" y="88055" z="-5424" heading="52212" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="148658" y="89687" z="-5424" heading="56127" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="148666" y="89429" z="-5424" heading="31490" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="147662" y="88476" z="-5424" heading="55824" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="151037" y="89790" z="-5424" heading="27905" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="150995" y="88628" z="-5424" heading="2780" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="149880" y="89043" z="-5424" heading="64301" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146557" y="89673" z="-5424" heading="63046" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="147132" y="88418" z="-5424" heading="11106" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="144776" y="87960" z="-5424" heading="18573" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="145198" y="89699" z="-5424" heading="13302" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23805" x="140774" y="81612" z="-5424" heading="30855" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="143020" y="79685" z="-5424" heading="14073" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="143239" y="79902" z="-5424" heading="7196" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="141989" y="79959" z="-5424" heading="64792" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="140743" y="82404" z="-5424" heading="55663" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="142981" y="82381" z="-5424" heading="40824" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="142788" y="82998" z="-5424" heading="18755" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145428" y="82148" z="-5424" heading="53898" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145172" y="82280" z="-5424" heading="25683" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="140662" y="84114" z="-5424" heading="39007" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="140713" y="85140" z="-5424" heading="47760" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="143270" y="85118" z="-5424" heading="3034" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="142978" y="85459" z="-5424" heading="37821" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="142807" y="84442" z="-5424" heading="61755" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="142734" y="84380" z="-5424" heading="54639" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="144159" y="85222" z="-5424" heading="53553" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="144562" y="85368" z="-5424" heading="26684" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145282" y="85528" z="-5424" heading="63307" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145184" y="84032" z="-5424" heading="760" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146636" y="80536" z="-5424" heading="52806" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="147001" y="80908" z="-5424" heading="58252" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146531" y="79917" z="-5424" heading="39554" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146375" y="82364" z="-5424" heading="29155" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146375" y="82436" z="-5424" heading="46396" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146538" y="85123" z="-5424" heading="55679" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146507" y="84212" z="-5424" heading="29386" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145642" y="79862" z="-5424" heading="3416" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="149341" y="79432" z="-5424" heading="52627" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="149124" y="80152" z="-5424" heading="29139" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="150958" y="79672" z="-5424" heading="39079" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="149961" y="81821" z="-5424" heading="53192" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="149397" y="81923" z="-5424" heading="63674" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="148081" y="83885" z="-5424" heading="5611" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="147729" y="84104" z="-5424" heading="9607" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="149584" y="85257" z="-5424" heading="38585" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="149618" y="85445" z="-5424" heading="52212" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="151057" y="85151" z="-5424" heading="54644" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="150900" y="84289" z="-5424" heading="8675" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="147630" y="87339" z="-5424" heading="35250" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="147776" y="87246" z="-5424" heading="56310" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="150038" y="87855" z="-5424" heading="58632" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="151017" y="87653" z="-5424" heading="42752" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="148301" y="89491" z="-5424" heading="63920" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="148374" y="89553" z="-5424" heading="54218" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="151076" y="89943" z="-5424" heading="245" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="151074" y="88110" z="-5424" heading="8607" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="149670" y="89136" z="-5424" heading="12369" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146295" y="88452" z="-5424" heading="59201" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="147411" y="88792" z="-5424" heading="15119" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146467" y="90169" z="-5424" heading="5641" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="143460" y="87819" z="-5424" heading="35369" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145214" y="88022" z="-5424" heading="55357" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145214" y="87867" z="-5424" heading="16318" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="143460" y="88947" z="-5424" heading="18768" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145228" y="89854" z="-5424" heading="2060" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="33383" x="136831" y="79268" z="-3696" heading="48348" respawnTime="60sec" /> <!-- Guard -->
<npc id="33383" x="137209" y="79255" z="-3696" heading="48916" respawnTime="60sec" /> <!-- Guard -->
<npc id="33383" x="136609" y="79498" z="-3696" heading="33884" respawnTime="60sec" /> <!-- Guard -->
<npc id="33383" x="136600" y="79872" z="-3696" heading="32064" respawnTime="60sec" /> <!-- Guard -->
<npc id="33383" x="137195" y="80112" z="-3696" heading="13840" respawnTime="60sec" /> <!-- Guard -->
<npc id="33383" x="136828" y="80117" z="-3696" heading="15496" respawnTime="60sec" /> <!-- Guard -->
<npc id="33383" x="137452" y="79489" z="-3696" heading="0" respawnTime="60sec" /> <!-- Guard -->
<npc id="33383" x="137458" y="79861" z="-3696" heading="0" respawnTime="60sec" /> <!-- Guard -->
<npc id="34265" x="140778" y="79683" z="-5424" heading="32768" respawnTime="60sec" /> <!-- Lias -->
</group>
</spawn>
</list>

View File

@ -466,6 +466,44 @@
<height normal="30" />
</collision>
</npc>
<npc id="34227" level="85" type="L2Teleporter" name="Beloa" title="Dimensional Pursuer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
<vitals hp="8446" hpRegen="10.5" mp="2355" mpRegen="3.6" />
<speed>
<walk ground="64" />
<run ground="120" />
</speed>
<attack physical="1950.2231755595" magical="1331.5869440987" critical="4" attackSpeed="253" range="40" />
<defence physical="405.85106382979" magical="297.0297029703" />
</stats>
<status attackable="false" />
<collision>
<radius normal="9" />
<height normal="19.5" />
</collision>
</npc>
<npc id="34228" level="85" type="L2Npc" name="Subi" title="Beloa's Guardian Spirit">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
<vitals hp="8446" hpRegen="10.5" mp="2355" mpRegen="3.6" />
<speed>
<walk ground="41" />
<run ground="120" />
</speed>
<attack physical="1950.2231755595" magical="1331.5869440987" critical="4" attackSpeed="253" range="40" />
<defence physical="405.85106382979" magical="297.0297029703" />
</stats>
<status attackable="false" />
<collision>
<radius normal="12" />
<height normal="22.5" />
</collision>
</npc>
<npc id="34229" level="85" type="L2Npc" name="Ruine" title="Dimensional Seeker">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ERTHEIA</race>
@ -551,4 +589,24 @@
<height normal="23" />
</collision>
</npc>
<npc id="34265" level="85" type="L2Teleporter" name="Lias" title="Dimensional Researcher">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
<equipment rhand="17300" />
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
<vitals hp="8446" hpRegen="10.5" mp="2355" mpRegen="3.6" />
<speed>
<walk ground="64" />
<run ground="1" />
</speed>
<attack physical="1950.2231755595" magical="1331.5869440987" critical="4" attackSpeed="253" range="40" />
<defence physical="405.85106382979" magical="297.0297029703" />
</stats>
<status attackable="false" />
<collision>
<radius normal="9" />
<height normal="21.5" />
</collision>
</npc>
</list>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/teleporterData.xsd">
<npc id="34227"> <!-- Beloa -->
<teleport type="OTHER">
<location x="146950" y="26754" z="-2203" /> <!-- Aden -->
</teleport>
</npc>
</list>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/teleporterData.xsd">
<npc id="34265"> <!-- Lias -->
<teleport type="OTHER">
<location x="146950" y="26754" z="-2203" /> <!-- Aden -->
</teleport>
</npc>
</list>

View File

@ -69,6 +69,8 @@ Underground:
-Daily rewards
Helios:
-Dimensional Rift
-Dimensional Crack
-Giants Cave
-Superion Fortress
-Ramona

View File

@ -0,0 +1,9 @@
<html><body>Dimensional Pursuer Beloa:<br>
A Dimensional Crack has occurred here. I'm Beloa, and sensing something strange about the Dimensional Crack here, I've come to research it.<br>
They say this area used to be called the Catacomb of the Witch. However, it's a completely different place now, and you'd best not let down your guard.<br>
Collect <font color="LEVEL">10</font> of the <font color="LEVEL">Superior Giant's Codex Fragments</font> and <font color="LEVEL">Rune Stone Fragments</font> that you receive after participating in the operation. They can be <font color="LEVEL">exchanged for the Superior Giant's Codex and Rune Stones</font>, respectively, so tell me when you're ready.<br>
Also, if you want to leave this horrifying place, tell me. I'll let you out.<br>
<Button ALIGN=LEFT ICON="Normal" action="bypass -h npc_%objectId%_multisell 2191">Exchange Superior Giant's Codex fragments and Rune Stone fragments</Button>
<Button ALIGN=LEFT ICON="Normal" action="bypass -h npc_%objectId%_teleport OTHER 0">Leave the Dimensional Crack</Button>
<Button ALIGN=LEFT ICON="QUEST" action="bypass -h npc_%objectId%_Quest">Quest</Button>
</body></html>

View File

@ -4,6 +4,6 @@ They say this area used to be called the Catacomb of the Witch. However, it's a
Collect <font color="LEVEL">10</font> of the <font color="LEVEL">Superior Giant's Codex Fragments</font> and <font color="LEVEL">Rune Stone Fragments</font> that you receive after participating in the operation. They can be <font color="LEVEL">exchanged for the Superior Giant's Codex and Rune Stones</font>, respectively, so tell me when you're ready.<br>
Also, if you want to leave this horrifying place, tell me. I'll let you out.<br>
<Button ALIGN=LEFT ICON="Normal" action="bypass -h npc_%objectId%_multisell 2191">Exchange Superior Giant's Codex fragments and Rune Stone fragments</Button>
<Button ALIGN=LEFT ICON="Normal" action="bypass -h npc_%objectId%_teleport return_to_aden 0">Leave the Dimensional Rift</Button>
<Button ALIGN=LEFT ICON="Normal" action="bypass -h npc_%objectId%_teleport OTHER 0">Leave the Dimensional Rift</Button>
<Button ALIGN=LEFT ICON="QUEST" action="bypass -h npc_%objectId%_Quest">Quest</Button>
</body></html>

View File

@ -0,0 +1,96 @@
/*
* This file is part of the L2J Mobius project.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.areas.Aden.Ruine;
import com.l2jmobius.gameserver.model.Location;
import com.l2jmobius.gameserver.model.actor.L2Npc;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
import ai.AbstractNpcAI;
/**
* Ruine AI
* @author Gigi
* @date 2017-02-18 - [20:14:22]
*/
public class Ruine extends AbstractNpcAI
{
// NPC
private static final int COD_ADEN_OFFICER = 34229;
// Level checks
private static final int MIN_LEVEL_CRACK = 95;
private static final int MIN_LEVEL_RIFT = 100;
// Teleports
private static final Location DIMENSIONAL_CRACK = new Location(-120313, -182464, -6752);
private static final Location DIMENSIONAL_RIFT = new Location(140629, 79672, -5424);
private Ruine()
{
addStartNpc(COD_ADEN_OFFICER);
addFirstTalkId(COD_ADEN_OFFICER);
addTalkId(COD_ADEN_OFFICER);
}
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
String htmltext = null;
switch (event)
{
case "cod_aden_officer001.htm":
case "cod_aden_officer004.htm":
case "cod_aden_officer005.htm":
{
htmltext = event;
break;
}
case "crack_teleport":
{
if (player.getLevel() >= MIN_LEVEL_CRACK)
{
player.teleToLocation(DIMENSIONAL_CRACK);
break;
}
htmltext = "cod_aden_officer003.htm";
break;
}
case "rift_teleport":
{
if (player.getLevel() >= MIN_LEVEL_RIFT)
{
player.teleToLocation(DIMENSIONAL_RIFT);
break;
}
htmltext = "cod_aden_officer003.htm";
break;
}
}
return htmltext;
}
@Override
public String onFirstTalk(L2Npc npc, L2PcInstance player)
{
return "cod_aden_officer001.htm";
}
public static void main(String[] args)
{
new Ruine();
}
}

View File

@ -0,0 +1,10 @@
<html><body>Dimension Seeker Ruine:<br>
Nice to meet you. I am Dimension Seeker Ruine.<br>
Many problems associated with the dimensions have been occurring nowadays. I have been asked by Aden Castle to investigate, and that is what brings me here.<br>
Among the various issues relating to the dimension, the issues that I am involved with are the <font color="LEVEL">Dimensional Crack</font> and the <font color="LEVEL">Dimensional Rift</font>.<br>
If you would like, I will send you to the <font color="LEVEL">Dimensional Crack</font> and the <font color="LEVEL">Dimensional Rift</font>. Please help me with searching the dimension.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Ruine cod_aden_officer004.htm">&quot;Tell me about the Dimensional Crack.&quot;</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Ruine cod_aden_officer005.htm">&quot;Tell me about the Dimensional Rift.&quot;</Button>
<Button ALIGN=LEFT ICON="TELEPORT" action="bypass -h Quest Ruine crack_teleport">&quot;I want to teleport to the Dimensional Crack (Lv. 95+).&quot;</Button>
<Button ALIGN=LEFT ICON="TELEPORT" action="bypass -h Quest Ruine rift_teleport">&quot;I want to teleport to the Dimensional Rift (Lv. 100+).&quot;</Button>
</body></html>

View File

@ -0,0 +1,4 @@
<html><body>Dimension Seeker Ruine:<br>
Something has happened with the dimension, and I am investigating it at the moment. Could you please return later?<br>
<Button ALIGN=LEFT ICON="RETURN" action="bypass -h Quest Ruine cod_aden_officer001.htm">Back</Button>
</body></html>

View File

@ -0,0 +1,4 @@
<html><body>Dimension Seeker Ruine:<br>
I don't think that you meet our qualifications for dimension seekers.<br>
(Your level is too low.)
</body></html>

View File

@ -0,0 +1,6 @@
<html><body>Dimension Seeker Ruine:<br>
The <font color="LEVEL">Dimensional Crack</font>, they say, is originally a labyrinth that was created by the influence of the Seven Signs. However, one day, it was closed shut. Because it happened before the Ertheia came into the Material Realm, we knew nothing of the Dimensional Crack.<br>
We were investigating the warping of the dimension, which we discovered in Faeron Village. In the process, we found that the dimensional warp was linked to the Dimensional Crack, and that the Dimensional Crack was growing in the process.<br>
Also, we found that the monsters that appear in the Dimensional Crack were similar to the monsters that had attacked Faeron Village, and started investigating this fact.<br>
<Button ALIGN=LEFT ICON="RETURN" action="bypass -h Quest Ruine cod_aden_officer001.htm">Back</Button>
</body></html>

View File

@ -0,0 +1,7 @@
<html><body>Dimension Seeker Ruine:<br>
<font color="LEVEL">The Dimensional Rift</font> was a phenomenon that was identified after the Dimensional Crack was discovered, during additional investigations of Aden Castle and the Ivory Tower. It all began when strange movement was detected in the sealed off Catacomb of the Witch.<br>
Monsters began appearing in the Catacomb of the Witch. We felt they were out of place, and got to thinking that they might have something to do with the various recent events that have to do with the dimension. We therefore participated in the survey as well.<br>
What we found was that as the Dimensional Crack grew, the Dimensional Rift which had existed previously had been growing. The Catacomb of the Witch has now been completely consumed by the Dimensional Rift. I don't know if this is a good or bad thing, but the Dimensional Rift has not expanded beyond the size of the Catacomb of the Witch. However, we could not leave the situation as it was, and thus we began our expedition of the Dimensional Rift.<br>
The Dimensional Rift is even more dangerous than then Dimensional Crack. You must be even more careful there.<br>
<Button ALIGN=LEFT ICON="RETURN" action="bypass -h Quest Ruine cod_aden_officer001.htm">Back</Button>
</body></html>

View File

@ -124,7 +124,6 @@
924 Giant of the Restoration Room
925 Hunter Guild Request - Garden of Spirits
926 Exploring the Dimension - 30-day Search Operation
928 100-day Subjugation Operation
929 Seeker Rescue
930 Disparaging the Phantoms
931 Memories of the Wind

View File

@ -0,0 +1,3 @@
<html><body>
Your character's level exceeds the level limit for this quest.
</body></html>

View File

@ -0,0 +1,7 @@
<html><body>Dimensional Researcher Lias:<br>
What brings you here? The Catacomb of the Witch used to be here, but it's not the Catacomb of the Witch of old anymore. It you were trying to get to the Catacomb of the Witch, you're in the wrong place.<br>
Aden Castle, where they were regularly observing the catacombs and necropolis, told us, the Ertheia, that a Dimensional rift has appeared here.<br>
There was a treaty that the Ertheia had entered into with the other races. I'm here to investigate the Dimensional Rift that has appeared here.<br>
Well, since news has gotten out about the Dimensional Rift or Gap or what not, I'm guessing that's what brought you here, but... You wouldn't be here to help us with the operation to suppress the Dimensional Rift, would you?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00928_100DaySubjugationOperation 34265-02.htm">"Well, in fact I am."</Button>
</body></html>

View File

@ -0,0 +1,8 @@
<html><body>Dimensional Researcher Lias:<br>
That's great! I needed a lot of help with the operation to suppress the Dimensional Rift. Since I found out that a Dimensional Rift had appeared
here, I carried out a battery of experiments to make my research more effective. I discovered something important in the process.<br>
Currently, monsters that look exactly like the monsters that used to exist in the Catacomb of the Witch are appearing here. But it's my judgment that this is just to hide the Dimensional Rift.<br>
The Lillim, Nephilim and Gigantics here are actually all illusions. They're monsters whose substance actually exists beyond
the dimensional. At first, it was difficult to prove this, but with you joining the operation, that'il become much easier!<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00928_100DaySubjugationOperation 34265-03.htm">"How do you prove that?"</Button>
</body></html>

View File

@ -0,0 +1,7 @@
<html><body>Dimensional Researcher Lias:<br>
See, the monsters here didn't respond much to attacks from the guards at Aden Castle or the Ivory Tower Wizards are reacting strangely to adventures who have come here to take part in the suppression operation.<br>
You might say they're revealing their true selves, much like snakes molting.<br>
What I mean is, if you find in the Lillim, Nephilim or Gigantics that appear here the dimensional monsters that appear here the dimensional monsters that correspond to their main bodies,
that can prove that because of the Dimensional Rift that has appeared here, this place is on longer the Catacomb of the Witch!<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00928_100DaySubjugationOperation 34265-04.htm">"What exactly is the aim of the suppression operation?"</Button>
</body></html>

View File

@ -0,0 +1,6 @@
<html><body>Dimensional Researcher Lias:<br>
First, we need to prove that the monsters we see here aren't all there is.<br>
First, stay the Lillim Royal Knight, Lillim Slayer, Lillim Great Magus, Gigantic Healer, Nephilim Royal Guard, and the Nephilim and Gigantes to find out what they actually are.<br>
The Wandering Dead of the Dimensional, Roaming Vengeance of the Dimension, Lost Dimensional Evil Thoughts, Lost Soul of the Dimension, Wandering Dimensional Spirit and other monsters that exist within the Dimensional Rift should appear.<br>
Slaying the Dimensional monsters attacking through the rift, you'll obtain <font color="LEVEL">Attackers' Souls</font>. Just collect around 100 of those for me. What do you think? Not too difficult, hmm?
</body></html>

View File

@ -0,0 +1,3 @@
<html><body>Dimensional Researcher Lias:<br>
Slaying the Dimensional monsters attacking through the rift, you'll obtain <font color="LEVEL">Attackers' Souls</font>. Just collect around 100 of those for me.
</body></html>

View File

@ -0,0 +1,6 @@
<html><body>Dimensional Researcher Lias:<br>
Are you finished today's operation?<br>
That's amazing! You're even faster than I expected?<br>
Are you sure you've defeated the dimensional monsters in the Dimensional Rift, and collected 100 <font color="LEVEL">Attackers' Souls</font>?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00928_100DaySubjugationOperation 34265-07.html">"Yes, I'm sure."</Button>
</body></html>

View File

@ -0,0 +1,4 @@
<html><body>Dimensional Researcher Lias:<br>
Thank you! Thanks to help, it's becoming more and more evident that this place is not in fact the Catacomb of the Witch, but a Dimensional Rift that has consumed the Catacomb of the Witch<br>
This is your reward for you help with the operation. The operation continues as we speak, and I'd like you to return and help out again whenever you'd like.<br>
</body></html>

View File

@ -0,0 +1,204 @@
/*
* 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 quests.Q00928_100DaySubjugationOperation;
import com.l2jmobius.gameserver.enums.QuestType;
import com.l2jmobius.gameserver.model.actor.L2Npc;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
import com.l2jmobius.gameserver.model.quest.Quest;
import com.l2jmobius.gameserver.model.quest.QuestState;
import com.l2jmobius.gameserver.model.quest.State;
/**
* 100-day Subjugation Operation (928)
* @URL https://l2wiki.com/100-day_Subjugation_Operation
* @VIDEO https://www.youtube.com/watch?v=83Z85GRNpzA
* @author Gigi
* @date 2017-12-05 - [11:45:30]
*/
public class Q00928_100DaySubjugationOperation extends Quest
{
// Npc
private static final int LIAS = 34265;
// Monsters
private static final int LILLIM_ROYAL_KNIGHT = 23801;
private static final int LILLIM_SLAYER = 23802;
private static final int GIGANTIC_HEALER = 23803;
private static final int LILLIM_GRAT_MAGUS = 23804;
private static final int NEPHILM_ROYAL_GUARD = 23805;
private static final int WANDERING_OF_DIMENSION = 23806;
private static final int WANDERING_SPIRIT = 23807;
private static final int LOST_SOUL_DIMENSION = 23808;
private static final int LOST_DIMENSION_EVIL = 23809;
private static final int ROAMING_VENGEANCE = 23810;
// Items
private static final int ATTACKERS_SOUL = 47512;
private static final int LIAS_SUPPLY_ITEMS = 47504;
private static final int DIMENSIONAL_TRACES = 47511;
// Misc
private static final int MIN_LEVEL = 100;
public Q00928_100DaySubjugationOperation()
{
super(928);
addStartNpc(LIAS);
addTalkId(LIAS);
addKillId(LILLIM_ROYAL_KNIGHT, LILLIM_SLAYER, GIGANTIC_HEALER, LILLIM_GRAT_MAGUS, NEPHILM_ROYAL_GUARD);
addKillId(WANDERING_OF_DIMENSION, WANDERING_SPIRIT, LOST_SOUL_DIMENSION, LOST_DIMENSION_EVIL, ROAMING_VENGEANCE);
registerQuestItems(ATTACKERS_SOUL);
addCondMinLevel(MIN_LEVEL, "34265-00.html");
}
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
final QuestState qs = getQuestState(player, false);
if (qs == null)
{
return null;
}
String htmltext = null;
switch (event)
{
case "34265-02.htm":
case "34265-03.htm":
{
htmltext = event;
break;
}
case "34265-04.htm":
{
qs.startQuest();
htmltext = event;
break;
}
case "34265-07.html":
{
if (player.getLevel() >= MIN_LEVEL)
{
if (getQuestItemsCount(player, DIMENSIONAL_TRACES) < 99)
{
giveItems(player, DIMENSIONAL_TRACES, 1);
giveItems(player, LIAS_SUPPLY_ITEMS, 1);
addExpAndSp(player, 11_028_245_723L, 26_467_790);
qs.exitQuest(QuestType.DAILY, true);
htmltext = event;
break;
}
addExpAndSp(player, 11_028_245_723L, 26_467_790);
giveItems(player, DIMENSIONAL_TRACES, 1);
giveItems(player, LIAS_SUPPLY_ITEMS, 1);
qs.exitQuest(QuestType.ONE_TIME, true);
htmltext = event;
}
else
{
htmltext = getNoQuestLevelRewardMsg(player);
}
break;
}
}
return htmltext;
}
@Override
public String onTalk(L2Npc npc, L2PcInstance player)
{
final QuestState qs = getQuestState(player, true);
String htmltext = getNoQuestMsg(player);
switch (qs.getState())
{
case State.COMPLETED:
{
if (!qs.isNowAvailable())
{
htmltext = getAlreadyCompletedMsg(player);
break;
}
qs.setState(State.CREATED);
}
case State.CREATED:
{
htmltext = "34265-01.htm";
break;
}
case State.STARTED:
{
htmltext = (qs.isCond(1)) ? "34265-05.html" : "34265-06.html";
break;
}
}
return htmltext;
}
@Override
public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
{
final QuestState qs = getQuestState(killer, false);
if ((qs != null) && (qs.isCond(1)))
{
switch (npc.getId())
{
case LILLIM_ROYAL_KNIGHT:
{
final L2Npc mob1 = addSpawn(WANDERING_OF_DIMENSION, npc, false, 180000, false);
addAttackPlayerDesire(mob1, killer);
break;
}
case LILLIM_SLAYER:
{
final L2Npc mob2 = addSpawn(ROAMING_VENGEANCE, npc, false, 180000, false);
addAttackPlayerDesire(mob2, killer);
break;
}
case GIGANTIC_HEALER:
{
final L2Npc mob3 = addSpawn(LOST_SOUL_DIMENSION, npc, false, 180000, false);
addAttackPlayerDesire(mob3, killer);
break;
}
case LILLIM_GRAT_MAGUS:
{
final L2Npc mob4 = addSpawn(LOST_DIMENSION_EVIL, npc, false, 180000, false);
addAttackPlayerDesire(mob4, killer);
break;
}
case NEPHILM_ROYAL_GUARD:
{
final L2Npc mob5 = addSpawn(WANDERING_SPIRIT, npc, false, 180000, false);
addAttackPlayerDesire(mob5, killer);
break;
}
case WANDERING_OF_DIMENSION:
case WANDERING_SPIRIT:
case LOST_SOUL_DIMENSION:
case LOST_DIMENSION_EVIL:
case ROAMING_VENGEANCE:
{
if (giveItemRandomly(killer, npc, ATTACKERS_SOUL, 1, 100, 1.0, true))
{
qs.setCond(2, true);
}
break;
}
}
}
return super.onKill(npc, killer, isSummon);
}
}

View File

@ -190,6 +190,7 @@ import quests.Q00902_ReclaimOurEra.Q00902_ReclaimOurEra;
import quests.Q00903_TheCallOfAntharas.Q00903_TheCallOfAntharas;
import quests.Q00905_RefinedDragonBlood.Q00905_RefinedDragonBlood;
import quests.Q00906_TheCallOfValakas.Q00906_TheCallOfValakas;
import quests.Q00928_100DaySubjugationOperation.Q00928_100DaySubjugationOperation;
import quests.Q00937_ToReviveTheFishingGuild.Q00937_ToReviveTheFishingGuild;
import quests.Q10273_GoodDayToFly.Q10273_GoodDayToFly;
import quests.Q10274_CollectingInTheAir.Q10274_CollectingInTheAir;
@ -615,6 +616,7 @@ public class QuestMasterHandler
Q00903_TheCallOfAntharas.class,
Q00905_RefinedDragonBlood.class,
Q00906_TheCallOfValakas.class,
Q00928_100DaySubjugationOperation.class,
Q00937_ToReviveTheFishingGuild.class,
Q10273_GoodDayToFly.class,
Q10274_CollectingInTheAir.class,

View File

@ -106,6 +106,7 @@
<npc id="36478" x="145174" y="30492" z="-2456" respawnTime="60sec" /> <!-- Mickey -->
<npc id="36479" x="146437" y="27902" z="-2264" heading="60664" respawnTime="60sec" /> <!-- Rapidus -->
<npc id="36706" x="146264" y="21952" z="-2136" heading="36261" respawnTime="60sec" /> <!-- Mermoden -->
<npc id="34229" x="146949" y="26684" z="-2200" heading="16161" respawnTime="60sec" /> <!-- Ruine -->
<npc id="30703" x="147796" y="25622" z="-2008" heading="12414" respawnTime="60sec" /> <!-- Colin -->
<npc id="30744" x="147840" y="25591" z="-2008" heading="14023" respawnTime="60sec" /> <!-- Grey -->
</group>

View File

@ -0,0 +1,97 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
<spawn name="DimensionalCrack">
<group>
<npc id="23755" x="-119293" y="-182503" z="-6752" heading="13414" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119533" y="-182503" z="-6752" heading="58201" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119701" y="-180803" z="-6752" heading="26187" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-120036" y="-180803" z="-6752" heading="20489" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119165" y="-180555" z="-6752" heading="28056" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119748" y="-181666" z="-6752" heading="20667" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119684" y="-181756" z="-6752" heading="27559" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119812" y="-181456" z="-6752" heading="37094" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118507" y="-182380" z="-6752" heading="45673" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117547" y="-182530" z="-6752" heading="34507" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118443" y="-182380" z="-6752" heading="35171" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117743" y="-180422" z="-6752" heading="37764" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117526" y="-180482" z="-6752" heading="62869" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117418" y="-181278" z="-6752" heading="22228" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117985" y="-181428" z="-6752" heading="27715" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118237" y="-181518" z="-6752" heading="53896" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118661" y="-180414" z="-6752" heading="14227" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118226" y="-180559" z="-6752" heading="64540" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119173" y="-179374" z="-6752" heading="6902" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119550" y="-179464" z="-6752" heading="25190" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119150" y="-178607" z="-6752" heading="46065" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-120272" y="-178577" z="-6752" heading="64746" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-119282" y="-178937" z="-6752" heading="11433" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-120136" y="-177429" z="-6752" heading="40408" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-120274" y="-177954" z="-6752" heading="16780" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-120412" y="-178059" z="-6752" heading="2914" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117568" y="-179574" z="-6752" heading="35322" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117696" y="-179822" z="-6752" heading="56171" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118272" y="-179760" z="-6752" heading="28977" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117876" y="-178442" z="-6752" heading="14887" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118006" y="-178814" z="-6752" heading="25554" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117811" y="-178659" z="-6752" heading="35241" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118259" y="-177922" z="-6752" heading="9478" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-118321" y="-177570" z="-6752" heading="19795" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117521" y="-177933" z="-6752" heading="13154" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23755" x="-117425" y="-178020" z="-6752" heading="22839" respawnTime="60sec" /> <!-- Wandering Dead of the Dimension -->
<npc id="23757" x="-119503" y="-182557" z="-6752" heading="57751" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119369" y="-182618" z="-6752" heading="2107" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119477" y="-180279" z="-6752" heading="31011" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119396" y="-180514" z="-6752" heading="39920" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-120332" y="-180601" z="-6752" heading="21399" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119050" y="-181742" z="-6752" heading="62012" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119144" y="-181239" z="-6752" heading="1592" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-120009" y="-181676" z="-6752" heading="41088" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118233" y="-182391" z="-6752" heading="52762" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117916" y="-182378" z="-6752" heading="43434" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118431" y="-182325" z="-6752" heading="39912" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117402" y="-180602" z="-6752" heading="34057" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117614" y="-180771" z="-6752" heading="28899" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118433" y="-181537" z="-6752" heading="45159" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118573" y="-181582" z="-6752" heading="31154" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117847" y="-181618" z="-6752" heading="39817" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118581" y="-180520" z="-6752" heading="57626" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118454" y="-180654" z="-6752" heading="8383" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119202" y="-179614" z="-6752" heading="6174" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119144" y="-179884" z="-6752" heading="33938" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-120140" y="-178757" z="-6752" heading="22488" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119653" y="-178618" z="-6752" heading="63858" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119414" y="-178517" z="-6752" heading="53778" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119581" y="-177668" z="-6752" heading="16218" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-119518" y="-177786" z="-6752" heading="61317" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-120093" y="-177725" z="-6752" heading="27007" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117888" y="-179512" z="-6752" heading="16660" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117824" y="-179698" z="-6752" heading="32071" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118528" y="-179698" z="-6752" heading="63898" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117993" y="-178708" z="-6752" heading="4510" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117786" y="-178542" z="-6752" heading="47989" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117551" y="-178597" z="-6752" heading="11655" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118519" y="-177582" z="-6752" heading="44142" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-118259" y="-177538" z="-6752" heading="35249" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117649" y="-177469" z="-6752" heading="44127" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23757" x="-117878" y="-178003" z="-6752" heading="47736" respawnTime="60sec" /> <!-- Lost Soul of the Dimension -->
<npc id="23759" x="-119366" y="-180307" z="-6752" heading="9381" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-120170" y="-180679" z="-6752" heading="12740" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-120260" y="-181636" z="-6752" heading="24854" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-119684" y="-181186" z="-6752" heading="6764" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117419" y="-182500" z="-6752" heading="19737" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117931" y="-182410" z="-6752" heading="4073" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117985" y="-181458" z="-6752" heading="48073" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117418" y="-181458" z="-6752" heading="21843" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-120206" y="-178817" z="-6752" heading="10535" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-119744" y="-178457" z="-6752" heading="37907" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-119308" y="-177674" z="-6752" heading="50988" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-120205" y="-177779" z="-6752" heading="9657" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117696" y="-179450" z="-6752" heading="35760" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117440" y="-179574" z="-6752" heading="35640" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117551" y="-178659" z="-6752" heading="57918" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="23759" x="-117811" y="-178721" z="-6752" heading="23990" respawnTime="60sec" /> <!-- Roaming Vengeance of the Dimension -->
<npc id="34227" x="-119936" y="-182574" z="-6752" heading="36621" respawnTime="60sec" /> <!-- Beloa -->
<npc id="34228" x="-119931" y="-179752" z="-6752" heading="32767" respawnTime="60sec" /> <!-- Subi -->
</group>
</spawn>
</list>

View File

@ -0,0 +1,230 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
<spawn name="DimensionalRift">
<group>
<npc id="23801" x="140898" y="81468" z="-5424" heading="34118" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="143239" y="79468" z="-5424" heading="17837" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="141629" y="79742" z="-5424" heading="31644" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="143151" y="81730" z="-5424" heading="60880" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="140842" y="84052" z="-5424" heading="34236" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="140593" y="85574" z="-5424" heading="33011" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="142540" y="85304" z="-5424" heading="20779" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="142734" y="84349" z="-5424" heading="38148" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="144686" y="85149" z="-5424" heading="27709" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="145192" y="85342" z="-5424" heading="39430" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="145184" y="84466" z="-5424" heading="54098" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="146417" y="80536" z="-5424" heading="37699" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="146567" y="81716" z="-5424" heading="7381" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="145620" y="81560" z="-5424" heading="12864" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="146568" y="85185" z="-5424" heading="13052" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="146477" y="84367" z="-5424" heading="60959" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="146651" y="79855" z="-5424" heading="18405" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="145492" y="79521" z="-5424" heading="5287" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="149217" y="80080" z="-5424" heading="31834" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="151138" y="79920" z="-5424" heading="10773" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="149867" y="81583" z="-5424" heading="53084" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="148113" y="84177" z="-5424" heading="22024" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="149637" y="85519" z="-5424" heading="56009" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="151117" y="85368" z="-5424" heading="23837" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="151020" y="84382" z="-5424" heading="19536" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="147703" y="87215" z="-5424" heading="19390" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="149678" y="87607" z="-5424" heading="18653" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="148447" y="89398" z="-5424" heading="7275" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="147324" y="88469" z="-5424" heading="42028" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="151081" y="88323" z="-5424" heading="47960" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="149774" y="88968" z="-5424" heading="45797" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="150806" y="90222" z="-5424" heading="28613" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="146677" y="90169" z="-5424" heading="10190" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="145618" y="90257" z="-5424" heading="18504" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23801" x="144557" y="88301" z="-5424" heading="15965" respawnTime="60sec" /> <!-- Lillim Royal Knight -->
<npc id="23802" x="140898" y="82188" z="-5424" heading="16804" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="142788" y="83328" z="-5424" heading="28304" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="143531" y="79747" z="-5424" heading="39574" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="145172" y="82208" z="-5424" heading="26649" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="143318" y="84318" z="-5424" heading="30563" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="144128" y="85879" z="-5424" heading="29965" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="143416" y="85180" z="-5424" heading="25358" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="147001" y="80784" z="-5424" heading="1106" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="146631" y="81572" z="-5424" heading="63786" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="148907" y="80728" z="-5424" heading="56096" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="149773" y="82093" z="-5424" heading="28110" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="147729" y="84396" z="-5424" heading="15273" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="147849" y="87029" z="-5424" heading="51683" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="149924" y="86667" z="-5424" heading="35199" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="148593" y="89801" z="-5424" heading="32359" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="147499" y="88599" z="-5424" heading="21539" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="151081" y="88725" z="-5424" heading="6085" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23802" x="144630" y="88177" z="-5424" heading="42405" respawnTime="60sec" /> <!-- Lillim Slayer -->
<npc id="23803" x="140650" y="81036" z="-5424" heading="15066" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="140929" y="81828" z="-5424" heading="2848" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="142947" y="79840" z="-5424" heading="33888" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="142139" y="79618" z="-5424" heading="417" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="142695" y="82253" z="-5424" heading="41288" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="142821" y="82106" z="-5424" heading="54157" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="143385" y="79623" z="-5424" heading="30714" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="145282" y="79552" z="-5424" heading="58786" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="145125" y="81416" z="-5424" heading="15162" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="145204" y="82136" z="-5424" heading="18942" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="140572" y="84424" z="-5424" heading="35755" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="140863" y="85233" z="-5424" heading="32417" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="142905" y="85459" z="-5424" heading="43403" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="142905" y="85490" z="-5424" heading="28021" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="143172" y="84070" z="-5424" heading="42596" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="144128" y="85660" z="-5424" heading="21476" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="145342" y="85435" z="-5424" heading="21447" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="143829" y="84349" z="-5424" heading="1602" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="145394" y="84559" z="-5424" heading="50732" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="147293" y="80567" z="-5424" heading="57772" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="146417" y="80908" z="-5424" heading="26184" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="146343" y="81716" z="-5424" heading="15846" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="146631" y="81932" z="-5424" heading="52564" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="146538" y="85309" z="-5424" heading="57759" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="146207" y="84181" z="-5424" heading="26084" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="146231" y="79700" z="-5424" heading="56300" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149279" y="79720" z="-5424" heading="8733" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149303" y="81821" z="-5424" heading="20380" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149372" y="80368" z="-5424" heading="65352" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="151318" y="79486" z="-5424" heading="16645" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149021" y="81991" z="-5424" heading="43800" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="147697" y="84250" z="-5424" heading="23821" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="147825" y="84177" z="-5424" heading="55934" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149822" y="85163" z="-5424" heading="34118" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149618" y="85445" z="-5424" heading="49428" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="151117" y="85492" z="-5424" heading="60927" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="151110" y="84382" z="-5424" heading="37507" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="147338" y="87184" z="-5424" heading="2474" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="147703" y="87091" z="-5424" heading="31705" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149858" y="87793" z="-5424" heading="64401" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="151401" y="87854" z="-5424" heading="38900" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="148743" y="89775" z="-5424" heading="64811" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="148155" y="89367" z="-5424" heading="14374" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="147504" y="88792" z="-5424" heading="56680" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="151241" y="88658" z="-5424" heading="58983" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="149850" y="88791" z="-5424" heading="44121" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="151286" y="90253" z="-5424" heading="27153" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="146407" y="89797" z="-5424" heading="27876" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="147225" y="88826" z="-5424" heading="42928" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="144128" y="86390" z="-5424" heading="33765" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="144411" y="87898" z="-5424" heading="51992" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="145214" y="88332" z="-5424" heading="54339" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23803" x="145228" y="89916" z="-5424" heading="9128" respawnTime="60sec" /> <!-- Gigantic Healer -->
<npc id="23804" x="140526" y="81828" z="-5424" heading="59339" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="140681" y="81324" z="-5424" heading="2749" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="141599" y="79494" z="-5424" heading="29999" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="143166" y="79933" z="-5424" heading="38907" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="142656" y="83046" z="-5424" heading="59532" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="142997" y="82615" z="-5424" heading="20427" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="143458" y="79871" z="-5424" heading="41835" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="145332" y="81560" z="-5424" heading="54206" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="140572" y="84548" z="-5424" heading="44394" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="140593" y="85109" z="-5424" heading="54239" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="143124" y="85552" z="-5424" heading="1472" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="142807" y="84287" z="-5424" heading="22992" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="144314" y="85368" z="-5424" heading="33366" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="144407" y="85295" z="-5424" heading="14155" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="143562" y="85335" z="-5424" heading="63438" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="143829" y="84101" z="-5424" heading="21161" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146928" y="80691" z="-5424" heading="4802" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146928" y="80660" z="-5424" heading="27662" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146311" y="82220" z="-5424" heading="17438" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146407" y="82292" z="-5424" heading="6108" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="145460" y="81992" z="-5424" heading="2958" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="145582" y="85404" z="-5424" heading="1726" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146748" y="85371" z="-5424" heading="28581" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146657" y="84243" z="-5424" heading="49446" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="145574" y="84187" z="-5424" heading="30714" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146531" y="79576" z="-5424" heading="1975" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="145552" y="79676" z="-5424" heading="13334" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="149303" y="81821" z="-5424" heading="4346" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="149434" y="80224" z="-5424" heading="1476" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="149155" y="80224" z="-5424" heading="11887" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="151168" y="79548" z="-5424" heading="2554" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="150149" y="81685" z="-5424" heading="18861" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="148113" y="83447" z="-5424" heading="1127" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="147857" y="83958" z="-5424" heading="25365" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="149981" y="85872" z="-5424" heading="45870" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="151237" y="85182" z="-5424" heading="30300" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="151020" y="84320" z="-5424" heading="54466" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="145433" y="87836" z="-5424" heading="62311" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="147630" y="87184" z="-5424" heading="28031" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="148214" y="87370" z="-5424" heading="8224" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="150128" y="86479" z="-5424" heading="42214" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="149768" y="87514" z="-5424" heading="9206" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="150793" y="88055" z="-5424" heading="52212" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="148658" y="89687" z="-5424" heading="56127" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="148666" y="89429" z="-5424" heading="31490" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="147662" y="88476" z="-5424" heading="55824" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="151037" y="89790" z="-5424" heading="27905" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="150995" y="88628" z="-5424" heading="2780" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="149880" y="89043" z="-5424" heading="64301" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="146557" y="89673" z="-5424" heading="63046" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="147132" y="88418" z="-5424" heading="11106" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="144776" y="87960" z="-5424" heading="18573" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23804" x="145198" y="89699" z="-5424" heading="13302" respawnTime="60sec" /> <!-- Lillim Great Magus -->
<npc id="23805" x="140774" y="81612" z="-5424" heading="30855" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="143020" y="79685" z="-5424" heading="14073" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="143239" y="79902" z="-5424" heading="7196" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="141989" y="79959" z="-5424" heading="64792" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="140743" y="82404" z="-5424" heading="55663" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="142981" y="82381" z="-5424" heading="40824" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="142788" y="82998" z="-5424" heading="18755" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145428" y="82148" z="-5424" heading="53898" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145172" y="82280" z="-5424" heading="25683" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="140662" y="84114" z="-5424" heading="39007" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="140713" y="85140" z="-5424" heading="47760" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="143270" y="85118" z="-5424" heading="3034" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="142978" y="85459" z="-5424" heading="37821" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="142807" y="84442" z="-5424" heading="61755" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="142734" y="84380" z="-5424" heading="54639" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="144159" y="85222" z="-5424" heading="53553" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="144562" y="85368" z="-5424" heading="26684" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145282" y="85528" z="-5424" heading="63307" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145184" y="84032" z="-5424" heading="760" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146636" y="80536" z="-5424" heading="52806" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="147001" y="80908" z="-5424" heading="58252" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146531" y="79917" z="-5424" heading="39554" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146375" y="82364" z="-5424" heading="29155" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146375" y="82436" z="-5424" heading="46396" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146538" y="85123" z="-5424" heading="55679" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146507" y="84212" z="-5424" heading="29386" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145642" y="79862" z="-5424" heading="3416" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="149341" y="79432" z="-5424" heading="52627" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="149124" y="80152" z="-5424" heading="29139" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="150958" y="79672" z="-5424" heading="39079" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="149961" y="81821" z="-5424" heading="53192" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="149397" y="81923" z="-5424" heading="63674" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="148081" y="83885" z="-5424" heading="5611" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="147729" y="84104" z="-5424" heading="9607" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="149584" y="85257" z="-5424" heading="38585" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="149618" y="85445" z="-5424" heading="52212" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="151057" y="85151" z="-5424" heading="54644" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="150900" y="84289" z="-5424" heading="8675" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="147630" y="87339" z="-5424" heading="35250" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="147776" y="87246" z="-5424" heading="56310" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="150038" y="87855" z="-5424" heading="58632" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="151017" y="87653" z="-5424" heading="42752" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="148301" y="89491" z="-5424" heading="63920" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="148374" y="89553" z="-5424" heading="54218" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="151076" y="89943" z="-5424" heading="245" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="151074" y="88110" z="-5424" heading="8607" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="149670" y="89136" z="-5424" heading="12369" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146295" y="88452" z="-5424" heading="59201" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="147411" y="88792" z="-5424" heading="15119" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="146467" y="90169" z="-5424" heading="5641" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="143460" y="87819" z="-5424" heading="35369" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145214" y="88022" z="-5424" heading="55357" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145214" y="87867" z="-5424" heading="16318" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="143460" y="88947" z="-5424" heading="18768" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="23805" x="145228" y="89854" z="-5424" heading="2060" respawnTime="60sec" /> <!-- Nephilim Royal Guard -->
<npc id="33383" x="136831" y="79268" z="-3696" heading="48348" respawnTime="60sec" /> <!-- Guard -->
<npc id="33383" x="137209" y="79255" z="-3696" heading="48916" respawnTime="60sec" /> <!-- Guard -->
<npc id="33383" x="136609" y="79498" z="-3696" heading="33884" respawnTime="60sec" /> <!-- Guard -->
<npc id="33383" x="136600" y="79872" z="-3696" heading="32064" respawnTime="60sec" /> <!-- Guard -->
<npc id="33383" x="137195" y="80112" z="-3696" heading="13840" respawnTime="60sec" /> <!-- Guard -->
<npc id="33383" x="136828" y="80117" z="-3696" heading="15496" respawnTime="60sec" /> <!-- Guard -->
<npc id="33383" x="137452" y="79489" z="-3696" heading="0" respawnTime="60sec" /> <!-- Guard -->
<npc id="33383" x="137458" y="79861" z="-3696" heading="0" respawnTime="60sec" /> <!-- Guard -->
<npc id="34265" x="140778" y="79683" z="-5424" heading="32768" respawnTime="60sec" /> <!-- Lias -->
</group>
</spawn>
</list>

View File

@ -513,7 +513,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="34227" level="85" type="L2Npc" name="Beloa" title="Dimensional Pursuer">
<npc id="34227" level="85" type="L2Teleporter" name="Beloa" title="Dimensional Pursuer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@ -1206,7 +1206,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="34265" level="85" type="L2Npc" name="Lias" title="Dimensional Researcher">
<npc id="34265" level="85" type="L2Teleporter" name="Lias" title="Dimensional Researcher">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/teleporterData.xsd">
<npc id="34227"> <!-- Beloa -->
<teleport type="OTHER">
<location x="146950" y="26754" z="-2203" /> <!-- Aden -->
</teleport>
</npc>
</list>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/teleporterData.xsd">
<npc id="34265"> <!-- Lias -->
<teleport type="OTHER">
<location x="146950" y="26754" z="-2203" /> <!-- Aden -->
</teleport>
</npc>
</list>

View File

@ -69,6 +69,8 @@ Underground:
-Daily rewards
Helios:
-Dimensional Rift
-Dimensional Crack
-Giants Cave
-Superion Fortress
-Ramona