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,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.htm">"I'd like to help."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10327_IntruderWhoWantsTheBookOfGiants 32972-03.html">"I'd like to help."</Button>
</body></html>

View File

@@ -1,5 +1,5 @@
<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.htm">"I had to fight someone!"</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10327_IntruderWhoWantsTheBookOfGiants 32972-07.html">"I had to fight someone!"</Button>
</body></html>

View File

@@ -46,8 +46,8 @@ public final class Q10327_IntruderWhoWantsTheBookOfGiants extends Quest
addStartNpc(PANTHEON);
addTalkId(PANTHEON);
registerQuestItems(THE_WAR_OF_GODS_AND_GIANTS);
addCondMaxLevel(MAX_LEVEL, "32972-09.htm");
addCondCompletedQuest(Q10326_RespectYourElders.class.getSimpleName(), "32972-09.htm");
addCondMaxLevel(MAX_LEVEL, "32972-09.html");
addCondCompletedQuest(Q10326_RespectYourElders.class.getSimpleName(), "32972-09.html");
}
@Override
@@ -67,13 +67,13 @@ public final class Q10327_IntruderWhoWantsTheBookOfGiants extends Quest
htmltext = event;
break;
}
case "32972-03.htm":
case "32972-03.html":
{
qs.startQuest();
htmltext = event;
break;
}
case "32972-07.htm":
case "32972-07.html":
{
if (qs.isCond(3))
{
@@ -106,23 +106,23 @@ public final class Q10327_IntruderWhoWantsTheBookOfGiants extends Quest
{
if (qs.isCond(1))
{
htmltext = "32972-04.htm";
htmltext = "32972-04.html";
break;
}
else if (qs.isCond(2))
{
htmltext = "32972-05.htm";
htmltext = "32972-05.html";
break;
}
else if (qs.isCond(3))
{
htmltext = "32972-06.htm";
htmltext = "32972-06.html";
break;
}
}
case State.COMPLETED:
{
htmltext = "32972-08.htm";
htmltext = "32972-08.html";
break;
}
}