Skip to content
Snippets Groups Projects
Commit 2400ffd9 authored by Adry_85's avatar Adry_85
Browse files

BETA: Seven Signs quest related fixes:

	* Adding missing level check for reward.
		* Reported by: lion
	* Minor typo in '''Seven Signs, Embryo''' onKill method.
		* Reported by: jurchiks
parent 18051d42
No related branches found
No related tags found
No related merge requests found
<html><body>Sir Gustav Athebaldt:<br>
Aha! The good priest told me about you! As fast as your legs are, nothing spreads faster than gossip my friend!<br>
So you're here for your reward are you? Let's see what I can dig out for you....<br>
<a action="bypass -h Quest Q00193_SevenSignsDyingMessage 30760-02.html">"Actually I came to offer my services, but I won't say no to a reward."</a>
<a action="bypass -h Quest Q00193_SevenSignsDyingMessage reward">"Actually I came to offer my services, but I won't say no to a reward."</a>
</body></html>
\ No newline at end of file
......@@ -189,13 +189,20 @@ public final class Q00193_SevenSignsDyingMessage extends Quest
startQuestTimer("heal", 30000 - getRandom(20000), npc, player);
break;
}
case "30760-02.html":
case "reward":
{
if (st.isCond(6))
{
st.addExpAndSp(52518015, 5817677);
st.exitQuest(false, true);
htmltext = event;
if (player.getLevel() >= MIN_LEVEL)
{
st.addExpAndSp(52518015, 5817677);
st.exitQuest(false, true);
htmltext = "30760-02.html";
}
else
{
htmltext = "level_check.html";
}
}
break;
}
......
<html><body>
Characters who are <font color="LEVEL">level 79 or above</font> may redeem the <font color="LEVEL">Reward for the Current Quest</font>.
</body></html>
\ No newline at end of file
<html><body>Iason Heine:<br>
Of course it is! This document is 1500 years old, my child. The fact that it is still eligible at all is a miracle in its own right--most parchment this old is little more than dust and ash these days.<br>
But this... this is remarkable! The one document binding Shunaiman and the Merchants together... in my very hands. A historian's dream....<br>
<a action="bypass -h Quest Q00195_SevenSignsSecretRitualOfThePriests 30969-03.html">"Can you understand the text?"</a>
<a action="bypass -h Quest Q00195_SevenSignsSecretRitualOfThePriests reward">"Can you understand the text?"</a>
</body></html>
\ No newline at end of file
......@@ -169,13 +169,20 @@ public final class Q00195_SevenSignsSecretRitualOfThePriests extends Quest
}
break;
}
case "30969-03.html":
case "reward":
{
if (st.isCond(4) && st.hasQuestItems(SHUNAIMANS_CONTRACT))
{
st.addExpAndSp(52518015, 5817677);
st.exitQuest(false, true);
htmltext = event;
if (player.getLevel() >= MIN_LEVEL)
{
st.addExpAndSp(52518015, 5817677);
st.exitQuest(false, true);
htmltext = "30969-03.html";
}
else
{
htmltext = "level_check.html";
}
}
break;
}
......
<html><body>
Characters who are <font color="LEVEL">level 79 or above</font> may redeem the <font color="LEVEL">Reward for the Current Quest</font>.
</body></html>
\ No newline at end of file
......@@ -180,7 +180,7 @@ public final class Q00198_SevenSignsEmbryo extends Quest
return null;
}
final QuestState st = getQuestState(player, false);
final QuestState st = getQuestState(partyMember, false);
if (npc.isInsideRadius(player, 1500, true, false))
{
st.giveItems(SCULPTURE_OF_DOUBT, 1);
......
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