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

Missing quest Seven Signs, One Who Seeks the Power of the Seal (10296)

parent bec97958
No related branches found
No related tags found
No related merge requests found
Showing
with 124 additions and 22 deletions
<?xml version="1.0" encoding="UTF-8"?>
<instance name="Elcadia's Tent" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
<activityTime val="30" />
<activityTime val="45" />
<allowSummon val="false" />
<emptyDestroyTime val="1" />
<exitPoint x="43275" y="-87928" z="-2835" />
<exitPoint x="43347" y="-87923" z="-2820" />
<spawnlist>
<group name="general">
<!-- Elcadia -->
......
......@@ -18,11 +18,6 @@
*/
package instances.ElcadiasTent;
import instances.AbstractInstance;
import quests.Q10292_SevenSignsGirlOfDoubt.Q10292_SevenSignsGirlOfDoubt;
import quests.Q10293_SevenSignsForbiddenBookOfTheElmoreAdenKingdom.Q10293_SevenSignsForbiddenBookOfTheElmoreAdenKingdom;
import quests.Q10294_SevenSignsToTheMonasteryOfSilence.Q10294_SevenSignsToTheMonasteryOfSilence;
import com.l2jserver.gameserver.instancemanager.InstanceManager;
import com.l2jserver.gameserver.model.Location;
import com.l2jserver.gameserver.model.actor.L2Npc;
......@@ -30,6 +25,12 @@ 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.Q10292_SevenSignsGirlOfDoubt.Q10292_SevenSignsGirlOfDoubt;
import quests.Q10293_SevenSignsForbiddenBookOfTheElmoreAdenKingdom.Q10293_SevenSignsForbiddenBookOfTheElmoreAdenKingdom;
import quests.Q10294_SevenSignsToTheMonasteryOfSilence.Q10294_SevenSignsToTheMonasteryOfSilence;
import quests.Q10296_SevenSignsOneWhoSeeksThePowerOfTheSeal.Q10296_SevenSignsOneWhoSeeksThePowerOfTheSeal;
/**
* Elcadia's Tent instance zone.
* @author Adry_85
......@@ -45,8 +46,8 @@ public final class ElcadiasTent extends AbstractInstance
private static final int ELCADIA = 32784;
private static final int GRUFF_LOOKING_MAN = 32862;
// Locations
private static final Location START_LOC = new Location(89706, -238074, -9632, 0, 0);
private static final Location EXIT_LOC = new Location(43316, -87986, -2832, 0, 0);
private static final Location START_LOC = new Location(89797, -238081, -9632);
private static final Location EXIT_LOC = new Location(43347, -87923, -2820);
// Misc
private static final int TEMPLATE_ID = 158;
......@@ -63,13 +64,15 @@ public final class ElcadiasTent extends AbstractInstance
{
if (npc.getId() == GRUFF_LOOKING_MAN)
{
final QuestState GirlOfDoubt = talker.getQuestState(Q10292_SevenSignsGirlOfDoubt.class.getSimpleName());
final QuestState ForbiddenBook = talker.getQuestState(Q10293_SevenSignsForbiddenBookOfTheElmoreAdenKingdom.class.getSimpleName());
final QuestState Monastery = talker.getQuestState(Q10294_SevenSignsToTheMonasteryOfSilence.class.getSimpleName());
if (((GirlOfDoubt != null) && GirlOfDoubt.isStarted()) //
|| ((GirlOfDoubt != null) && GirlOfDoubt.isCompleted() && (ForbiddenBook == null)) //
|| ((ForbiddenBook != null) && ForbiddenBook.isStarted()) //
|| ((ForbiddenBook != null) && ForbiddenBook.isCompleted() && (Monastery == null)))
final QuestState Q10292 = talker.getQuestState(Q10292_SevenSignsGirlOfDoubt.class.getSimpleName());
final QuestState Q10293 = talker.getQuestState(Q10293_SevenSignsForbiddenBookOfTheElmoreAdenKingdom.class.getSimpleName());
final QuestState Q10294 = talker.getQuestState(Q10294_SevenSignsToTheMonasteryOfSilence.class.getSimpleName());
final QuestState Q10296 = talker.getQuestState(Q10296_SevenSignsOneWhoSeeksThePowerOfTheSeal.class.getSimpleName());
if (((Q10292 != null) && Q10292.isStarted()) //
|| ((Q10292 != null) && Q10292.isCompleted() && (Q10293 == null)) //
|| ((Q10293 != null) && Q10293.isStarted()) //
|| ((Q10293 != null) && Q10293.isCompleted() && (Q10294 == null)) //
|| ((Q10296 != null) && (Q10296.getMemoState() > 2) && (Q10296.getMemoState() < 4)))
{
enterInstance(talker, new ETWorld(), "ElcadiasTent.xml", TEMPLATE_ID);
}
......
......@@ -18,14 +18,14 @@
*/
package instances.HideoutOfTheDawn;
import instances.AbstractInstance;
import com.l2jserver.gameserver.instancemanager.InstanceManager;
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 instances.AbstractInstance;
/**
* Hideout of the Dawn instance zone.
* @author Adry_85
......@@ -41,8 +41,8 @@ public final class HideoutOfTheDawn extends AbstractInstance
private static final int WOOD = 32593;
private static final int JAINA = 32617;
// Location
private static final Location WOOD_LOC = new Location(-23758, -8959, -5384, 0, 0);
private static final Location JAINA_LOC = new Location(147072, 23743, -1984, 0);
private static final Location WOOD_LOC = new Location(-23758, -8959, -5384);
private static final Location JAINA_LOC = new Location(147072, 23743, -1984);
// Misc
private static final int TEMPLATE_ID = 113;
......
......@@ -33,6 +33,7 @@ import com.l2jserver.gameserver.network.clientpackets.Say2;
import instances.AbstractInstance;
import quests.Q10294_SevenSignsToTheMonasteryOfSilence.Q10294_SevenSignsToTheMonasteryOfSilence;
import quests.Q10295_SevenSignsSolinasTomb.Q10295_SevenSignsSolinasTomb;
import quests.Q10296_SevenSignsOneWhoSeeksThePowerOfTheSeal.Q10296_SevenSignsOneWhoSeeksThePowerOfTheSeal;
/**
* Monastery of Silence instance zone.
......@@ -64,6 +65,7 @@ public final class MonasteryOfSilence1 extends AbstractInstance
// Monsters
private static final int TRAINEE_OF_REST = 27403;
private static final int SUPPLICANT_OF_REST = 27404;
private static final int ETIS_VAN_ETINA = 18949;
private static final int SOLINAS_GUARDIAN_1 = 18952;
private static final int SOLINAS_GUARDIAN_2 = 18953;
private static final int SOLINAS_GUARDIAN_3 = 18954;
......@@ -86,7 +88,7 @@ public final class MonasteryOfSilence1 extends AbstractInstance
};
// Locations
private static final Location START_LOC = new Location(120717, -86879, -3424);
private static final Location EXIT_LOC = new Location(115983, -87351, -3397, 0, 0);
private static final Location EXIT_LOC = new Location(115983, -87351, -3397);
private static final Location CENTRAL_ROOM_LOC = new Location(85794, -249788, -8320);
private static final Location SOUTH_WATCHERS_ROOM_LOC = new Location(85798, -246566, -8320);
private static final Location WEST_WATCHERS_ROOM_LOC = new Location(82531, -249405, -8320);
......@@ -105,6 +107,9 @@ public final class MonasteryOfSilence1 extends AbstractInstance
private static final Location SOLINAS_GUARDIAN_2_LOC = new Location(48736, -249632, -6768, -32628);
private static final Location SOLINAS_GUARDIAN_3_LOC = new Location(45392, -246303, -6768, -16268);
private static final Location SOLINAS_GUARDIAN_4_LOC = new Location(42016, -249648, -6764, 0);
private static final Location ELCADIA_LOC = new Location(115927, -87005, -3392);
private static final Location SPACE_LOC = new Location(76736, -241021, -10780);
private static final Location ETIS_VAN_ETINA_LOC = new Location(76625, -240824, -10832, 0);
private static final Location[] SLAVE_SPAWN_1_LOC =
{
new Location(55680, -252832, -6752),
......@@ -183,7 +188,7 @@ public final class MonasteryOfSilence1 extends AbstractInstance
{
super(MonasteryOfSilence1.class.getSimpleName());
addFirstTalkId(TELEPORT_CONTROL_DEVICE1, TELEPORT_CONTROL_DEVICE2, TELEPORT_CONTROL_DEVICE3, TELEPORT_CONTROL_DEVICE4);
addKillId(SOLINAS_GUARDIAN_1, SOLINAS_GUARDIAN_2, SOLINAS_GUARDIAN_3, SOLINAS_GUARDIAN_4, GUARDIAN_OF_THE_TOMB_1, GUARDIAN_OF_THE_TOMB_2, GUARDIAN_OF_THE_TOMB_3, GUARDIAN_OF_THE_TOMB_4);
addKillId(SOLINAS_GUARDIAN_1, SOLINAS_GUARDIAN_2, SOLINAS_GUARDIAN_3, SOLINAS_GUARDIAN_4, GUARDIAN_OF_THE_TOMB_1, GUARDIAN_OF_THE_TOMB_2, GUARDIAN_OF_THE_TOMB_3, GUARDIAN_OF_THE_TOMB_4, ETIS_VAN_ETINA);
addSpawnId(ERIS_EVIL_THOUGHTS, TOMB_OF_THE_SAINTESS);
addStartNpc(ODD_GLOBE, TELEPORT_CONTROL_DEVICE1, TELEPORT_CONTROL_DEVICE2, TELEPORT_CONTROL_DEVICE3, TELEPORT_CONTROL_DEVICE4, ERIS_EVIL_THOUGHTS);
addTalkId(ODD_GLOBE, ERIS_EVIL_THOUGHTS, RELIC_GUARDIAN, RELIC_WATCHER1, RELIC_WATCHER2, RELIC_WATCHER3, RELIC_WATCHER4, TELEPORT_CONTROL_DEVICE1, TELEPORT_CONTROL_DEVICE2, TELEPORT_CONTROL_DEVICE3, TELEPORT_CONTROL_DEVICE4, ERIS_EVIL_THOUGHTS);
......@@ -432,6 +437,25 @@ public final class MonasteryOfSilence1 extends AbstractInstance
}
return "32843-01.html";
}
case "START_MOVIE_Q10296":
{
player.showQuestMovie(29);
startQuestTimer("TELEPORT_SPACE", 60000, npc, player);
world.elcadia.teleToLocation(ELCADIA_LOC, world.getInstanceId(), 0);
break;
}
case "TELEPORT_SPACE":
{
teleportPlayer(player, SPACE_LOC, world.getInstanceId());
world.elcadia.teleToLocation(SPACE_LOC, world.getInstanceId(), 0);
addSpawn(ETIS_VAN_ETINA, ETIS_VAN_ETINA_LOC, false, 0, false, world.getInstanceId());
break;
}
case "TELEPORT_TO_PLAYER":
{
world.elcadia.teleToLocation(player.getX(), player.getY(), player.getZ(), 0, world.getInstanceId());
break;
}
}
}
return super.onAdvEvent(event, npc, player);
......@@ -480,6 +504,18 @@ public final class MonasteryOfSilence1 extends AbstractInstance
}
break;
}
case ETIS_VAN_ETINA:
{
player.showQuestMovie(30);
world.elcadia.teleToLocation(ELCADIA_LOC, world.getInstanceId(), 0);
startQuestTimer("TELEPORT_TO_PLAYER", 63000, npc, player);
final QuestState st = player.getQuestState(Q10296_SevenSignsOneWhoSeeksThePowerOfTheSeal.class.getSimpleName());
if ((st != null) && st.isMemoState(2))
{
st.setMemoState(3);
}
break;
}
}
}
......
<html><body>Hardin:<br>
Oh, hello. How's the research on Embryo going? Miss Elcadia is waiting for you.
</body></html>
\ No newline at end of file
<html><body>Hardin:<br>
I have been waiting for you. Hahaha, Elcadia, you have worked so hard. Now, do you have the result you craved? Hahaha. You seem like you have no idea what I am talking about. The Revolutionaries of Dusk and the Priests of Dawn are mere rabbles - your purpose was to watch them with Elcadia at Franz's request, wasn't it?<br>
<a action="bypass -h Quest Q10296_SevenSignsOneWhoSeeksThePowerOfTheSeal 30832-03.html">"How do you know that?"</a>
</body></html>
\ No newline at end of file
<html><body>Hardin:<br>
Hahaha... I don't know what you think of me, but I see through the minds of pitiful humans like Franz. In the end, however, I've got what I wanted with the help of Elcadia and you have been made aware of the upcoming threats to this world. Of course I do not want to take any side...<br>
<a action="bypass -h Quest Q10296_SevenSignsOneWhoSeeksThePowerOfTheSeal 30832-04.html">"Just get to the point."</a>
</body></html>
\ No newline at end of file
<html><body>Hardin:<br>
I see. I will tell Franz when I go back. I'll tell him that he should face the future threats more squarely and be prepared. Just as you saw with your bare eyes, Embryo's threat is just beginning... Tell him also that the Emperor's Seven Signs cannot be manipulated by mere humans...
</body></html>
\ No newline at end of file
<html><body>Priest Wood:<br>
How goes your task? Report back once it is complete.
</body></html>
\ No newline at end of file
<html><body>Priest Wood:<br>
I see that you have completed the work. All that's left now is to report to Lord Franz. Can you report to Lord Franz?<br>
<a action="bypass -h Quest Q10296_SevenSignsOneWhoSeeksThePowerOfTheSeal 32593-03.html">"Of course."</a>
</body></html>
\ No newline at end of file
<html><body>Priest Wood:<br>
OK, then go and greet Lord Franz. And remember your courtesies.<br>
<a action="bypass -h Quest HideoutOfTheDawn">Enter.</a>
</body></html>
\ No newline at end of file
<html><body>Priest Wood:<br>
Thank you again, for everything.
</body></html>
\ No newline at end of file
<html><body>Priest Franz:<br>
Well done! How's the assignment? Report to me.<br>
<a action="bypass -h Quest Q10296_SevenSignsOneWhoSeeksThePowerOfTheSeal 32597-02.html">"I have so much to tell you."</a>
</body></html>
\ No newline at end of file
<html><body>Priest Franz:<br>
Hardin... He is not credible and even dangerous... I have no idea what he's been up to based on the fact that he had built his own world after leaving the Ivory Tower with his enormous power. Anyhow, I must express my gratitude to you for putting in such a tremendous effort for this assignment.<br>
<a action="bypass -h Quest Q10296_SevenSignsOneWhoSeeksThePowerOfTheSeal 32597-03.html">"Great! Uh, do I get anything in return?"</a>
</body></html>
\ No newline at end of file
<html><body>Priest Franz:<br>
Hm... You seem strange. You don't seem like the person I used to know. If you are in a Subclass status, please come back talk to me later after returing back to your normal state.<br>
(You cannot complete the quest in the Subclass status.)
</body></html>
\ No newline at end of file
<html><body>Priest Franz:<br>
I believe we have enough information now. No matter what Hardin or the other Dusks say... Don't ever falter. Hardin is not someone you can trust. Now, seems like we are one step ahead toward the truth. I believe I will need your help again later on. I will ask you a favor again when that time comes. Good work!
</body></html>
\ No newline at end of file
<html><body>Abyssal Saintess Elcadia:<br>
That was an unbelievable fight! Etis van Etina... He is the one behind everything. Embryo and Etis are scheming to find the remaining seals and take control of this world.<br>
His power here was incomplete, and moreover his body was not real, but he was quite formidable nonetheless. I'm sure you noticed as much...<br>
<a action="bypass -h Quest Q10296_SevenSignsOneWhoSeeksThePowerOfTheSeal 32784-02.html">"What should I do from now?"</a>
</body></html>
\ No newline at end of file
<html><body>Abyssal Saintess Elcadia:<br>
You fought well, perhaps you were confidant having fought him before. He had only absorbed the power of 2 seals, and by using a virtual image he found us in this dimension. The scary part is that even with his limited power, I couldn't defeat him.<br>
We cannot allow any remaining seals to fall into Embryo's possession! If he absorbs more power... We may never be able to stop him...<br>
<a action="bypass -h Quest Q10296_SevenSignsOneWhoSeeksThePowerOfTheSeal 32784-03.html">"How can I stop Embryo?"</a>
</body></html>
\ No newline at end of file
<html><body>Abyssal Saintess Elcadia:<br>
I will go back and inform everyone of this situation. Someone will know what to do.<br>
Thank you. You are the reason I've made it this far. I think of us as friends, I hope you do as well.<br>
Oh, right. Hardin wanted me to ask you to come visit him, he wants to tell you something. Now that your schedule is clear, why don't you go see him?
</body></html>
\ No newline at end of file
<html><body>Abyssal Saintess Elcadia:<br>
I must go back now and inform my people of this. We will come up with something.<br>
Thank you, I never would have reached this far without you. I know I have been difficult, but I hope you will consider me a friend? I will think of you as one.<br>
Oh, before I forget, Hardin wanted me to ask you to visit him again, he has something important to tell you. I don't know what it is... Since you aren't busy why don't you go see him?
</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