From 03b9027e967f5423c189b65f1300b1450680ad96 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Thu, 10 Aug 2017 08:49:09 +0000 Subject: [PATCH] Quest warning fixes. Contributed by Stayway. --- .../quests/Q00043_HelpTheSister/30829-03.html | 2 +- .../Q00043_HelpTheSister/Q00043_HelpTheSister.java | 12 +++++++++--- .../Q00137_TempleChampionPart1/30070-08.html | 2 +- .../Q00137_TempleChampionPart1.java | 14 ++++++++------ .../quests/Q00371_ShrieksOfGhosts/30867-02.htm | 2 +- .../Q00371_ShrieksOfGhosts.java | 7 ++++--- .../quests/Q00043_HelpTheSister/30829-03.html | 2 +- .../Q00043_HelpTheSister/Q00043_HelpTheSister.java | 12 +++++++++--- .../Q00137_TempleChampionPart1/30070-08.html | 2 +- .../Q00137_TempleChampionPart1.java | 14 ++++++++------ 10 files changed, 43 insertions(+), 26 deletions(-) diff --git a/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00043_HelpTheSister/30829-03.html b/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00043_HelpTheSister/30829-03.html index c7f44bb372..f4ca421076 100644 --- a/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00043_HelpTheSister/30829-03.html +++ b/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00043_HelpTheSister/30829-03.html @@ -1,4 +1,4 @@ Pet Manager Cooper:
-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 Specters and Sorrow Maidens on the Execution Grounds. Please kill at least 30.
+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 Hobgoblin, Dion Grizzly, Dire Wolf, Ol Mahum Ranger, Monster Eye Searcher, Monster Eye Gazer, Enku Orc Champion, Enku Orc Shaman on the Dion Hills. Please kill at least 30.
Last night I dreamed that specters and sorrow maidens were chasing my sister. The more you kill, the better her chances are! \ No newline at end of file diff --git a/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00043_HelpTheSister/Q00043_HelpTheSister.java b/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00043_HelpTheSister/Q00043_HelpTheSister.java index bc77774ce6..5f37813750 100644 --- a/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00043_HelpTheSister/Q00043_HelpTheSister.java +++ b/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00043_HelpTheSister/Q00043_HelpTheSister.java @@ -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"); } diff --git a/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/30070-08.html b/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/30070-08.html index e57488ea4a..5b0f8703a8 100644 --- a/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/30070-08.html +++ b/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/30070-08.html @@ -2,6 +2,6 @@ Many of our regional temples have recently reported certain signs and omens that we cannot ignore...
We dispatched an inspector to investigate, but apparently something befell his party near the Execution Grounds.
He was carrying the final report on his discoveries when, we suspect, he and his companions were attacked.

