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 @@
Crying, that's what.<br>
I can hear the cries of the people who've died here... the cries of the soldiers who were sacrificed to defend their families and friends...<br>
Please - stop their suffering.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10363_RequestOfTheSeeker 33450-03.htm">"I'll try."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10363_RequestOfTheSeeker 33450-03.html">"I'll try."</Button>
</body></html>

View File

@@ -3,5 +3,5 @@ Thank you!<br1>
The pain will hopefully start to subside now... hopefully.<br>
Listen, I have one more favor to ask. The other rangers all knew I was suffering the most, and were all looking out for me, <font color="LEVEL">Celin</font> especially.<br1>
Could you tell Celin what's happened?I'd appreciate it...<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10363_RequestOfTheSeeker 33450-06.htm">"Of course."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10363_RequestOfTheSeeker 33450-06.html">"Of course."</Button>
</body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Celin:<br>
Did you hear crying on your way here? I think the noises have died down,but maybe I'm finally getting used to them...<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10363_RequestOfTheSeeker 33451-02.htm">"I've seen them, and paid my condolences."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10363_RequestOfTheSeeker 33451-02.html">"I've seen them, and paid my condolences."</Button>
</body></html>

View File

@@ -2,5 +2,5 @@
You have? Oh... oh thank you!<br1>
Maybe now we can finally get some rest, and actually get some work done around here! The noises were so upsetting...<br>
Please, tell me how Nagel is? We all found it tough, but he dealt with everything much worse than the rest of us.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10363_RequestOfTheSeeker 33451-03.htm">"Don't worry. He's fine now."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10363_RequestOfTheSeeker 33451-03.html">"Don't worry. He's fine now."</Button>
</body></html>

View File

@@ -65,8 +65,8 @@ public final class Q10363_RequestOfTheSeeker extends Quest
addStartNpc(NAGEL);
addTalkId(NAGEL, CELIN);
addSpawnId(CORPSES);
addCondLevel(MIN_LEVEL, MAX_LEVEL, "33450-07.htm");
addCondCompletedQuest(Q10362_CertificationOfTheSeeker.class.getSimpleName(), "33450-07.htm");
addCondLevel(MIN_LEVEL, MAX_LEVEL, "33450-07.html");
addCondCompletedQuest(Q10362_CertificationOfTheSeeker.class.getSimpleName(), "33450-07.html");
}
@Override
@@ -82,18 +82,18 @@ public final class Q10363_RequestOfTheSeeker extends Quest
switch (event)
{
case "33450-02.htm":
case "33451-02.htm":
case "33451-02.html":
{
htmltext = event;
break;
}
case "33450-03.htm":
case "33450-03.html":
{
qs.startQuest();
htmltext = event;
break;
}
case "33450-06.htm":
case "33450-06.html":
{
if (qs.isCond(6))
{
@@ -105,7 +105,7 @@ public final class Q10363_RequestOfTheSeeker extends Quest
break;
}
case "33451-03.htm":
case "33451-03.html":
{
if (qs.isCond(7))
{
@@ -152,17 +152,17 @@ public final class Q10363_RequestOfTheSeeker extends Quest
case 4:
case 5:
{
htmltext = "33450-04.htm";
htmltext = "33450-04.html";
break;
}
case 6:
{
htmltext = "33450-05.htm";
htmltext = "33450-05.html";
break;
}
case 7:
{
htmltext = "33450-06.htm";
htmltext = "33450-06.html";
break;
}
}
@@ -171,7 +171,7 @@ public final class Q10363_RequestOfTheSeeker extends Quest
{
if (qs.isCond(7))
{
htmltext = "33451-01.htm";
htmltext = "33451-01.html";
break;
}
}
@@ -179,7 +179,7 @@ public final class Q10363_RequestOfTheSeeker extends Quest
}
case State.COMPLETED:
{
htmltext = npc.getId() == NAGEL ? "33450-07.htm" : "33451-04.htm";
htmltext = npc.getId() == NAGEL ? "33450-07.html" : "33451-04.html";
break;
}
}