Quest warning fixes.

Contributed by Stayway.
This commit is contained in:
MobiusDev
2017-08-10 08:49:09 +00:00
parent 3e02103266
commit 03b9027e96
10 changed files with 43 additions and 26 deletions

View File

@@ -1,4 +1,4 @@
<html><body>Pet Manager Cooper:<br>
I could just send a sword to my sister, but I'm worried about her. I'm afraid she's in great danger on the road to Giran! Hunt <font color="LEVEL">Specters and Sorrow Maidens on the Execution Grounds</font>. Please kill at least 30.<br>
I could just send a sword to my sister, but I'm worried about her. I'm afraid she's in great danger on the road to Giran! Hunt <font color="LEVEL">Hobgoblin, Dion Grizzly, Dire Wolf, Ol Mahum Ranger, Monster Eye Searcher, Monster Eye Gazer, Enku Orc Champion, Enku Orc Shaman on the Dion Hills</font>. Please kill at least 30.<br>
Last night I dreamed that specters and sorrow maidens were chasing my sister. The more you kill, the better her chances are!
</body></html>

View File

@@ -33,8 +33,14 @@ public final class Q00043_HelpTheSister extends Quest
private static final int COOPER = 30829;
private static final int GALLADUCCI = 30097;
// Monsters
private static final int SPECTER = 20171;
private static final int SORROW_MAIDEN = 20197;
private static final int HOBGOBLIN = 20147;
private static final int DION_GRIZZLY = 20203;
private static final int DIRE_WOLF = 20205;
private static final int OL_MAHUM_RANGER = 20224;
private static final int MONSTER_EYE_SEARCHER = 20265;
private static final int MONSTER_EYE_GAZER = 20266;
private static final int ENKU_ORC_HERO = 20291;
private static final int ENKU_ORC_SHAMAN = 20292;
// Items
private static final int CRAFTED_DAGGER = 220;
private static final int MAP_PIECE = 7550;
@@ -48,7 +54,7 @@ public final class Q00043_HelpTheSister extends Quest
super(43);
addStartNpc(COOPER);
addTalkId(COOPER, GALLADUCCI);
addKillId(SORROW_MAIDEN, SPECTER);
addKillId(DION_GRIZZLY, HOBGOBLIN, DIRE_WOLF, OL_MAHUM_RANGER, MONSTER_EYE_SEARCHER, MONSTER_EYE_GAZER, ENKU_ORC_HERO, ENKU_ORC_SHAMAN);
registerQuestItems(MAP, MAP_PIECE);
addCondMinLevel(MIN_LVL, "30829-00a.html");
}

View File

@@ -2,6 +2,6 @@
Many of our regional temples have recently reported certain signs and omens that we cannot ignore...<br>
We dispatched an inspector to investigate, but apparently something befell his party near the Execution Grounds.<br>
He was carrying the final report on his discoveries when, we suspect, he and his companions were attacked.<br><br>
Defeat monsters at the Execution Grounds -- <font color="LEVEL">Amber Basilisks, Strains, Ghouls, Granite Golems, Dead Seekers and Hangman Trees</font> -- and bring me the <font color="LEVEL">pieces of the inspector's report</font>.<br>
Defeat monsters at the Dion Hills -- <font color="LEVEL">Hobgoblin, Dion Grizzly, Dire Wolf, Ol Mahum Ranger, Monster Eye Searcher, Monster Eye Gazer, Enku Orc Champion and Enku Orc Shaman</font> -- and bring me the <font color="LEVEL">pieces of the inspector's report</font>.<br>
It should be approximately <font color="LEVEL">30 pages</font> altogether...
</body></html>

View File

@@ -32,12 +32,14 @@ public class Q00137_TempleChampionPart1 extends Quest
private static final int SYLVAIN = 30070;
private static final int MOBS[] =
{
20083, // Granite Golem
20144, // Hangman Tree
20199, // Amber Basilisk
20200, // Strain
20201, // Ghoul
20202, // Dead Seeker
20147, // Hobgoblin
20203, // Dion Grizzly
20205, // Dire Wolf
20224, // Ol Mahum Ranger
20265, // Monster Eye Searcher
20266, // Monster Eye Gazer
20291, // Enku Orc Hero
20292, // Enku Orc Shaman
};
// Items
private static final int FRAGMENT = 10340;