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>Pa'agrio Lord Kakai:<br>
The Evil Fragments continue to spread. It's beginning to be a toss up whether we're doing archaeology or parasite control over in the ruins. I'd love to send over some reinforcements, but we've had a rash of monster attacks in the village, so I can't just reassign troops.<br>
Could you head on over to Ye Sagira and help out?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10329_BackupSeekers 30565-03.htm">"No problem."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10329_BackupSeekers 30565-03.html">"No problem."</Button>
</body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Atran:<br>
Why are you looking at me like that? It makes me feel terrible! Who are you? Huh?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10329_BackupSeekers 33448-02.htm">"Kakai sent me."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10329_BackupSeekers 33448-02.html">"Kakai sent me."</Button>
</body></html>

View File

@@ -78,8 +78,8 @@ public final class Q10329_BackupSeekers extends Quest
addTalkId(KAKAI, ATRAN);
addSpawnId(BART);
addMoveFinishedId(BART);
addCondMaxLevel(MAX_LEVEL, "30565-05.htm");
addCondCompletedQuest(Q10328_RequestToSealTheEvilFragment.class.getSimpleName(), "30565-05.htm");
addCondMaxLevel(MAX_LEVEL, "30565-05.html");
addCondCompletedQuest(Q10328_RequestToSealTheEvilFragment.class.getSimpleName(), "30565-05.html");
}
@Override
@@ -99,7 +99,7 @@ public final class Q10329_BackupSeekers extends Quest
htmltext = event;
break;
}
case "30565-03.htm":
case "30565-03.html":
{
qs.startQuest();
htmltext = event;
@@ -109,7 +109,7 @@ public final class Q10329_BackupSeekers extends Quest
startQuestTimer("MOVE_DELAY", 500, bart, player);
break;
}
case "33448-02.htm":
case "33448-02.html":
{
if (qs.isStarted())
{
@@ -261,19 +261,19 @@ public final class Q10329_BackupSeekers extends Quest
{
if (npc.getId() == KAKAI)
{
htmltext = "30565-04.htm";
htmltext = "30565-04.html";
break;
}
else if (npc.getId() == ATRAN)
{
htmltext = "33448-01.htm";
htmltext = "33448-01.html";
break;
}
break;
}
case State.COMPLETED:
{
htmltext = npc.getId() == KAKAI ? "30565-04.htm" : "33448-03.htm";
htmltext = npc.getId() == KAKAI ? "30565-04.html" : "33448-03.html";
break;
}
}