-Defeat monsters at the Execution Grounds -- Amber Basilisks, Strains, Ghouls, Granite Golems, Dead Seekers and Hangman Trees -- and bring me the pieces of the inspector's report.
+Defeat monsters at the Dion Hills -- Hobgoblin, Dion Grizzly, Dire Wolf, Ol Mahum Ranger, Monster Eye Searcher, Monster Eye Gazer, Enku Orc Champion and Enku Orc Shaman -- and bring me the pieces of the inspector's report.
It should be approximately 30 pages altogether... \ No newline at end of file diff --git a/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/Q00137_TempleChampionPart1.java b/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/Q00137_TempleChampionPart1.java index f5963ce073..f4c473205d 100644 --- a/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/Q00137_TempleChampionPart1.java +++ b/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/Q00137_TempleChampionPart1.java @@ -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; diff --git a/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00371_ShrieksOfGhosts/30867-02.htm b/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00371_ShrieksOfGhosts/30867-02.htm index 9b178f6fcf..d233f5510e 100644 --- a/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00371_ShrieksOfGhosts/30867-02.htm +++ b/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00371_ShrieksOfGhosts/30867-02.htm @@ -1,4 +1,4 @@ Seer Reva:
Humans so easily ignore the fact that the Tower of Insolence is like a gigantic tomb, erected at the expense of countless lives! To conceal the secret of the tower, the despot Baium executed thousands of slaves and buried them there. Their vengeful spirits haunt the tower to this day.
-Hurry to the Tower of Insolence. There you will find the undead warriors who serve the Devil's Overlord. You must kill Hallate's warriors, Hallate's knights and Hallate's commanders. Don't give an inch! Recover the Ancient Ash Urns! Bring back the ashes and I will perform the ritual of fire that will put the undead warriors to rest. If your work is deemed worthy in my eyes, I will bestow upon you a prize. Bring me 100 or more ash urns at once and you will receive an even greater prize! +Hurry to the Tower of Insolence. There you will find the warriors who serve the Devil's Overlord. You must kill Elmoreden's Lady, Elmoreden's Archer, Elmoreden's Maid, and Elmoreden's Warrior. Don't give an inch! Recover the Ancient Ash Urns! Bring back the ashes and I will perform the ritual of fire that will put the undead warriors to rest. If your work is deemed worthy in my eyes, I will bestow upon you a prize. Bring me 100 or more ash urns at once and you will receive an even greater prize! \ No newline at end of file diff --git a/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00371_ShrieksOfGhosts/Q00371_ShrieksOfGhosts.java b/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00371_ShrieksOfGhosts/Q00371_ShrieksOfGhosts.java index b2d5b86485..e8061ea749 100644 --- a/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00371_ShrieksOfGhosts/Q00371_ShrieksOfGhosts.java +++ b/L2J_Mobius_Helios/dist/game/data/scripts/quests/Q00371_ShrieksOfGhosts/Q00371_ShrieksOfGhosts.java @@ -69,9 +69,10 @@ public final class Q00371_ShrieksOfGhosts extends Quest private static final Map MOBS = new HashMap<>(); static { - MOBS.put(20818, new DropInfo(350, 400)); // hallates_warrior - MOBS.put(20820, new DropInfo(583, 673)); // hallates_knight - MOBS.put(20824, new DropInfo(458, 538)); // hallates_commander + MOBS.put(20977, new DropInfo(350, 400)); // Elmoreden's Lady + MOBS.put(20978, new DropInfo(583, 673)); // Elmoreden's Archer + MOBS.put(20979, new DropInfo(458, 538)); // Elmoreden's Maid + MOBS.put(21073, new DropInfo(540, 620)); // Elmoreden's Warrior } public Q00371_ShrieksOfGhosts() diff --git a/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00043_HelpTheSister/30829-03.html b/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00043_HelpTheSister/30829-03.html index c7f44bb372..f4ca421076 100644 --- a/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00043_HelpTheSister/30829-03.html +++ b/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00043_HelpTheSister/30829-03.html @@ -1,4 +1,4 @@ Pet Manager Cooper:
-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 Specters and Sorrow Maidens on the Execution Grounds. Please kill at least 30.
+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 Hobgoblin, Dion Grizzly, Dire Wolf, Ol Mahum Ranger, Monster Eye Searcher, Monster Eye Gazer, Enku Orc Champion, Enku Orc Shaman on the Dion Hills. Please kill at least 30.
Last night I dreamed that specters and sorrow maidens were chasing my sister. The more you kill, the better her chances are! \ No newline at end of file diff --git a/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00043_HelpTheSister/Q00043_HelpTheSister.java b/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00043_HelpTheSister/Q00043_HelpTheSister.java index bc77774ce6..5f37813750 100644 --- a/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00043_HelpTheSister/Q00043_HelpTheSister.java +++ b/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00043_HelpTheSister/Q00043_HelpTheSister.java @@ -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"); } diff --git a/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/30070-08.html b/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/30070-08.html index e57488ea4a..5b0f8703a8 100644 --- a/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/30070-08.html +++ b/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/30070-08.html @@ -2,6 +2,6 @@ Many of our regional temples have recently reported certain signs and omens that we cannot ignore...
We dispatched an inspector to investigate, but apparently something befell his party near the Execution Grounds.
He was carrying the final report on his discoveries when, we suspect, he and his companions were attacked.

-Defeat monsters at the Execution Grounds -- Amber Basilisks, Strains, Ghouls, Granite Golems, Dead Seekers and Hangman Trees -- and bring me the pieces of the inspector's report.
+Defeat monsters at the Dion Hills -- Hobgoblin, Dion Grizzly, Dire Wolf, Ol Mahum Ranger, Monster Eye Searcher, Monster Eye Gazer, Enku Orc Champion and Enku Orc Shaman -- and bring me the pieces of the inspector's report.
It should be approximately 30 pages altogether... \ No newline at end of file diff --git a/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/Q00137_TempleChampionPart1.java b/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/Q00137_TempleChampionPart1.java index f5963ce073..f4c473205d 100644 --- a/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/Q00137_TempleChampionPart1.java +++ b/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q00137_TempleChampionPart1/Q00137_TempleChampionPart1.java @@ -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;