Underground quest updates (10320 to 10327).

Contributed by gyo.
This commit is contained in:
MobiusDev
2016-01-06 09:51:52 +00:00
parent d9b3a8c78f
commit 2dfb4847ad
77 changed files with 421 additions and 262 deletions

View File

@@ -1,5 +1,5 @@
<html><body>Pantheon:<br>
We think they were looking for anything related to the Giants,and tried to steal The War of Gods and Giants, an ancient book that was discovered in Ye Sagira.<br>
It has many stories about the powers of the Giants, how that power can be learned, and about others species from their time. Now that the island has crashed, perhaps we should think about safeguarding the book...<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10327_IntruderWhoWantsTheBookOfGiants 32972-03.html">"I'd like to help."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10327_IntruderWhoWantsTheBookOfGiants 32972-03.htm">"I'd like to help."</Button>
</body></html>

View File

@@ -1,6 +0,0 @@
<html><body>Pantheon:<br>
Thank you!<br1>
When you get to the museum, you should see a number of desks - <font color="LEVEL">one of them</font> has <font color="LEVEL">The War of Giants and Gods</font> on it. Find it, and bring it to me.<br>
Would you like to go to the museum?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Quest MuseumDungeon enter_instance">"Yes."</Button>
</body></html>

View File

@@ -1,5 +1,4 @@
<html><head><body>Pantheon:<br>
You've brought the book? Good! It must have been difficult to find it amongst all those others!<br>
I hope you didn't get hurt either - Gallint may be a fool, but plenty have hurt themselves moving books around before him.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10327_IntruderWhoWantsTheBookOfGiants 32972-06.html">"I had to fight someone!"</Button>
<html><body>Pantheon:<br>
I just saw suspicious intruders entering the Museum! I fear for the rare and valuable articles inside the Museum. Please hurry into the Museum and deal with the intruders!<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Quest MuseumDungeon enter_instance">"Sure. I am going in."</Button>
</body></html>

View File

@@ -1,6 +1,5 @@
<html><body>Pantheon:<br>
What? The thieves are getting more brash by the day!<br>
Hmm... So, I wonder if the books related to Giants... are also related to Embryo. It's just speculation, but something worth considering.<br>
Now, I must apologize for placing you in harm's way. Please accept these Earrings - accessories such as these help protect you against magic!<br>
Remember: you can wear up to two <font color="LEVEL">earrings</font> at a time. Purchase more from the <font color="LEVEL">General Merchant</font> if you wish.
<html><head><body>Pantheon:<br>
You've brought the book? Good! It must have been difficult to find it amongst all those others!<br>
I hope you didn't get hurt either - Gallint may be a fool, but plenty have hurt themselves moving books around before him.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10327_IntruderWhoWantsTheBookOfGiants 32972-07.html">"I had to fight someone!"</Button>
</body></html>

View File

@@ -1,4 +1,6 @@
<html><body>Pantheon:<br>
I'm still looking into things, friend. I'll let you know when I find anything.<br>
(You have already completed this quest.)
'What? The thieves are getting more brash by the day!<br>
Hmm... So, I wonder if the books related to Giants... are also related to Embryo. It's just speculation, but something worth considering.<br>
Now, I must apologize for placing you in harm's way. Please accept these Earrings - accessories such as these help protect you against magic!<br>
Remember: you can wear up to two <font color="LEVEL">earrings</font> at a time. Purchase more from the <font color="LEVEL">General Merchant</font> if you wish.
</body></html>

View File

@@ -0,0 +1,4 @@
<html><body>Pantheon:<br>
I'm still looking into things, friend. I'll let you know when I find anything.<br>
(You have already completed this quest.)
</body></html>

View File

@@ -0,0 +1,4 @@
<html><body>Pantheon:<br>
This mission can't be given to just anyone!<br>
(Only characters below 20, who've completed the "Let's Respect Elders" quest, may start this quest)
</body></html>

View File

@@ -46,8 +46,8 @@ public class Q10327_IntruderWhoWantsTheBookOfGiants extends Quest
addStartNpc(PANTHEON);
addTalkId(PANTHEON);
registerQuestItems(THE_WAR_OF_GODS_AND_GIANTS);
addCondMaxLevel(MAX_LEVEL, "no_level.html");
addCondCompletedQuest(Q10326_RespectYourElders.class.getSimpleName(), "no_level.html");
addCondMaxLevel(MAX_LEVEL, "32972-09.htm");
addCondCompletedQuest(Q10326_RespectYourElders.class.getSimpleName(), "32972-09.htm");
}
@Override
@@ -67,13 +67,13 @@ public class Q10327_IntruderWhoWantsTheBookOfGiants extends Quest
htmltext = event;
break;
}
case "32972-03.html":
case "32972-03.htm":
{
qs.startQuest();
htmltext = event;
break;
}
case "32972-06.html":
case "32972-07.html":
{
if (qs.isCond(3))
{
@@ -82,6 +82,7 @@ public class Q10327_IntruderWhoWantsTheBookOfGiants extends Quest
addExpAndSp(player, 7800, 5);
showOnScreenMsg(player, NpcStringId.ACCESSORIES_HAVE_BEEN_ADDED_TO_YOUR_INVENTORY, ExShowScreenMessage.TOP_CENTER, 5000);
qs.exitQuest(false, true);
htmltext = event;
}
break;
}
@@ -104,19 +105,29 @@ public class Q10327_IntruderWhoWantsTheBookOfGiants extends Quest
}
case State.STARTED:
{
if (qs.isCond(3))
switch (qs.getCond())
{
htmltext = "32972-05.html";
}
else
{
htmltext = "32972-04.html";
case 1:
{
htmltext = "32972-04.html";
break;
}
case 2:
{
htmltext = "32972-05.html";
break;
}
case 3:
{
htmltext = "32972-06.html";
break;
}
}
break;
}
case State.COMPLETED:
{
htmltext = "32972-07.html";
htmltext = "32972-08.html";
break;
}
}

View File

@@ -1,4 +0,0 @@
<html><body>Pantheon:<br>
This mission can't be give to just anyone!<br>
(Only characters below 20, who have completed the "Respect Your Elders" quest, may start this quest.)
</body></html>