Skip to content
Snippets Groups Projects
Commit b574801b authored by Zoey76's avatar Zoey76
Browse files

BETA: Quests updates, thanks jurchiks for report.

	* Into The Large Cavern (179) updated checks and htmls.
	* New Recruits (182) updated checks and htmls.
parent 0077c221
No related branches found
No related tags found
No related merge requests found
<html><body>???:<br>
You arrive in the last room of the big cave. You don't see anything except something that looks like an enormous piece of machinery. Could it be N?<br>
<a action="bypass -h Quest 182_NewRecruits 32258-02.htm">"By any chance...are you N?"</a>
<a action="bypass -h Quest 182_NewRecruits 32258-02.html">"By any chance...are you N?"</a>
</body></html>
\ No newline at end of file
<html><body>???:<br>
Yes, I am called by that name. You are not Kamael, are you?<br>
<a action="bypass -h Quest 182_NewRecruits 32258-03.htm">Tell it that you have come here at Kekropus' request.</a>
<a action="bypass -h Quest 182_NewRecruits 32258-03.html">Tell it that you have come here at Kekropus' request.</a>
</body></html>
\ No newline at end of file
<html><body>N:<br>
Ah, you! I heard about you from Kekropus. My thanks to you for helping this young Kamael reach here safely. I have prepared a small token of gratitude for your efforts. Which one would you like?<br>
<a action="bypass -h Quest 182_NewRecruits 32258-04.htm">Receive earrings. </a><br>
<a action="bypass -h Quest 182_NewRecruits 32258-05.htm">Receive ring.</a>
<a action="bypass -h Quest 182_NewRecruits 32258-04.html">Receive earrings.</a><br>
<a action="bypass -h Quest 182_NewRecruits 32258-05.html">Receive ring.</a>
</body></html>
\ No newline at end of file
......@@ -45,7 +45,7 @@ public class Q182_NewRecruits extends Quest
if (npc.getNpcId() == _kekropus)
{
if (event.equalsIgnoreCase("32138-03.htm"))
if (event.equalsIgnoreCase("32138-03.html"))
{
st.setState(State.STARTED);
st.set("cond", "1");
......@@ -54,13 +54,13 @@ public class Q182_NewRecruits extends Quest
}
else if (npc.getNpcId() == _nornil)
{
if (event.equalsIgnoreCase("32258-04.htm"))
if (event.equalsIgnoreCase("32258-04.html"))
{
st.giveItems(847, 2);
st.playSound("ItemSound.quest_finish");
st.exitQuest(false);
}
else if (event.equalsIgnoreCase("32258-05.htm"))
else if (event.equalsIgnoreCase("32258-05.html"))
{
st.giveItems(890, 2);
st.playSound("ItemSound.quest_finish");
......@@ -80,35 +80,41 @@ public class Q182_NewRecruits extends Quest
return htmltext;
}
if (player.getRace() == Race.Kamael)
final int npcId = npc.getNpcId();
if (npcId == _kekropus)
{
htmltext = "32138-00.htm";
}
else
{
if (npc.getNpcId() == _kekropus)
switch (st.getState())
{
switch (st.getState())
{
case State.CREATED:
case State.CREATED:
final int level = player.getLevel();
if (player.getRace() == Race.Kamael)
{
htmltext = "32138-00.html";
}
else if ((level >= 17) && (level <= 21) && (player.getClassId().ordinal() == 0))
{
htmltext = "32138-01.htm";
break;
case State.STARTED:
if (st.getInt("cond") == 1)
{
htmltext = "32138-03.htm";
}
break;
case State.COMPLETED:
htmltext = getAlreadyCompletedMsg(player);
break;
}
}
else if ((npc.getNpcId() == _nornil) && st.isStarted())
{
htmltext = "32258-01.htm";
}
else
{
htmltext = "32138-00b.html";
}
break;
case State.STARTED:
if (st.getInt("cond") == 1)
{
htmltext = "32138-04.html";
}
break;
case State.COMPLETED:
htmltext = getAlreadyCompletedMsg(player);
break;
}
}
else if ((npcId == _nornil) && st.isStarted())
{
htmltext = "32258-01.html";
}
return htmltext;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment