Quest dialog extension changes.

This commit is contained in:
MobiusDev
2016-07-11 16:26:49 +00:00
parent 14b5fa63b1
commit c3d15707a3
393 changed files with 438 additions and 430 deletions

View File

@@ -1,4 +1,4 @@
<html><body>Pa'agrio Lord Kakai:<br>
What... what do you have there in your hand? Whatever it is, it's giving me a killer headache... Oh, you've got yourself a nasty little Evil Fragment, huh. You've seen Pantheon, have you? Hand that thing over and let me quench it before we both get migraines.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10328_RequestToSealTheEvilFragment 30565-02.htm">"Here is the Evil Fragment."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10328_RequestToSealTheEvilFragment 30565-02.html">"Here is the Evil Fragment."</Button>
</body></html>

View File

@@ -1,4 +1,4 @@
<html><head><body>Pa'agrio Lord Kakai:<br>
Whoa! Step back a bit, that's one potent and nasty Evil Fragment you've got there. From Pantheon, huh? What does he want me to do with it?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10328_RequestToSealTheEvilFragment 30565-03.htm">"He wants you to seal this."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10328_RequestToSealTheEvilFragment 30565-03.html">"He wants you to seal this."</Button>
</body></html>

View File

@@ -1,6 +1,6 @@
<html><body>Pantheon:<br>
I have a favor to ask of you.<br1>
As I mentioned, the people who attacked you in the museum have broken in before, and we want to find out who they are. As luck would have it, they dropped this little beauty. I want you to take it to a friend of mine...<br>
As I mentioned, the people who attacked you in the museum have broken in before, and we want to find out who they are. As luck would have it, they dropped this little beauty. I want you to take it to a friend of mine...<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10328_RequestToSealTheEvilFragment 32972-02.htm">"Take what?"</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10328_RequestToSealTheEvilFragment 32972-03.htm">"What should I do?"</Button>
</body></html>

View File

@@ -1,5 +1,5 @@
<html><body>Pantheon:<br>
Well, we don't know when the monster will hatch, so we want you to destroy it as soon as possible! Asterios, the head of the elves, is away, so the only one that can seal the seed is Kakai, leader of the Orcs.<br>
We want you to take the seed to <font color="LEVEL">Pa'agrio Lord Kakai</font>, he's in the Administration Office.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10328_RequestToSealTheEvilFragment 32972-04.htm">"Sounds easy. I'll do it."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10328_RequestToSealTheEvilFragment 32972-04.html">"Sounds easy. I'll do it."</Button>
</body></html>

View File

@@ -43,9 +43,9 @@ public final class Q10328_RequestToSealTheEvilFragment extends Quest
super(10328);
addStartNpc(PANTHEON);
addTalkId(PANTHEON, KAKAI);
addCondMaxLevel(MAX_LEVEL, "32972-06.htm");
addCondMaxLevel(MAX_LEVEL, "32972-06.html");
registerQuestItems(EVIL_FRAGMENT);
addCondCompletedQuest(Q10327_IntruderWhoWantsTheBookOfGiants.class.getSimpleName(), "32972-06.htm");
addCondCompletedQuest(Q10327_IntruderWhoWantsTheBookOfGiants.class.getSimpleName(), "32972-06.html");
}
@Override
@@ -60,7 +60,7 @@ public final class Q10328_RequestToSealTheEvilFragment extends Quest
String htmltext = null;
switch (event)
{
case "32972-04.htm":
case "32972-04.html":
{
qs.startQuest();
giveItems(player, EVIL_FRAGMENT, 1);
@@ -69,12 +69,12 @@ public final class Q10328_RequestToSealTheEvilFragment extends Quest
}
case "32972-02.htm":
case "32972-03.htm":
case "30565-02.htm":
case "30565-02.html":
{
htmltext = event;
break;
}
case "30565-03.htm":
case "30565-03.html":
{
if (qs.isStarted())
{
@@ -108,12 +108,12 @@ public final class Q10328_RequestToSealTheEvilFragment extends Quest
}
case State.STARTED:
{
htmltext = npc.getId() == PANTHEON ? "32972-05.htm" : "30565-01.htm";
htmltext = npc.getId() == PANTHEON ? "32972-05.html" : "30565-01.html";
break;
}
case State.COMPLETED:
{
htmltext = npc.getId() == PANTHEON ? "32972-07.htm" : "30565-04.htm";
htmltext = npc.getId() == PANTHEON ? "32972-07.html" : "30565-04.html";
break;
}
}