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

@@ -2,5 +2,5 @@
Er, quite.<br>
Not to pat my own back, but I'm certain my mental capacity far exceeds those of the rangers. I need to get in there, but they won't let me... perhaps I can send a message instead?<br>
Perhaps you can pass it on? That way, they're not burdened with protecting my hide, and we can actually get something of scientific value from the ruins. What do you say?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10361_RolesOfTheSeeker 32977-03.htm">"Sure. Sounds good."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10361_RolesOfTheSeeker 32977-03.html">"Sure. Sounds good."</Button>
</body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Chesha:<br>
There are many dangerous monsters in the Ruins of Ye Sagira - many see it as one of the most dangerous places in Talking Island. However, if you don't anger the monsters in Exploration Zone 1, they won't attack. Why did you come to me?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10361_RolesOfTheSeeker 33449-02.htm">"Lakcis asked that I come here."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10361_RolesOfTheSeeker 33449-02.html">"Lakcis asked that I come here."</Button>
</body></html>

View File

@@ -2,5 +2,5 @@
Lakcis? Hmm.<br1>
The man has spent his life studying, and has no understanding of the way of things, of people, of war. I refused to bring him here, you know... I was afraid he'd accidentally hurt an animal here, and find death in mere minutes.<br>
What did he say?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10361_RolesOfTheSeeker 33449-03.htm">"He said he was ready to come."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10361_RolesOfTheSeeker 33449-03.html">"He said he was ready to come."</Button>
</body></html>

View File

@@ -42,7 +42,7 @@ public final class Q10361_RolesOfTheSeeker extends Quest
super(10361);
addStartNpc(LAKCIS);
addTalkId(LAKCIS, CHESHA);
addCondLevel(MIN_LEVEL, MAX_LEVEL, "32977-05.htm");
addCondLevel(MIN_LEVEL, MAX_LEVEL, "32977-05.html");
}
@Override
@@ -58,19 +58,19 @@ public final class Q10361_RolesOfTheSeeker extends Quest
switch (event)
{
case "32977-02.htm":
case "33449-02.htm":
case "33449-02.html":
{
htmltext = event;
break;
}
case "32977-03.htm":
case "32977-03.html":
{
qs.startQuest();
showOnScreenMsg(player, NpcStringId.ENTER_THE_RUINS_OF_YE_SAGIRA_THROUGH_THE_YE_SAGIRA_TELEPORT_DEVICE, ExShowScreenMessage.TOP_CENTER, 4500);
htmltext = event;
break;
}
case "33449-03.htm":
case "33449-03.html":
{
if (qs.isStarted())
{
@@ -103,12 +103,12 @@ public final class Q10361_RolesOfTheSeeker extends Quest
}
case State.STARTED:
{
htmltext = npc.getId() == LAKCIS ? "32977-04.htm" : "33449-01.htm";
htmltext = npc.getId() == LAKCIS ? "32977-04.html" : "33449-01.html";
break;
}
case State.COMPLETED:
{
htmltext = npc.getId() == LAKCIS ? "32977-06.htm" : "33449-04.htm";
htmltext = npc.getId() == LAKCIS ? "32977-06.html" : "33449-04.html";
break;
}
}