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>Captain Bathis:<br>
Sakum by itself might not be such a big deal, but it's not the only monster around here.<br>
It's been stirring other monsters up and driving them out of their dens. We can't let that continue. Could you help capture Sakum?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10333_DisappearedSakum 30332-05.htm">I'll help</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10333_DisappearedSakum 30332-05.html">I'll help</Button>
</body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Guard Vent:<br>
What is it? Are you here to help? It's almost impossible to investigate Windmill Hill by myself!<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10333_DisappearedSakum 33176-02.htm">"Bathis sent me."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10333_DisappearedSakum 33176-02.html">"Bathis sent me."</Button>
</body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Guard Vent:<br>
Bathis? I thought he'd all but forgotten about me - he promised me soldiers over a month ago! Still, you're here now, at least...<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10333_DisappearedSakum 33176-03.htm">"What needs doing?"</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10333_DisappearedSakum 33176-03.html">"What needs doing?"</Button>
</body></html>

View File

@@ -1,5 +1,5 @@
<html><body>Guard Schunain:<br>
Can we keep the talking to a minimum, please? It's too hot to think.<br>
You look like someone Vent would have sent here.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10333_DisappearedSakum 33508-02.htm">"I've brought some suspicious marks."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10333_DisappearedSakum 33508-02.html">"I've brought some suspicious marks."</Button>
</body></html>

View File

@@ -1,5 +1,5 @@
<html><body>Guard Schunain:<br>
Suspicious marks? Oh, the strange markings on the spiders? I mean, they've always been venomous, but lately it's been out of control. I got bitten by one a few days ago, and I noticed some kind of strange mark, but I was too busy running for my life to get a good look.<br>
Hmm... Yes, now that I've gotten a good look, it looks like this mark means the spiders are linked to <font color="LEVEL">Sakum</font>.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10333_DisappearedSakum 33508-03.htm">"Why? What's this Sakum doing?"</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10333_DisappearedSakum 33508-03.html">"Why? What's this Sakum doing?"</Button>
</body></html>

View File

@@ -60,8 +60,8 @@ public final class Q10333_DisappearedSakum extends Quest
addKillId(LIZARDMEN, VAKU_ORC);
addKillId(SPIDERS);
registerQuestItems(BADGE);
addCondNotRace(Race.ERTHEIA, "30332-09.htm");
addCondLevel(MIN_LEVEL, MAX_LEVEL, "30332-10.htm");
addCondNotRace(Race.ERTHEIA, "30332-09.html");
addCondLevel(MIN_LEVEL, MAX_LEVEL, "30332-10.html");
}
@Override
@@ -79,19 +79,19 @@ public final class Q10333_DisappearedSakum extends Quest
case "30332-02.htm":
case "30332-03.htm":
case "30332-04.htm":
case "33176-02.htm":
case "33508-02.htm":
case "33176-02.html":
case "33508-02.html":
{
htmltext = event;
break;
}
case "30332-05.htm":
case "30332-05.html":
{
st.startQuest();
htmltext = event;
break;
}
case "33176-03.htm":
case "33176-03.html":
{
if (st.isCond(1))
{
@@ -100,7 +100,7 @@ public final class Q10333_DisappearedSakum extends Quest
}
break;
}
case "33508-03.htm":
case "33508-03.html":
{
if (st.isCond(3))
{
@@ -137,22 +137,22 @@ public final class Q10333_DisappearedSakum extends Quest
{
case BATHIS:
{
htmltext = st.isCond(0) ? "30332-06.htm" : "30332-07.htm";
htmltext = st.isCond(0) ? "30332-06.html" : "30332-07.html";
break;
}
case VENT:
{
if (st.isCond(1))
{
htmltext = "33176-01.htm";
htmltext = "33176-01.html";
}
else if (st.isCond(2))
{
htmltext = "33176-04.htm";
htmltext = "33176-04.html";
}
else if (st.isCond(3))
{
htmltext = "33176-05.htm";
htmltext = "33176-05.html";
}
break;
}
@@ -160,7 +160,7 @@ public final class Q10333_DisappearedSakum extends Quest
{
if (st.isCond(3))
{
htmltext = "33508-01.htm";
htmltext = "33508-01.html";
}
break;
}
@@ -173,17 +173,17 @@ public final class Q10333_DisappearedSakum extends Quest
{
case BATHIS:
{
htmltext = "30332-08.htm";
htmltext = "30332-08.html";
break;
}
case VENT:
{
htmltext = "33176-06.htm";
htmltext = "33176-06.html";
break;
}
case SCHUNAIN:
{
htmltext = "33508-04.htm";
htmltext = "33508-04.html";
break;
}
}