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,4 +1,4 @@
<html><body>Gatekeeper Bella:<br>
Yes, it is true. I am a Gatekeeper from the Ivory Tower and also a member of the Animal Lovers Association. Why have you come? Did Lundy send you?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00210_ObtainAWolfPet 30256-02.htm">"Tell me about pets."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00210_ObtainAWolfPet 30256-02.html">"Tell me about pets."</Button>
</body></html>

View File

@@ -1,5 +1,5 @@
<html><body>Gatekeeper Bella:<br>
Pets help their owners in a number of ways.<br>
If your inventory is low or you have exceeded your weight limit, your pets can carry some of your items. Just be careful not to use your pets too often on errands, no matter how useful they may be.<br>Now if your pets die, you can resurrect them without the <font color="LEVEL">24 hour</font> time limit. No need to worry about losing your pets forever!<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00210_ObtainAWolfPet 30256-03.htm">Next</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00210_ObtainAWolfPet 30256-03.html">Next</Button>
</body></html>

View File

@@ -0,0 +1,4 @@
<html><body>Trader Sydnia:<br>
How did you know that I am a member of the Animal Lovers Association? Ah, I see - Mr. Lundy must have mentioned me. So, what can I do for you?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00210_ObtainAWolfPet 30321-02.html">"Tell me about the pets."</Button>
</body></html>

View File

@@ -0,0 +1,4 @@
<html><body>Guard Brynn:<br>
You're right. I am a member of the Animal Lovers Association, too. What brought you here? If you have a question for me, spit it out.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00210_ObtainAWolfPet 30335-02.html">"Tell me about pets."</Button>
</body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Pet Manager Lundy:<br>
To have a pet, you need to know about them. The pet I think is best for you is a wolf, but you'll need to learn the basics about them. Go get some information about pet wolves then come back to me.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00210_ObtainAWolfPet 30827-03.htm">"Got it."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00210_ObtainAWolfPet 30827-03.html">"Got it."</Button>
</body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Pet Manager Lundy:<br>
I would normally wouldn't give you a pet until testing you about the stories you've heard, but I've received only glowing reports from everyone you talked to. I believe you fully understand how to treat your companion, and are ready for the next step. Here is a <font color="LEVEL">Wolf Necklace</font> that will help you handle a pet wolf.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00210_ObtainAWolfPet 30827-06.htm">"Thank you."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00210_ObtainAWolfPet 30827-06.html">"Thank you."</Button>
</body></html>

View File

@@ -43,7 +43,7 @@ public final class Q00210_ObtainAWolfPet extends Quest
super(210);
addStartNpc(LUNDY);
addTalkId(LUNDY, BELLA, BRYNN, SYDNIA);
addCondMinLevel(MIN_LEVEL, "30827-07.htm");
addCondMinLevel(MIN_LEVEL, "30827-07.html");
}
@Override
@@ -59,21 +59,21 @@ public final class Q00210_ObtainAWolfPet extends Quest
switch (event)
{
case "30827-02.htm":
case "30256-02.htm":
case "30256-03.htm":
case "30335-02.htm":
case "30321-02.htm":
case "30256-02.html":
case "30256-03.html":
case "30335-02.html":
case "30321-02.html":
{
htmltext = event;
break;
}
case "30827-03.htm":
case "30827-03.html":
{
qs.startQuest();
htmltext = event;
break;
}
case "30827-06.htm":
case "30827-06.html":
{
if (qs.isCond(4))
{
@@ -111,12 +111,12 @@ public final class Q00210_ObtainAWolfPet extends Quest
{
if (qs.isCond(1))
{
htmltext = "30827-04.htm";
htmltext = "30827-04.html";
break;
}
else if (qs.isCond(4))
{
htmltext = "30827-05.htm";
htmltext = "30827-05.html";
break;
}
break;
@@ -126,7 +126,7 @@ public final class Q00210_ObtainAWolfPet extends Quest
if (qs.isCond(1))
{
qs.setCond(2, true);
htmltext = "30256-01.htm";
htmltext = "30256-01.html";
}
break;
}
@@ -135,7 +135,7 @@ public final class Q00210_ObtainAWolfPet extends Quest
if (qs.isCond(2))
{
qs.setCond(3, true);
htmltext = "30335-01.htm";
htmltext = "30335-01.html";
}
break;
}
@@ -144,7 +144,7 @@ public final class Q00210_ObtainAWolfPet extends Quest
if (qs.isCond(3))
{
qs.setCond(4, true);
htmltext = "30321-01.htm";
htmltext = "30321-01.html";
}
break;
}