Skip to content
Snippets Groups Projects
Commit 747abda4 authored by Adry85's avatar Adry85 Committed by Zoey76
Browse files

Missing quest Birth of the Seed (10270)

parent 737d4900
No related branches found
No related tags found
No related merge requests found
Showing
with 151 additions and 4 deletions
<?xml version="1.0" encoding="UTF-8"?>
<instance name="Secret Area in the Keucereus Fortress" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
<activityTime val="15" />
<activityTime val="5" />
<allowSummon val="false" />
<emptyDestroyTime val="1" />
<exitPoint x="-185057" y="242821" z="1576" />
<spawnlist>
<!-- Lelrikia -->
<group name="general">
<spawn npcId="32567" x="-23985" y="-8965" z="-5388" heading="0" respawn="0" />
<spawn npcId="32567" x="-23966" y="-8963" z="-5389" heading="0" respawn="0" />
</group>
</spawnlist>
</instance>
......@@ -37,7 +37,7 @@ public final class SecretArea extends Quest
}
private static final int TEMPLATE_ID = 117;
private static final int TEMPLATE_ID = 118;
private static final int GINBY = 32566;
private static final int LELRIKIA = 32567;
private static final int ENTER = 0;
......@@ -72,7 +72,7 @@ public final class SecretArea extends Quest
}
world = new SAWorld();
world.setInstanceId(InstanceManager.getInstance().createDynamicInstance("SecretArea.xml"));
world.setInstanceId(InstanceManager.getInstance().createDynamicInstance("SecretAreaInTheKeucereusFortress.xml"));
world.setTemplateId(TEMPLATE_ID);
world.addAllowed(player.getObjectId());
world.setStatus(0);
......
......@@ -50,6 +50,7 @@ import instances.NornilsGardenQuest.NornilsGardenQuest;
import instances.PailakaDevilsLegacy.PailakaDevilsLegacy;
import instances.PailakaSongOfIceAndFire.PailakaSongOfIceAndFire;
import instances.SanctumOftheLordsOfDawn.SanctumOftheLordsOfDawn;
import instances.SecretAreaInTheKeucereusFortress1.SecretAreaInTheKeucereusFortress1;
/**
* Instance class-loader.
......@@ -90,6 +91,7 @@ public final class InstanceLoader
PailakaDevilsLegacy.class,
PailakaSongOfIceAndFire.class,
SanctumOftheLordsOfDawn.class,
SecretAreaInTheKeucereusFortress1.class,
};
public static void main(String[] args)
......
<html><body>Soldier Ginby:<br>
Hurry! Come back before anybody sees you!
</body></html>
\ No newline at end of file
/*
* Copyright (C) 2004-2017 L2J DataPack
*
* This file is part of L2J DataPack.
*
* L2J DataPack is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* L2J DataPack is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package instances.SecretAreaInTheKeucereusFortress1;
import com.l2jserver.gameserver.model.Location;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.instancezone.InstanceWorld;
import com.l2jserver.gameserver.model.quest.QuestState;
import instances.AbstractInstance;
import quests.Q10270_BirthOfTheSeed.Q10270_BirthOfTheSeed;
/**
* Secret Area in the Keucereus Fortress instance zone.
* @author Adry_85
* @since 2.6.0.0
*/
public final class SecretAreaInTheKeucereusFortress1 extends AbstractInstance
{
protected class SAKF1World extends InstanceWorld
{
}
// NPC
private static final int GINBY = 32566;
// Location
private static final Location START_LOC = new Location(-23530, -8963, -5413);
// Misc
private static final int TEMPLATE_ID = 117;
public SecretAreaInTheKeucereusFortress1()
{
super(SecretAreaInTheKeucereusFortress1.class.getSimpleName());
addStartNpc(GINBY);
addTalkId(GINBY);
}
@Override
public String onTalk(L2Npc npc, L2PcInstance player)
{
final QuestState st = player.getQuestState(Q10270_BirthOfTheSeed.class.getSimpleName());
if ((st != null) && (st.getMemoState() >= 5) && (st.getMemoState() < 20))
{
enterInstance(player, new SAKF1World(), "SecretAreaInTheKeucereusFortress.xml", TEMPLATE_ID);
if (st.isMemoState(5))
{
st.setMemoState(10);
}
return "32566-01.html";
}
return super.onTalk(npc, player);
}
@Override
public void onEnterInstance(L2PcInstance player, InstanceWorld world, boolean firstEntrance)
{
if (firstEntrance)
{
world.addAllowed(player.getObjectId());
}
teleportPlayer(player, START_LOC, world.getInstanceId(), false);
}
}
<html><body>War Mage Artius:<br>
Can't you see that I'm busy? What is it?<br>
<a action="bypass -h Quest Q10270_BirthOfTheSeed 32559-02.html">I'm here because of the mission Plenos mentioned</a>
</body></html>
\ No newline at end of file
<html><body>War Mage Artius:<br>
Ah! You came because of the favor I asked of Plenos. There's an important mission I have in mind, but I must stay here to safeguard the <font color="LEVEL">Barrier Orb</font>. That's why I asked him to gather some capable adventurers.<br>
We must gather information about the <font color="LEVEL">Seed of Infinity</font>. You know that the major areas of the <font color="LEVEL">Seed of Infinity</font> are guarded by the undead, don't you? I hear that each of these areas is guarded by an especially strong chief gatekeeper.<br>
<font color="LEVEL">The Hall of Suffering is guarded by the twin Death Knights Yehan Klodekus and Yehan Klanikus, and the Hall of Erosion is guarded by Cohemenes.</font>You must defeat these chief gatekeepers and bring proof. Through that we might be able to learn some vital intelligence.
</body></html>
\ No newline at end of file
<html><body>War Mage Artius:<br>
Thanks to you, we were able to learn much more about the Seed of Infinity. Now we will have an easier time defeating it.<br>
(You have already completed this quest.)
</body></html>
\ No newline at end of file
<html><body>War Mage Artius:<br>
Ah, you've done well!<br>
Show me what you brought.<br>
Hmm...this will take some time to analyze. Come back later.
</body></html>
\ No newline at end of file
<html><body>War Mage Artius:<br>
You haven't brought it all! I'm sure you worked hard to collect these, but unless you get them all, it's all meaningless. You must bring back the rest of the evidence.
</body></html>
\ No newline at end of file
<html><body>War Mage Artius:<br>
Defeat the chief gatekeepers that guard the major areas of the <font color="LEVEL">Seed of Infinity</font>. <font color="LEVEL">Defeat Yehan Klodekus and Yehan Klanikus, who guard the Hall of Suffering, and Cohemenes, who guards the Hall of Erosion, and bring back the proof we need. When we inspect it, we may learn some vital intelligence.
</body></html>
\ No newline at end of file
<html><body>War Mage Artius:<br>
This is very surprising. Not just their bodies, but even the things left behind by them after death possess great magic power. I've never seen anything like it. I know they were chief gatekeepers, but they were once living, breathing Humans. How can they possess such power? I can hardly imagine how powerful the lord who guards the Seed of Immortality must be.<br>
This is very dire... As much as I hate to admit it, I think we need his help.<br>
<a action="bypass -h Quest Q10270_BirthOfTheSeed 32559-08.html">"His?"</a>
</body></html>
\ No newline at end of file
<html><body>War Mage Artius:<br>
Actually, there is a Temple of Shilen beneath Keucereus Alliance Base. It is so secret that nobody knows about it. There is a priest of Shilen in hiding there. His name is Lelrikia. I think we need to ask him about this.<br>
The entrace is guarded by <font color="LEVEL">Soldier Ginby</font>. He seems to be in the pay of the priest these days, so his loyalty is suspect. But go to him and ask him to let you in.
</body></html>
\ No newline at end of file
<html><body>War Mage Artius:<br>
This is very surprising. Not just their bodies, but even the things left behind by them after death possess great magic power. I've never seen anything like it. I know they were chief gatekeepers, but they were once living, breathing Humans. How can they possess such power? I can hardly imagine how powerful the lord who guards the Seed of Immortaility must be.<br>
This is very dire... As much as I hate to admit it, I think we need his help again.<br>
<a action="bypass -h Quest Q10270_BirthOfTheSeed 32559-10.html">"Are you talking about Shilen's Priest Lelrikia in the secret fortress?"</a>
</body></html>
\ No newline at end of file
<html><body>War Mage Artius:<br>
That's right. Since you know already, I don't need to tell you any more. Go to <font color="LEVEL">Soldier Ginby</font> and ask him to let you in.
</body></html>
\ No newline at end of file
<html><body>War Mage Artius:<br>
Thank you. That was important information.
</body></html>
\ No newline at end of file
<html><body>Soldier Plenos:<br>
I need strong adventurers willing to volunteer for a mission from War Mage Artius. Are you interested? If you plan to go to the <font color="LEVEL">Seed of Infinity</font>, you can take care of this mission when you go.<br>
<a action="bypass -h Quest Q10270_BirthOfTheSeed 32563-02.htm">Tell me what it is</a>
</body></html>
\ No newline at end of file
<html><body>Soldier Plenos:<br>
In war, knowledge is power.<br>
War Mage Artius wants information about the place called the <font color="LEVEL">Seed of Infinity</font>. All we know now is that it's a land of death ruled by the Lord of the Undead.<br>
Learning more might give us the key to winning this war. That's why War Mage Artius is looking for the right adventurer to investigate this mysterious place. Are you interested?<br>
<a action="bypass -h Quest Q10270_BirthOfTheSeed 32563-03.htm">Say yes</a>
</body></html>
\ No newline at end of file
<html><body>Soldier Plenos:<br>
Then go see <font color="LEVEL">War Mage Artius</font>. He will give you the mission details. I wish you luck!
</body></html>
\ No newline at end of file
<html><body>Soldier Plenos:<br>
I need strong adventurers willing to volunteer for a mission from War Mage Artius. Do you know any you can recommend?<br>
(You must be level 75 or above to start this quest.)
</body></html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment