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 @@
Well... good!<br>
So you must see how jarring it is when two commandos in the same unit don't see eye to eye! Sadly, I'm not just spouting hypotheticals here - there are two soldiers in my unit who won't talk to each other. If they were to go into combat, they'd be one hell of a weak link...<br>
I want someone to get them talking again. Negotiate, bang their heads together... I don't care.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10364_ObligationsOfTheSeeker 33451-03.htm">"Who are they?"</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10364_ObligationsOfTheSeeker 33451-03.html">"Who are they?"</Button>
</body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Walter:<br>
Did Dep send you? He did, didn't he. Well, I have nothing more to say to him. Hrmph!<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10364_ObligationsOfTheSeeker 33452-02.htm">"No, Celin sent me."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10364_ObligationsOfTheSeeker 33452-02.html">"No, Celin sent me."</Button>
</body></html>

View File

@@ -1,5 +1,5 @@
<html><body>Walter:<br>
Celin just doesn't know when to give up!<br>
Sigh... I tell you, it's about Dep, you can go back and tell Celin it won't work! I simply refuse to get involved with someone who doesn't have a shred of common sense.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10364_ObligationsOfTheSeeker 33452-03.htm">"What happened?"</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10364_ObligationsOfTheSeeker 33452-03.html">"What happened?"</Button>
</body></html>

View File

@@ -2,5 +2,5 @@
That's the problem, I don't know what happened! We've been working together just fine, then suddenly he gets all bent out of shape and storms off. I tried to find out what the problem was, and smooth things over, but he wouldn't even talk to me.<br>
I don't know what he's all worked up about, and frankly, I don't care! Stubborn old... Grr!<br>
Well, I have some work related papers that I want to give to him, but I don't want to make waves. Could you take them to him for me?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10364_ObligationsOfTheSeeker 33452-04.htm">"What do you need delivered?"</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10364_ObligationsOfTheSeeker 33452-04.html">"What do you need delivered?"</Button>
</body></html>

View File

@@ -2,5 +2,5 @@
Sigh... <br1>
When I'm feeling blue, I want go away, and be alone somewhere quiet. But, when you work as a ranger, you can't get away from busy place like these.<br>
Anyway, why are you here?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10364_ObligationsOfTheSeeker 33453-02.htm">"I've gathered the dirty papers."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10364_ObligationsOfTheSeeker 33453-02.html">"I've gathered the dirty papers."</Button>
</body></html>

View File

@@ -2,5 +2,5 @@
The papers from the Ruins of Ye Sagira?<br>
Ye Sagira was the home of the giants - papers discovered there will tell us more about the giants!<br>
Show them to me, and tell me... how did you find out about the papers?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10364_ObligationsOfTheSeeker 33453-03.htm">"Walter told me."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10364_ObligationsOfTheSeeker 33453-03.html">"Walter told me."</Button>
</body></html>

View File

@@ -3,5 +3,5 @@ Walter? Hm...<br>
Actually, I've known about the paper pieces in Ye Sagira for quite some time now...<br>
I just wasn't sure exactly where they were. I was looking for them a while back, wandering through Exploration Zone 3 with Walter, but he kept following me and talking to me and... well... I ended up losing my temper and shouting at him... we haven't spoken since.<br>
Did he say anything else?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10364_ObligationsOfTheSeeker 33453-04.htm">"He said he wanted to talk and make up."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10364_ObligationsOfTheSeeker 33453-04.html">"He said he wanted to talk and make up."</Button>
</body></html>

View File

@@ -53,9 +53,9 @@ public final class Q10364_ObligationsOfTheSeeker extends Quest
addTalkId(CELIN, WALTER, DEP);
addKillId(KRAPHER, AVIAN);
registerQuestItems(DIRTY_PAPER_PIECES);
addCondMinLevel(MIN_LEVEL, "33451-04.htm");
addCondMaxLevel(MAX_LEVEL, "33451-04.htm");
addCondCompletedQuest(Q10363_RequestOfTheSeeker.class.getSimpleName(), "33451-04.htm");
addCondMinLevel(MIN_LEVEL, "33451-04.html");
addCondMaxLevel(MAX_LEVEL, "33451-04.html");
addCondCompletedQuest(Q10363_RequestOfTheSeeker.class.getSimpleName(), "33451-04.html");
}
@Override
@@ -71,21 +71,21 @@ public final class Q10364_ObligationsOfTheSeeker extends Quest
switch (event)
{
case "33451-02.htm":
case "33452-02.htm":
case "33452-03.htm":
case "33453-02.htm":
case "33453-03.htm":
case "33452-02.html":
case "33452-03.html":
case "33453-02.html":
case "33453-03.html":
{
htmltext = event;
break;
}
case "33451-03.htm":
case "33451-03.html":
{
qs.startQuest();
htmltext = event;
break;
}
case "33452-04.htm":
case "33452-04.html":
{
if (qs.isCond(1))
{
@@ -95,7 +95,7 @@ public final class Q10364_ObligationsOfTheSeeker extends Quest
}
break;
}
case "33453-04.htm":
case "33453-04.html":
{
if (qs.isCond(3))
{
@@ -154,7 +154,7 @@ public final class Q10364_ObligationsOfTheSeeker extends Quest
{
if (qs.isCond(1))
{
htmltext = "33451-03.htm";
htmltext = "33451-03.html";
break;
}
break;
@@ -165,17 +165,17 @@ public final class Q10364_ObligationsOfTheSeeker extends Quest
{
case 1:
{
htmltext = "33452-01.htm";
htmltext = "33452-01.html";
break;
}
case 2:
{
htmltext = "33452-05.htm";
htmltext = "33452-05.html";
break;
}
case 3:
{
htmltext = "33452-06.htm";
htmltext = "33452-06.html";
break;
}
}
@@ -185,7 +185,7 @@ public final class Q10364_ObligationsOfTheSeeker extends Quest
{
if (qs.isCond(3))
{
htmltext = "33453-01.htm";
htmltext = "33453-01.html";
break;
}
}
@@ -199,17 +199,17 @@ public final class Q10364_ObligationsOfTheSeeker extends Quest
{
case CELIN:
{
htmltext = "33451-05.htm";
htmltext = "33451-05.html";
break;
}
case WALTER:
{
htmltext = "33452-07.htm";
htmltext = "33452-07.html";
break;
}
case DEP:
{
htmltext = "33453-05.htm";
htmltext = "33453-05.html";
break;
}
}