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>
Oh, good, it's you. I heard you were the first to see Sakum.<br>
The scholars are saying there's something odd about Sakum. Was someone else there when it hatched?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10332_ToughRoad 30332-02.htm">"Yes, Nemertess hatched Sakum."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10332_ToughRoad 30332-02.html">"Yes, Nemertess hatched Sakum."</Button>
</body></html>

View File

@@ -1,5 +1,5 @@
<html><body>Captain Bathis:<br>
Nemertess? Yeees, I've heard of him. He was interrupted while trying to hatch Sakum. I sent him to the continent!<br>
We've been seeing Sakum around, sporadically. It doesn't appear to be under anyone's control, but it's so fast... we haven't managed to get close enough to tell what condition it's in. And now, we can't even find it! We need to track it down, it's just not safe having it running about.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10332_ToughRoad 30332-03.htm">"I'm a good tracker. I'll help!"</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10332_ToughRoad 30332-03.html">"I'm a good tracker. I'll help!"</Button>
</body></html>

View File

@@ -1,5 +1,5 @@
<html><body>Pa'agrio Lord Kakai:<br>
You've hear that <font color="LEVEL">Sakum</font> disappeared into the labyrinth, right? We'll, it looks like he's come back out. I've been getting reports of Sakum sightings all around Aden. Some of them are probably just cases of nervous people and moving shadows, but they can't all be incorrect. In fact, Lord Lewin Waldner of Gludio has requested that we send troops.<br>
I'd like to assign you to this task. Are you willing to go?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10332_ToughRoad 30565-02.htm">"Yes."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10332_ToughRoad 30565-02.html">"Yes."</Button>
</body></html>

View File

@@ -51,9 +51,9 @@ public final class Q10332_ToughRoad extends Quest
addStartNpc(KAKAI);
addTalkId(KAKAI, BATHIS);
addEnterZoneId(ZONE_ID);
addCondNotRace(Race.ERTHEIA, "30565-05.htm");
addCondLevel(MIN_LEVEL, MAX_LEVEL, "30565-04.htm");
addCondCompletedQuest(Q10331_StartOfFate.class.getSimpleName(), "30565-04.htm");
addCondNotRace(Race.ERTHEIA, "30565-05.html");
addCondLevel(MIN_LEVEL, MAX_LEVEL, "30565-04.html");
addCondCompletedQuest(Q10331_StartOfFate.class.getSimpleName(), "30565-04.html");
}
@Override
@@ -73,18 +73,18 @@ public final class Q10332_ToughRoad extends Quest
String htmltext = null;
switch (event)
{
case "30332-02.htm":
case "30332-02.html":
{
htmltext = event;
break;
}
case "30565-02.htm":
case "30565-02.html":
{
st.startQuest();
htmltext = event;
break;
}
case "30332-03.htm":
case "30332-03.html":
{
if (st.isCond(1))
{
@@ -116,12 +116,12 @@ public final class Q10332_ToughRoad extends Quest
}
case State.STARTED:
{
htmltext = "30565-06.htm";
htmltext = "30565-06.html";
break;
}
case State.COMPLETED:
{
htmltext = "30565-03.htm";
htmltext = "30565-03.html";
break;
}
}
@@ -130,11 +130,11 @@ public final class Q10332_ToughRoad extends Quest
{
if (st.getState() == State.STARTED)
{
htmltext = "30332-01.htm";
htmltext = "30332-01.html";
}
else if (st.getState() == State.COMPLETED)
{
htmltext = "30332-04.htm";
htmltext = "30332-04.html";
}
}
return htmltext;