diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/BeastFarm/BeastFarm.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/BeastFarm/BeastFarm.java index b132aaf9c5..fe2bfd035f 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/BeastFarm/BeastFarm.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/BeastFarm/BeastFarm.java @@ -35,7 +35,6 @@ import com.l2jmobius.gameserver.model.skills.Skill; import com.l2jmobius.gameserver.network.serverpackets.NpcInfo; import ai.AbstractNpcAI; -import quests.Q00020_BringUpWithLove.Q00020_BringUpWithLove; /** * Growth-capable mobs: Polymorphing upon successful feeding.
@@ -286,7 +285,8 @@ public final class BeastFarm extends AbstractNpcAI nextNpc.addBeastSkill(st.getSkill(sh.getSkillId(), sh.getSkillLevel())); } - Q00020_BringUpWithLove.checkJewelOfInnocence(player); + // TODO: Quest removed with Etina's Fate. + // Q00020_BringUpWithLove.checkJewelOfInnocence(player); } else { diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/BeastFarm/FeedableBeasts.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/BeastFarm/FeedableBeasts.java index 939768b32e..7f61f20cff 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/BeastFarm/FeedableBeasts.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/BeastFarm/FeedableBeasts.java @@ -32,7 +32,6 @@ import com.l2jmobius.gameserver.model.skills.Skill; import com.l2jmobius.gameserver.network.NpcStringId; import ai.AbstractNpcAI; -import quests.Q00020_BringUpWithLove.Q00020_BringUpWithLove; /** * Growth-capable mobs: Polymorphing upon successful feeding. @@ -424,7 +423,8 @@ public final class FeedableBeasts extends AbstractNpcAI final L2TamedBeastInstance nextNpc = new L2TamedBeastInstance(nextNpcId, player, food - FOODSKILLDIFF, npc.getX(), npc.getY(), npc.getZ()); nextNpc.setRunning(); - Q00020_BringUpWithLove.checkJewelOfInnocence(player); + // TODO: Quest removed with Etina's Fate. + // Q00020_BringUpWithLove.checkJewelOfInnocence(player); // Support for A Grand Plan for Taming Wild Beasts (655) quest. // Q00655_AGrandPlanForTamingWildBeasts.reward(player, nextNpc); TODO: Replace me? diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/KeucereusAllianceBase/Nottingale/Nottingale.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/KeucereusAllianceBase/Nottingale/Nottingale.java index 29bb9ed10f..1c37382818 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/KeucereusAllianceBase/Nottingale/Nottingale.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/KeucereusAllianceBase/Nottingale/Nottingale.java @@ -23,11 +23,9 @@ import com.l2jmobius.gameserver.instancemanager.AirShipManager; import com.l2jmobius.gameserver.model.ClanPrivilege; import com.l2jmobius.gameserver.model.actor.L2Npc; import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.QuestState; import com.l2jmobius.gameserver.network.serverpackets.RadarControl; import ai.AbstractNpcAI; -import quests.Q10273_GoodDayToFly.Q10273_GoodDayToFly; /** * Nottingale AI. @@ -76,30 +74,32 @@ public final class Nottingale extends AbstractNpcAI } else { - final QuestState st = player.getQuestState(Q10273_GoodDayToFly.class.getSimpleName()); - if ((st != null) && st.isCompleted()) - { - htmltext = event; - } - else - { - player.sendPacket(RADARS.get(2)); - htmltext = "32627-01.html"; - } + // TODO: Quest removed with Etina's Fate. + // final QuestState st = player.getQuestState(Q10273_GoodDayToFly.class.getSimpleName()); + // if ((st != null) && st.isCompleted()) + // { + // htmltext = event; + // } + // else + // { + player.sendPacket(RADARS.get(2)); + htmltext = "32627-01.html"; + // } } } else { - final QuestState st = player.getQuestState(Q10273_GoodDayToFly.class.getSimpleName()); - if ((st != null) && st.isCompleted()) - { - htmltext = event; - } - else - { - player.sendPacket(RADARS.get(2)); - htmltext = "32627-01.html"; - } + // TODO: Quest removed with Etina's Fate. + // final QuestState st = player.getQuestState(Q10273_GoodDayToFly.class.getSimpleName()); + // if ((st != null) && st.isCompleted()) + // { + // htmltext = event; + // } + // else + // { + player.sendPacket(RADARS.get(2)); + htmltext = "32627-01.html"; + // } } break; } diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/StakatoNest/StakatoNestTeleporter/StakatoNestTeleporter.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/StakatoNest/StakatoNestTeleporter/StakatoNestTeleporter.java index 0624efefdb..fb0be3240f 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/StakatoNest/StakatoNestTeleporter/StakatoNestTeleporter.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/StakatoNest/StakatoNestTeleporter/StakatoNestTeleporter.java @@ -19,10 +19,8 @@ package ai.areas.StakatoNest.StakatoNestTeleporter; import com.l2jmobius.gameserver.model.Location; import com.l2jmobius.gameserver.model.actor.L2Npc; import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.QuestState; import ai.AbstractNpcAI; -import quests.Q00240_ImTheOnlyOneYouCanTrust.Q00240_ImTheOnlyOneYouCanTrust; /** * Stakato Nest Teleport AI. @@ -75,8 +73,10 @@ public final class StakatoNestTeleporter extends AbstractNpcAI @Override public String onTalk(L2Npc npc, L2PcInstance player) { - final QuestState accessQuest = player.getQuestState(Q00240_ImTheOnlyOneYouCanTrust.class.getSimpleName()); - return (((accessQuest != null) && accessQuest.isCompleted()) ? "32640.htm" : "32640-no.htm"); + // TODO: Pre-Quest removed with Etina's Fate. + // final QuestState accessQuest = player.getQuestState(Q00240_ImTheOnlyOneYouCanTrust.class.getSimpleName()); + // return (((accessQuest != null) && accessQuest.isCompleted()) ? "32640.htm" : "32640-no.htm"); + return "32640.htm"; } public static void main(String[] args) diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/MissingQuests.txt b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/MissingQuests.txt index bc4e76bf12..f5d56a5b6a 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/MissingQuests.txt +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/MissingQuests.txt @@ -1,5 +1,10 @@ 482 Recertification of Value 504 Competition for the Bandit Stronghold +529 Regular Barrier Maintenance +554 Red Libra Request - Silent Valley +555 Red Libra Request - Atelia Refinery +556 Red Libra Request - Fallen Emperor's Throne +557 Red Libra Request - Fall of Etina 561 Basic Mission: Harnak Underground Ruins 562 Basic Mission: Altar of Evil 563 Basic Mission: Bloody Swampland @@ -16,6 +21,7 @@ 574 Special Mission: Nornil's Garden 575 Special Mission: Fortuna 576 Special Mission: Defeat Spezion +577 Basic Mission: Silent Valley 580 Beyond the Memories 581 The Purification Ritual 582 Wash Blood with Blood @@ -25,6 +31,11 @@ 586 Mutated Creatures 587 More Aggressive Operation 588 Head-on Crash +589 A Secret Change +590 To Each Their Own +591 Great Ambitions +599 Demons and Dimensional Energy +600 Key to the Refining Process 655 A Grand Plan for Taming Wild Beasts 665 Basic Training for Hunter Guild Member 666 Knowledgeable Hunter Guild Member @@ -40,6 +51,8 @@ 677 Hunter Guild Request – Wasteland East 678 Hunter Guild Request – Forest of the Dead 679 Hunter Guild Request – Swamp of Screams +680 Hunter Guild Request - Sea of Spores +681 Hunter Guild Request - Shadow of the Mother Tree 690 |Attack| Begin Alliance Base Defense - 1 691 |Attack| Begin Alliance Base Defense - 2 692 |Attack| Begin Alliance Base Defense - 3 @@ -89,7 +102,6 @@ 743 At the Altar of Oblivion 744 The Alligator Hunter returns 745 The Outlaws are Incoming -746 The Reason One Cannot Wait 747 Defending the Forsaken Plains 748 Endless Revenge 749 Ties with the Guardians @@ -135,6 +147,7 @@ 845 Sabotage the Embryo Supplies 846 Building up Strength 861 Kain's Choice +863 Red Libra Request - Shadow of the Mother Tree 910 Red Libra Request - Isle of Souls 911 Red Libra's Request - Seal of Shilen 912 Red Libra Request - Monsters from Three Areas @@ -171,9 +184,11 @@ 10456 Operation: Rescue 10457 Kefensis' Illusion 10506 Diana's Request +10529 Ivory Tower's Research - Sea of Spores Journal 10530 Kekropus' Letter, The Dragon's Transition Achieve Level 81 10531 Odd Happenings at Dragon Valley Strange Things Afoot in the Valley 10532 Uncovering the Conspiracy Eliminate the Undead and Dragons +10533 Orfen's Ambition 10535 Blacksmith's Soul-awakening Weapon - 3 10537 Kamael Disarray To Retbach 10538 Giant's Evolution Cause of failed evolution @@ -247,3 +262,12 @@ 10881 For the Pride 10882 Victory Collection 10883 Immortal Honor +10885 Savior's Path - Discovery +10886 Savior's Path - Search the Refinery +10887 Savior's Path - Demons and Atelia +10888 Savior's Path - Defeat the Embryo +10889 Savior's Path - Fallen Emperor's Throne +10890 Savior's Path - Fall of Etina +10891 At a New Place +10892 Revenge, One Step at a Time +10893 End of Twisted Fate diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31302-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31302-01.html deleted file mode 100644 index a57f3dbce2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31302-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Trader Vladimir:
-What.., is everyone here DEAF?!
Hey... you! Can you help me? I ordered meat from that farm... look at the crap they gave me! I'm too mad to go myself, I wonder if you would return this for me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31302-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31302-02.htm deleted file mode 100644 index fa09c8652d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31302-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Trader Vladimir:
-Is that you? Here. Take this meat! Farm Manager Tunatun sent it to me, but it's disgusting.
-I see red just thinking about it! I can't decide if he doesn't know any better, or if he's trying to slip one by me. Between you and me, I won't buy anything from him!
-Not if he paid me! But you might like it... - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31302-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31302-03.html deleted file mode 100644 index f0de6bf891..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31302-03.html +++ /dev/null @@ -1,5 +0,0 @@ -Trader Vladimir:
-You? How could someone as inexperienced as you TRULY know how to deal with meat?
-The answer is... you can't. Come back after you gain more experience.
-(Only character with level 82 or above can take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31302-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31302-04.html deleted file mode 100644 index 56dfc1b54c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31302-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Trader Vladimir:
-Did you find the Farm manager? What are you doing? And can you get rid of this meat before it stinks? The quality isn't good enough. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31537-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31537-01.html deleted file mode 100644 index 21701563ed..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31537-01.html +++ /dev/null @@ -1,6 +0,0 @@ -Beast Herder Tunatun:
-What? Vladimir said that? Hmm...
-Actually, that is the best meat I can get. Unless a skilled adventurer shows up...
-There is nothing else I can do. This is the only time I will accept a return. But I still look forward to doing business. Do I have any change?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31537-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31537-02.htm deleted file mode 100644 index 9cb2f47b05..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31537-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Beast Herder Tunatun:
-He's a cranky one, eh!
-But I can't do that. I can apologize to him later. But you should take this money. I'll feel better that way when I pay a visit later.
-Now, I'm in need of a skilled, feared, willing adventurer to help me acquire good meat, if ONLY there was one nearby...? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31537-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31537-03.html deleted file mode 100644 index 34cd05d632..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/31537-03.html +++ /dev/null @@ -1,3 +0,0 @@ -Beast Herder Tunatun:
-I see. Then, first return the meat... What? You didn't bring the meat? How would I know if he sent you? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/Q00019_GoToThePastureland.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/Q00019_GoToThePastureland.java deleted file mode 100644 index c5be08e81e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00019_GoToThePastureland/Q00019_GoToThePastureland.java +++ /dev/null @@ -1,122 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00019_GoToThePastureland; - -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * Go to the Pastureland (19) - * @author malyelfik - */ -public final class Q00019_GoToThePastureland extends Quest -{ - // NPCs - private static final int VLADIMIR = 31302; - private static final int TUNATUN = 31537; - // Items - private static final int VEAL = 15532; - private static final int YOUNG_WILD_BEAST_MEAT = 7547; - // Misc - private static final int MIN_LEVEL = 82; - - public Q00019_GoToThePastureland() - { - super(19); - addStartNpc(VLADIMIR); - addTalkId(VLADIMIR, TUNATUN); - registerQuestItems(VEAL, YOUNG_WILD_BEAST_MEAT); - addCondMinLevel(MIN_LEVEL, "31302-03.html"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - String htmltext = event; - final QuestState st = getQuestState(player, false); - - if (st == null) - { - return getNoQuestMsg(player); - } - - if (event.equalsIgnoreCase("31302-02.htm")) - { - st.startQuest(); - giveItems(player, VEAL, 1); - } - else if (event.equalsIgnoreCase("31537-02.htm")) - { - if (hasQuestItems(player, YOUNG_WILD_BEAST_MEAT)) - { - giveAdena(player, 50000, true); - addExpAndSp(player, 136766, 59); // TODO: Retail like SP value - st.exitQuest(false, true); - htmltext = event; - } - else if (hasQuestItems(player, VEAL)) - { - giveAdena(player, 299928, true); - addExpAndSp(player, 1_456_218, 349); - st.exitQuest(false, true); - htmltext = event; - } - else - { - htmltext = "31537-03.html"; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState st = getQuestState(player, true); - - if (npc.getId() == VLADIMIR) - { - switch (st.getState()) - { - case State.CREATED: - { - htmltext = "31302-01.html"; - break; - } - case State.STARTED: - { - htmltext = "31302-04.html"; - break; - } - case State.COMPLETED: - { - htmltext = getAlreadyCompletedMsg(player); - break; - } - } - } - else if ((npc.getId() == TUNATUN) && (st.isCond(1))) - { - htmltext = "31537-01.html"; - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-01.htm deleted file mode 100644 index bf7b19a1a8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Beast Herder Tunatun:
-Ahh... I love the farm, but I wonder what they will become when they mature.
It's not always easy to farm beasts, you know. Even as manager of this place, I can only do so much to command those beasts... Do you know anyone skilled with such beasts...?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-02.htm deleted file mode 100644 index 75284d3cb5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-02.htm +++ /dev/null @@ -1,4 +0,0 @@ -Beast Herder Tunatun:
-You...? I agree you look the part, but know that these beasts won't care how you look. You must stay in control. The young are docile, it's the adults to watch out for. Are you sure you are ready?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-03.htm deleted file mode 100644 index 9270a66d7f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-03.htm +++ /dev/null @@ -1,6 +0,0 @@ -Beast Herder Tunatun:
-If you say so...
-First, take this Beast Handler's Whip. Do I need to show you how this works?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-04.htm deleted file mode 100644 index 1be89a2a2e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-04.htm +++ /dev/null @@ -1,6 +0,0 @@ -Beast Herder Tunatun:
-Well, the lesson is almost over.
-If you feel ready, there's only one way to know for sure.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-05.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-05.htm deleted file mode 100644 index aedbe807e0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-05.htm +++ /dev/null @@ -1,5 +0,0 @@ -Beast Herder Tunatun:
-The Beast Handler's Whip is a necessity on this farm.
-One beast used to be our limit, but thanks to the Beast Handler's Whip it isn't a problem controlling more.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-06.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-06.htm deleted file mode 100644 index c8fc274013..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-06.htm +++ /dev/null @@ -1,5 +0,0 @@ -Beast Herder Tunatun:
-That's not the only reason. When you use this Beast Handler's Whip, you can use a variety supplemental magic on the cubs you train.
-The more kinds of beasts you train, the greater the magic you can use!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-07.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-07.htm deleted file mode 100644 index 89f33b48b4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-07.htm +++ /dev/null @@ -1,6 +0,0 @@ -Beast Herder Tunatun:
-If somehow you lose the Beast Handler's Whip, let me know. I'll give you another one.
-Before we begin.. Do you need a few tips?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-08.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-08.htm deleted file mode 100644 index 9474c219ba..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-08.htm +++ /dev/null @@ -1,5 +0,0 @@ -Beast Herder Tunatun:
-The next step is simple. The cubs need proper positive attention. They only recognize you as their master if you raise them right.
-But, if you ignore them and leave them to their own mischief... Well let's just say you won't be bringing one home for the kids!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-09.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-09.htm deleted file mode 100644 index 7de5db6c8b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-09.htm +++ /dev/null @@ -1,5 +0,0 @@ -Beast Herder Tunatun:
-Now sometimes, and I do mean rarely, a cub remains purely innocent and good, without any trace of evil. Again, this is rare. But when it does happen, that cub will produce a white jewel.
-We call this jewel a Jewel of Innocence. It's a product of the cub's pure love for its master.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-10.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-10.htm deleted file mode 100644 index 9cc88c6e0f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-10.htm +++ /dev/null @@ -1,6 +0,0 @@ -Beast Herder Tunatun:
-You've guessed it, I want that Jewel of Innocence! Beasts crave them, but only the person who raised the cub can retrieve the Jewel of Innocence.
-Also, and I don't know why, but you only get one chance to acquire that jewel. I've only seen it once, truly unforgettable to say the least...
-Get this jewel for me and the reward will be great. What do you say?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-11.html deleted file mode 100644 index b337a79d1c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-11.html +++ /dev/null @@ -1,4 +0,0 @@ -Beast Herder Tunatun:
-I hope you aren't all talk! Feed them, diligently, with Feed from the Feed Sellers, and fortune may shine on you... with a jewel!
-However, a beast with any evil in it can be dangerous. So be careful! I'll be waiting for that jewel. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-12.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-12.htm deleted file mode 100644 index 34f08e0e66..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-12.htm +++ /dev/null @@ -1,5 +0,0 @@ -Beast Herder Tunatun:
-Pay attention. You see those Feed Sellers?
-Purchase the Feed from them, and let Alpine Buffalo, Alpine Grendel, Alpine Kookaburra, Alpine Cougar eat the Feed to make them grow.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-13.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-13.html deleted file mode 100644 index b6c3fcfd9d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-13.html +++ /dev/null @@ -1,6 +0,0 @@ -Beast Herder Tunatun:
-Ahh... I love the farm, but I wonder what they will become when they mature.
-It's not always easy to farm beasts, you know. Even as manager of this place, I can only do so much to command those beasts... Do you know anyone skilled with such beasts...?
-Feral beasts are too dangerous for pretenders and beginners....
-(Only characters of level 82 and above are permitted to take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-14.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-14.html deleted file mode 100644 index 2c3d0bc9cd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-14.html +++ /dev/null @@ -1,4 +0,0 @@ -Beast Herder Tunatun:
-Buy food from the Feed Sellers. Without food the beasts turn feral. If that happens you've wasted everyone's time. So do us both a favor, have enough food ready.
-The cubs you can raise are Alpine Buffalo, Alpine Grendel, Alpine Kookaburra, and Alpine Cougar. So raise em' right. And when you do... bring me a Jewel of Innocence! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-15.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-15.html deleted file mode 100644 index c86acc988f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-15.html +++ /dev/null @@ -1,4 +0,0 @@ -Beast Herder Tunatun:
-The Jewel of Innocence! You aren't thinking of keeping it, are you? I'll pay you now..
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-16.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-16.html deleted file mode 100644 index de762c5959..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/31537-16.html +++ /dev/null @@ -1,7 +0,0 @@ -Beast Herder Tunatun:
-Ahh, it has been too long...! The way light catches it, the color, the texture, the...
-Oh... I, I'm crying. Don't mind me...
-This Jewel... when I hold it I remember the innocence of my youth. I remember a dream...
-I dreamed about making the world a better place. Yes, I was young. But I realize now I still dream this.
-I have to do something, I have to act. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/Q00020_BringUpWithLove.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/Q00020_BringUpWithLove.java deleted file mode 100644 index eef946964a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00020_BringUpWithLove/Q00020_BringUpWithLove.java +++ /dev/null @@ -1,141 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00020_BringUpWithLove; - -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * Bring Up With Love (20) - * @author Adry_85 - */ -public class Q00020_BringUpWithLove extends Quest -{ - // NPC - private static final int TUNATUN = 31537; - // Items - private static final int WATER_CRYSTAL = 9553; - private static final int INNOCENCE_JEWEL = 15533; - // Misc - private static final int MIN_LEVEL = 82; - - public Q00020_BringUpWithLove() - { - super(20); - addStartNpc(TUNATUN); - addTalkId(TUNATUN); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "31537-02.htm": - case "31537-03.htm": - case "31537-04.htm": - case "31537-05.htm": - case "31537-06.htm": - case "31537-07.htm": - case "31537-08.htm": - case "31537-09.htm": - case "31537-10.htm": - case "31537-12.htm": - { - htmltext = event; - break; - } - case "31537-11.html": - { - qs.startQuest(); - htmltext = event; - break; - } - case "31537-16.html": - { - if (qs.isCond(2) && hasQuestItems(player, INNOCENCE_JEWEL)) - { - giveItems(player, WATER_CRYSTAL, 1); - takeItems(player, INNOCENCE_JEWEL, -1); - qs.exitQuest(false, true); - htmltext = event; - } - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - switch (qs.getState()) - { - case State.COMPLETED: - { - htmltext = getAlreadyCompletedMsg(player); - break; - } - case State.CREATED: - { - htmltext = player.getLevel() >= MIN_LEVEL ? "31537-01.htm" : "31537-13.html"; - break; - } - case State.STARTED: - { - switch (qs.getCond()) - { - case 1: - { - htmltext = "31537-14.html"; - break; - } - case 2: - { - htmltext = !hasQuestItems(player, INNOCENCE_JEWEL) ? "31537-14.html" : "31537-15.html"; - break; - } - } - break; - } - } - return htmltext; - } - - public static void checkJewelOfInnocence(L2PcInstance player) - { - final QuestState qs = player.getQuestState(Q00020_BringUpWithLove.class.getSimpleName()); - if ((qs != null) && qs.isCond(1) && !hasQuestItems(player, INNOCENCE_JEWEL) && (getRandom(100) < 5)) - { - giveItems(player, INNOCENCE_JEWEL, 1); - qs.setCond(2, true); - } - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-0.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-0.htm deleted file mode 100644 index 29fd8984ca..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-0.htm +++ /dev/null @@ -1,5 +0,0 @@ -Mercenary Captain Pierce:
-Excellent! I hate to throw you into the fire on your first mission, but it's vital that we find out what happened to our scout!
-Cool your heels a minute and I'll tell you where to focus your search.
-We lost contact with him inside the Swamp of Screams. If you follow the path you can't miss it. I also marked it on your map, so don't get lost! Last thing I need is another missing person. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-01.htm deleted file mode 100644 index 94c47f0c87..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Mercenary Captain Pierce:
-I'm glad to have you on the force! Makes me more optimistic about our chances...
-Anyway, I called you here to ask you a favor. I sent a group of scouts into the Swamp of Screams to investigate the ongoing conflict there, but we've lost contact with one of them. I need someone to find out what happened. Are you up to the task?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-02.html deleted file mode 100644 index 03be0b9b35..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Mercenary Captain Pierce:
-Excellent! I hate to throw you into the fire on your first mission, but it's vital that we find out what happened to our scout!
-Cool your heels a minute and I'll tell you where to focus your search.
-We lost contact with him inside the Swamp of Screams. If you follow the path you can't miss it. I also marked it on your map, so don't get lost! Last thing I need is another missing person. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-03.html deleted file mode 100644 index c46dd6cacf..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Mercenary Captain Pierce:
-What's the hold up?
-We lost contact with the scout inside the Swamp of Screams. Follow the path and you can't miss it. I marked it on the map so you shouldn't get lost. Remember, countless lives are at stake here! We need to find that scout! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-04.htm deleted file mode 100644 index d8e40768d3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-04.htm +++ /dev/null @@ -1,4 +0,0 @@ -Mercenary Captain Pierce:
-We have no use for someone so inexperienced. Get some more training and we'll see what we can do for you...
-(Only characters who are level 81 or above may undertake this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-05.html deleted file mode 100644 index 5da8b71202..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-05.html +++ /dev/null @@ -1,5 +0,0 @@ -Mercenary Captain Pierce:
-I can tell by your looks that you found something. Well? Is my scout OK?
-Spit it out, soldier! What do you know?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-06.html deleted file mode 100644 index 10a0aac163..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-06.html +++ /dev/null @@ -1,5 +0,0 @@ -Mercenary Captain Pierce:
-I see... It is as I feared... He's dead.
-Well, thank you for risking your neck to track him down. We'll learn a lot from the intel he left behind. I'm sure that's what he would've wanted.
-I'll keep my eye out for you from now on. For now, your work here is done. Speak with Kahman over there. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-07.html deleted file mode 100644 index 64bec220b3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-07.html +++ /dev/null @@ -1,3 +0,0 @@ -Mercenary Captain Pierce:
-You've done your part, and I thank you for it. Go to see Kahman over there for your reward. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-0a.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-0a.htm deleted file mode 100644 index eb166f6777..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-0a.htm +++ /dev/null @@ -1,4 +0,0 @@ -Mercenary Captain Pierce:
-We have no use for someone so inexperienced. Get some more training and we'll see what we can do for you...
-(Only characters who are level 81 or higher may undertake this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-0b.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-0b.htm deleted file mode 100644 index 9836f6ca00..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-0b.htm +++ /dev/null @@ -1,5 +0,0 @@ -Mercenary Captain Pierce:
-I'm glad to have you on the force! Makes me more optimistic about our chances...
-Anyway, I called you here to ask you a favor. I sent a group of scouts into the Swamp of Screams to investigate the ongoing conflict there, but we've lost contact with one of them. I need someone to find out what happened. Are you up to the task?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-1.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-1.html deleted file mode 100644 index fa221bbf1d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-1.html +++ /dev/null @@ -1,4 +0,0 @@ -Mercenary Captain Pierce:
-What's the hold up?
-We lost contact with the scout inside the Swamp of Screams. Follow the path and you can't miss it. I marked it on the map so you shouldn't get lost. Remember, countless lives are at stake here! We need to find that scout! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-2.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-2.html deleted file mode 100644 index 7a82c79234..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-2.html +++ /dev/null @@ -1,5 +0,0 @@ -Mercenary Captain Pierce:
-I can tell by your looks that you found something. Well? Is my scout OK?
-Spit it out, soldier! What do you know?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-3.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-3.html deleted file mode 100644 index b345fcd5c6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-3.html +++ /dev/null @@ -1,5 +0,0 @@ -Mercenary Captain Pierce:
-Ah, I see... He's dead, then.
-Good work. At least he gave us some important information: the Stakatos are becoming both wilder and stronger, though we don't know why.
-Our Golden Ram Mercenaries must now prepare for what may well be our final battle. Take this news to Kahman. He will reward you for your efforts. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-3a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-3a.html deleted file mode 100644 index f5902a61ef..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31553-3a.html +++ /dev/null @@ -1,3 +0,0 @@ -Mercenary Captain Pierce:
-You've done your part, and I thank you for it. Go to see Kahman over there for your reward. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31554-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31554-01.html deleted file mode 100644 index db42f3342d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31554-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Mercenary Kahman:
-State your business here! We received no order.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31554-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31554-02.html deleted file mode 100644 index 23eb85006c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31554-02.html +++ /dev/null @@ -1,3 +0,0 @@ -Mercenary Kahman:
-Oh, yeah! It's you! Right, then. Here you go! Don't be too disappointed if it's less than you'd like. Come back later and there'll be more work for you. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31554-1.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31554-1.html deleted file mode 100644 index 060746d967..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31554-1.html +++ /dev/null @@ -1,4 +0,0 @@ -Mercenary Kahman:
-State your business here! We received no order.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31554-2.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31554-2.html deleted file mode 100644 index 347fff60cf..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/31554-2.html +++ /dev/null @@ -1,3 +0,0 @@ -Mercenary Kahman:
-Oh, yeah! It's you! Right, then. Here you go! Don't be too disappointed if it's less than you'd like. Come back later and there'll be more work for you. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-01.html deleted file mode 100644 index db98705a4a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-01.html +++ /dev/null @@ -1,4 +0,0 @@ -
-The corpse of Pierce's scout, who came here looking for the entrance. Search for any clues he might have left.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-02.html deleted file mode 100644 index 51a1bbe1a6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-02.html +++ /dev/null @@ -1,3 +0,0 @@ -
-(Beneath the corpse you find a memo. You should take it to Mercenary Captain Pierce.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-03.html deleted file mode 100644 index f587d3b5a7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-03.html +++ /dev/null @@ -1,3 +0,0 @@ -
-(There's nothing else here. Take the memo to Mercenary Captain Pierce.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-1.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-1.html deleted file mode 100644 index 77b2acc6e6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-1.html +++ /dev/null @@ -1,4 +0,0 @@ -
-The corpse of Pierce's scout, who came here looking for the entrance. Search for any clues he might have left.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-2.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-2.html deleted file mode 100644 index fc671f0d05..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-2.html +++ /dev/null @@ -1,3 +0,0 @@ -
-(Beneath the corpse you find a memo. You should take it to Mercenary Captain Pierce.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-3.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-3.html deleted file mode 100644 index e5eb1f3435..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/32015-3.html +++ /dev/null @@ -1,3 +0,0 @@ -
-(There's nothing else here. Take the memo to Mercenary Captain Pierce.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/Q00109_InSearchOfTheNest.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/Q00109_InSearchOfTheNest.java deleted file mode 100644 index 46ea53a511..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00109_InSearchOfTheNest/Q00109_InSearchOfTheNest.java +++ /dev/null @@ -1,176 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00109_InSearchOfTheNest; - -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * In Search of the Nest (109) - * @author Adry_85, Gladicek - */ -public class Q00109_InSearchOfTheNest extends Quest -{ - // NPCs - private static final int PIERCE = 31553; - private static final int SCOUTS_CORPSE = 32015; - private static final int KAHMAN = 31554; - // Items - private static final int SCOUTS_NOTE = 14858; - // Misc - private static final int MIN_LEVEL = 81; - - public Q00109_InSearchOfTheNest() - { - super(109); - addStartNpc(PIERCE); - addTalkId(PIERCE, SCOUTS_CORPSE, KAHMAN); - addCondMinLevel(MIN_LEVEL, "31553-04.htm"); - registerQuestItems(SCOUTS_NOTE); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - QuestState st = getQuestState(player, false); - if (st == null) - { - return getNoQuestMsg(player); - } - - String htmltext = null; - - switch (event) - { - case "31553-02.html": - { - st.startQuest(); - break; - } - case "32015-02.html": - { - if (st.isCond(1)) - { - giveItems(player, SCOUTS_NOTE, 1); - st.setCond(2, true); - } - break; - } - case "31553-06.html": - { - if (st.isCond(2)) - { - takeItems(player, SCOUTS_NOTE, -1); - st.setCond(3, true); - } - break; - } - case "31554-02.html": - { - if (st.isCond(3)) - { - giveAdena(player, 900990, true); - addExpAndSp(player, 8550000, 2052); - st.exitQuest(false, true); - } - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState st = getQuestState(player, true); - if (st == null) - { - return htmltext; - } - - switch (st.getState()) - { - case State.CREATED: - { - if (npc.getId() == PIERCE) - { - htmltext = "31553-01.htm"; - } - break; - } - case State.STARTED: - { - switch (npc.getId()) - { - case PIERCE: - { - switch (st.getCond()) - { - case 1: - { - htmltext = "31553-03.html"; - break; - } - case 2: - { - htmltext = "31553-05.html"; - break; - } - case 3: - { - htmltext = "31553-07.html"; - break; - } - } - break; - } - case SCOUTS_CORPSE: - { - if (st.isCond(1)) - { - htmltext = "32015-01.html"; - } - else if (st.isCond(2)) - { - htmltext = "32015-03.html"; - } - break; - } - case KAHMAN: - { - if (st.isCond(3)) - { - htmltext = "31554-01.html"; - } - break; - } - } - break; - } - case State.COMPLETED: - { - htmltext = getAlreadyCompletedMsg(player); - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-01.htm deleted file mode 100644 index 02df8fa878..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Spellbook Seller Anton:
-Have you heard of the book entitled "Traces of Living Beings in Ancient Times?" While clearing out the library's underground warehouse one day, I discovered a very old, very worn-out book filled with snatches of some ancient language. Believe me when I tell you that my years of working here have made me pretty familiar with most of the ancient tongues, but this language is totally strange to me. I hope to be able to eventually translate it, but right now it has me completely stymied!
-In any event, I placed it on my shelf and, to my chagrin, eventually forgot about it. But recently I have heard that it may be a very valuable tome -- very valuable indeed!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-02.htm deleted file mode 100644 index 4f61bbd8c7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-02.htm +++ /dev/null @@ -1,4 +0,0 @@ -Spellbook Seller Anton:
-While clearing out the library's underground warehouse one day, I discovered a very old, very worn-out book filled with snatches of some unkown ancient language. I have tried to translate it without success, but I recently learned that this book is very valuable. I am looking for an adventurer who can transport it to Primeval Isle, but I don't think that you're the right person for the job. No offense! I know it sounds like an easy task, but the island is a place filled with peril. I need someone with more...experience to undertake this mission.
-(You must be level 75 or above to start this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-03.htm deleted file mode 100644 index 12b4ac2838..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -Spellbook Seller Anton:
-A few days ago, Clark -- the most avid reader in all Rune Town -- stopped by and asked to see all the books I had cleared out from the underground warehouse. He seemed to be knowledgeable about the subject, so I showed this ancient book to him.
You should have seen Clark's face! He cried out and grasped the book to him as though he was embracing a long-lost friend. He told me that, long ago, he was a member of the original Primeval Isle Expedition and a close friend of the expedition's leader, Captain Marquez. This book, he told me, is the only one of its kind. It contains much of the mythology and history of the Primeval Isle. Marquez himself has searched for it for years, but had all but given up hope of ever finding it.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-04.htm deleted file mode 100644 index 41ebc92539..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-04.htm +++ /dev/null @@ -1,5 +0,0 @@ -Spellbook Seller Anton:
-You're right. It is amazing, isn't it?
Clark told Marquez about my discovery, and Marquez wrote to me asking that he be allowed to obtain the book to assist the writing of his own history of the island. In its wisdom, the fathers of our library decided that the interests of scholarship would be best served by loaning the book to Marquez. But we need someone, preferably an adventurer, willing to transport it to him on Primeval Isle.
-I don't think the task should be especially difficult, but of course anything so unique and valuable is bound to attract the attention of...well, less savory sorts of people. That's why we want someone with the skill to handle any trouble that may come along. What do you think? Would you like to do it?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-05.html deleted file mode 100644 index e5a7859b6b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Spellbook Seller Anton:
-Excellent! Excellent! Marquez will be so pleased! Let me fetch the book for you so you can take it to Marquez. You will find him in the front area of the wharf on Primeval Isle. Obviously, you'll need to take a ship from Rune Port to reach the island.
-May your journey be uneventful! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-06.html deleted file mode 100644 index 0ba6222035..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Spellbook Seller Anton:
-Please take that book to Marquez at the wharf on Primeval Isle.
-I know that you'll enjoy meeting him. An old adventurer himself, he always has time to talk to a young up-and-comer such as yourself. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-0a.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-0a.htm deleted file mode 100644 index 45745f2e05..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-0a.htm +++ /dev/null @@ -1,4 +0,0 @@ -Spellbook Seller Anton:
-While clearing out the library's underground warehouse one day, I discovered a very old, very worn-out book filled with snatches of some unkown ancient language. I have tried to translate it without success, but I recently learned that this book is very valuable. I am looking for an adventurer who can transport it to Primeval Isle, but I don't think that you're the right person for the job. No offense! I know it sounds like an easy task, but the island is a place filled with peril. I need someone with more...experience to undertake this mission.
-(Only characters level 75 and above are permitted to take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-0b.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-0b.htm deleted file mode 100644 index e4905fd6a7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-0b.htm +++ /dev/null @@ -1,5 +0,0 @@ -Spellbook Seller Anton:
-Have you heard of the book entitled "Traces of Living Beings in Ancient Times?" While clearing out the library's underground warehouse one day, I discovered a very old, very worn-out book filled with snatches of some ancient language. Believe me when I tell you that my years of working here have made me pretty familiar with most of the ancient tongues, but this language is totally strange to me. I hope to be able to eventually translate it, but right now it has me completely stymied!
-In any event, I placed it on my shelf and, to my chagrin, eventually forgot about it. But recently I have heard that it may be a very valuable tome -- very valuable indeed!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-0c.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-0c.htm deleted file mode 100644 index e261d1c43e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-0c.htm +++ /dev/null @@ -1,5 +0,0 @@ -Spellbook Seller Anton:
-A few days ago, Clark -- the most avid reader in all Rune Town -- stopped by and asked to see all the books I had cleared out from the underground warehouse. He seemed to be knowledgeable about the subject, so I showed this ancient book to him.
-You should have seen Clark's face! He cried out and grasped the book to him as though he was embracing a long-lost friend. He told me that, long ago, he was a member of the original Primeval Isle Expedition and a close friend of the expedition's leader, Captain Marquez. This book, he told me, is the only one of its kind. It contains much of the mythology and history of the Primeval Isle. Marquez himself has searched for it for years, but had all but given up hope of ever finding it.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-0d.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-0d.htm deleted file mode 100644 index 356b393815..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-0d.htm +++ /dev/null @@ -1,6 +0,0 @@ -Spellbook Seller Anton:
-You're right. It is amazing, isn't it?
-Clark told Marquez about my discovery, and Marquez wrote to me asking that he be allowed to obtain the book to assist the writing of his own history of the island. In its wisdom, the fathers of our library decided that the interests of scholarship would be best served by loaning the book to Marquez. But we need someone, preferably an adventurer, willing to transport it to him on Primeval Isle.
-I don't think the task should be especially difficult, but of course anything so unique and valuable is bound to attract the attention of...well, less savory sorts of people. That's why we want someone with the skill to handle any trouble that may come along. What do you think? Would you like to do it?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-1.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-1.html deleted file mode 100644 index ce93bc1a17..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-1.html +++ /dev/null @@ -1,4 +0,0 @@ -Spellbook Seller Anton:
-Excellent! Excellent! Marquez will be so pleased! Let me fetch the book for you so you can take it to Marquez. You will find him in the front area of the wharf on Primeval Isle. Obviously, you'll need to take a ship from Rune Port to reach the island.
-May your journey be uneventful! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-1a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-1a.html deleted file mode 100644 index 9c694b350c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/31338-1a.html +++ /dev/null @@ -1,4 +0,0 @@ -Spellbook Seller Anton:
-Please take that book to Marquez at the wharf on Primeval Isle.
-I know that you'll enjoy meeting him. An old adventurer himself, he always has time to talk to a young up-and-comer such as yourself. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-01.html deleted file mode 100644 index b282832614..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-It doesn't look as though you are here to travel. Do you have anything else to say to me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-02.html deleted file mode 100644 index c5e863fbf9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Marquez:
-Oh, you're the gutsy one Anton mentioned! Ha-ha-ha! Perhaps you haven't heard of me, though? At first, my sole purpose in founding this place was to obtain freedom and wealth. But I was soon attracted to the innocence and mystery of the island itself. I led an expedition deep into the island's interior, fascinated by all we encountered.
-It was not without its perils, though -- we were attacked by those powerful dinosaurs and the Elrokians themselves. Many of our group lost their lives. But some good did come from our efforts -- we established ties of friendship with the Elrokians.
I know that I am too old now to venture again into the wild interior, but the island's mystery still quickens my heart.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-03.html deleted file mode 100644 index 384ebafaef..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-03.html +++ /dev/null @@ -1,5 +0,0 @@ -Marquez:
-Ha ha! Thank you for saying so. But my aching body knows the truth; those days have ended for me. Lately I have at least tried to pass my knowledge on to younger adventurers by writing an account of my experiences on the island.
I started by recounting both my own personal experiences and various stories I learned from the natives. But then I heard of a ancient book that recounts the history of Primeval Isle, and I have searched for it for years now without success. I was ready to give up...until Clark sent me a message saying that he found it. And here it is...
I see by your expression that you are as curious about its contents as I am! The ancient language is no doubt foreign to you, but I can translate a few passages if you are interested in hearing them. Shall I do so?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-04.html deleted file mode 100644 index 8ac6062319..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-04.html +++ /dev/null @@ -1,5 +0,0 @@ -Marquez:
-Excellent! I see in you the spirit of my younger days! Very well, let me begin:
-In the days of old, when the circle of the gods was broken, countless races were spawned from that circle. The greatest of them were the gods themselves; the next greatest were the Giants. And the gods gave the Giants authority to rule over the world. All scholars know this story, but in these latter days men wonder what has become of all the creatures brought forth into the world at the breaking of the circle.
-An interesting beginning, eh? Clearly this was a learned author; perhaps I will discover in its pages new knowledge about the ancient Primeval Isle. I can hardly wait to begin my translation! Thank you for bringing this prize to me. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-05.html deleted file mode 100644 index 9924c52e88..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-I see. Obviously, the book has greater value for me than for others; I'm sure you understand. In any case, thank you for bringing it to me.
-If you ever decide to explore the Primeval Isle for yourself, I may be of service to you. Until that day, farewell! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-1.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-1.html deleted file mode 100644 index 0d47af390b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-1.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-It doesn't look as though you are here to travel. Do you have anything else to say to me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-1a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-1a.html deleted file mode 100644 index 085cbfa556..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-1a.html +++ /dev/null @@ -1,6 +0,0 @@ -Marquez:
-Oh, you're the gutsy one Anton mentioned! Ha-ha-ha! Perhaps you haven't heard of me, though? At first, my sole purpose in founding this place was to obtain freedom and wealth. But I was soon attracted to the innocence and mystery of the island itself. I led an expedition deep into the island's interior, fascinated by all we encountered.
-It was not without its perils, though -- we were attacked by those powerful dinosaurs and the Elrokians themselves. Many of our group lost their lives. But some good did come from our efforts -- we established ties of friendship with the Elrokians.
-I know that I am too old now to venture again into the wild interior, but the island's mystery still quickens my heart.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-1b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-1b.html deleted file mode 100644 index b409adf99b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-1b.html +++ /dev/null @@ -1,7 +0,0 @@ -Marquez:
-Ha ha! Thank you for saying so. But my aching body knows the truth; those days have ended for me. Lately I have at least tried to pass my knowledge on to younger adventurers by writing an account of my experiences on the island.
-I started by recounting both my own personal experiences and various stories I learned from the natives. But then I heard of a ancient book that recounts the history of Primeval Isle, and I have searched for it for years now without success. I was ready to give up...until Clark sent me a message saying that he found it. And here it is...
-I see by your expression that you are as curious about its contents as I am! The ancient language is no doubt foreign to you, but I can translate a few passages if you are interested in hearing them. Shall I do so?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-2.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-2.html deleted file mode 100644 index eee5fd76d6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-2.html +++ /dev/null @@ -1,5 +0,0 @@ -Marquez:
-Excellent! I see in you the spirit of my younger days! Very well, let me begin:
-In the days of old, when the circle of the gods was broken, countless races were spawned from that circle. The greatest of them were the gods themselves; the next greatest were the Giants. And the gods gave the Giants authority to rule over the world. All scholars know this story, but in these latter days men wonder what has become of all the creatures brought forth into the world at the breaking of the circle.
-An interesting beginning, eh? Clearly this was a learned author; perhaps I will discover in its pages new knowledge about the ancient Primeval Isle. I can hardly wait to begin my translation! Thank you for bringing this prize to me. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-2a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-2a.html deleted file mode 100644 index be3c2b1a09..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/32113-2a.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-I see. Obviously, the book has greater value for me than for others; I'm sure you understand. In any case, thank you for bringing it to me.
-If you ever decide to explore the Primeval Isle for yourself, I may be of service to you. Until that day, farewell! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/Q00110_ToThePrimevalIsle.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/Q00110_ToThePrimevalIsle.java deleted file mode 100644 index 87f41bf4d2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00110_ToThePrimevalIsle/Q00110_ToThePrimevalIsle.java +++ /dev/null @@ -1,144 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00110_ToThePrimevalIsle; - -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * To the Primeval Isle (110) - * @author Adry_85, Gladicek - */ -public class Q00110_ToThePrimevalIsle extends Quest -{ - // NPCs - private static final int ANTON = 31338; - private static final int MARQUEZ = 32113; - // Item - private static final int ANCIENT_BOOK = 8777; - // Misc - private static final int MIN_LEVEL = 75; - - public Q00110_ToThePrimevalIsle() - { - super(110); - addStartNpc(ANTON); - addTalkId(ANTON, MARQUEZ); - addCondMinLevel(MIN_LEVEL, ""); - registerQuestItems(ANCIENT_BOOK); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - QuestState st = getQuestState(player, false); - if (st == null) - { - return getNoQuestMsg(player); - } - - String htmltext = null; - - switch (event) - { - case "31338-03.htm": - case "31338-04.htm": - case "32113-02.html": - case "32113-03.html": - { - htmltext = event; - break; - } - case "31338-05.html": - { - giveItems(player, ANCIENT_BOOK, 1); - st.startQuest(); - break; - } - case "32113-04.html": - case "32113-05.html": - { - if (st.isCond(1)) - { - if ((player.getLevel() >= MIN_LEVEL)) - { - giveAdena(player, 189208, true); - addExpAndSp(player, 887732, 213); - st.exitQuest(false, true); - } - else - { - htmltext = getNoQuestLevelRewardMsg(player); - } - break; - } - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState st = getQuestState(player, true); - if (st == null) - { - return htmltext; - } - - switch (st.getState()) - { - case State.CREATED: - { - if (npc.getId() == ANTON) - { - htmltext = "31338-01.htm"; - } - break; - } - case State.STARTED: - { - if (npc.getId() == ANTON) - { - if (st.isCond(1)) - { - htmltext = "32113-06.html"; - } - } - else if (npc.getId() == MARQUEZ) - { - if (st.isCond(1)) - { - htmltext = "32113-01.html"; - } - } - break; - } - case State.COMPLETED: - { - htmltext = getAlreadyCompletedMsg(player); - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-01.htm deleted file mode 100644 index 382b2bbcd2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-Ah, my young adventurer... So, did you have a look around this Primeval Isle? As you probably know already, there are many unique creatures on this island. There is also an ancient race of men, the Elroki tribe. Though they may seem primitive to your eyes in some respects, do not underestimate them! Theirs is a culture rich in history and tradition, and they have skills unknown to more "civilized" races. How else could they have survived all these years surrounded by these vicious dinosaurs?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-02.htm deleted file mode 100644 index 0dc121e169..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-02.htm +++ /dev/null @@ -1,6 +0,0 @@ -Marquez:
-Once, I accompanied the Elrokians on a dinosaur hunt... It was a remarkable experience!
-The Elrokians first weaken the creatures by wielding a strange-looking device unique to their tribe. Are you by chance interested in learning the skill?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-03.html deleted file mode 100644 index 8584ab9d17..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-Ah, then you must seek out the leader of the Elroki tribe, Chief Mushika, who once explored with me. Tell him that I sent you and perhaps he will more readily accept you.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-04.html deleted file mode 100644 index 544202627f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Marquez:
-The chief lives in the Elroki village on the southern Primeval Plains. His people shun outsiders, but you may have some luck if you first contact a native warrior I know, Orahochin, who lives near the foot of the mountain that lies between the southern shore of the Primeval Plains and the Lost Nest. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-05.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-05.htm deleted file mode 100644 index 47fee5e445..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-05.htm +++ /dev/null @@ -1,3 +0,0 @@ -Marquez:
-Bah! Only the ignorant would think such a thing! Keep company with the dinosaurs themselves, then, for all I care! Fool! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-06.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-06.htm deleted file mode 100644 index fd86876c8a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-06.htm +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-Ah, my young adventurer... So, did you have a look around this Primeval Isle? As you probably know already, there are many unique creatures on this island. There is also an ancient race of men, the Elroki tribe. Though they may seem primitive to your eyes in some respects, do not underestimate them! Theirs is a culture rich in history and tradition, and they have skills unknown to more "civilized" races. How else could they have survived all these years surrounded by these vicious dinosaurs? We could learn much from them...
-(You must be level 75 or above to start this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-06.html deleted file mode 100644 index 14723eebfb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-Ah, my young adventurer... So, did you have a look around this Primeval Isle? As you probably know already, there are many unique creatures on this island. There is also an ancient race of men, the Elroki tribe. Though they may seem primitive to your eyes in some respects, do not underestimate them! Theirs is a culture rich in history and tradition, and they have skills unknown to more "civilized" races. How else could they have survived all these years surrounded by these vicious dinosaurs? We could learn much from them...
-(Only characters level 75 and above are permitted to take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-07.html deleted file mode 100644 index e8e1131d62..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-Hurry, then, and visit Mushika, chief of the Elroki tribe.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-08.html deleted file mode 100644 index 5914e28517..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-08.html +++ /dev/null @@ -1,6 +0,0 @@ -Marquez:
-Is Mushika ill?
-Oh no... I am worried for him...
-His son, Asamah, is probably acting as chief on his behalf.
-Go talk to Asamah. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-09.html deleted file mode 100644 index 8dfce11250..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-09.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-Did you meet Mushika? Did you discover something about the mysterious skill I told you about?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-10.html deleted file mode 100644 index 59fa94d083..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-10.html +++ /dev/null @@ -1,7 +0,0 @@ -Marquez:
-Hmmm, perhaps this will help you forge a bond with the Elrokians... During my explorations of the island, I was gravely wounded -- if not for Mushika, I would have died.
-He took me back to the Elrokian village, where I stayed while I recovered.
-During my time there, I heard of a song called the "Warrior's Song" that supposedly contains all the Elroki tribe's pride, pain and sadness.
They sing this song in both victory and mourning.
-If you can learn the song and its meaning, perhaps you can earn the tribe's trust...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-11.html deleted file mode 100644 index fd59a5933a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-11.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-Hmmm... A member of my expedition used to speak about an old Elrokian hunter friend of his who knew the song.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-12.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-12.html deleted file mode 100644 index 1758b144b6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-12.html +++ /dev/null @@ -1,6 +0,0 @@ -Marquez:
-Sadly, he was killed by a Velociraptor not long ago.
-...
-How unfortunate!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-13.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-13.html deleted file mode 100644 index 016f391adb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-13.html +++ /dev/null @@ -1,5 +0,0 @@ -Marquez:
-You know, now that I think of it, I remember that he kept a journal...
-Perhaps it contains some clue.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-14.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-14.html deleted file mode 100644 index 40685d4d8c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-14.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-The Velociraptor destroyed his belongings at the time of the attack. Perhaps it carried away his journal as well...
If you can defeat the Velociraptor, we may be able to get the journal back.
Do you feel you could find his journal -- or whatever remains of it?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-15.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-15.html deleted file mode 100644 index 73fa1f40fe..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-15.html +++ /dev/null @@ -1,3 +0,0 @@ -Marquez:
-Very good! Then head east to the Lost Nest. Hunt the Velociraptor and bring back the journal pieces. The journal is a total of 50 pages. Good luck! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-16.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-16.html deleted file mode 100644 index 7c91a72a65..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-16.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-Go and defeat the Velociraptor and bring back the 50-page journal
. Travel east to the Lost Nest and I have no doubt that you will find the Velociraptor.
-Good hunting! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-17.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-17.html deleted file mode 100644 index 4a67ee7ccc..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-17.html +++ /dev/null @@ -1,5 +0,0 @@ -Marquez:
-Good work! You've brought all the journal pieces!
-Now I can return this to his family; perhaps it will comfort them to have a memento of my brave friend...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-18.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-18.html deleted file mode 100644 index 4fdd618edd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-18.html +++ /dev/null @@ -1,14 +0,0 @@ -Marquez:
-Hmmm... Let's see here...

--The contents of the journal-
-... (omitted)...
-There are many ferns here... It is too thick... There are dark places, too...
-....(omitted)...
-This place is full of dangerous and powerful creatures...
-These creatures are not described in any other books I have ever read... Today, 2 of our members were killed.
-...(omitted)...
-We are lost in the jungle.
-How will I return to the camp?
-...(omitted)...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-19.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-19.html deleted file mode 100644 index 73ab7ae819..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-19.html +++ /dev/null @@ -1,8 +0,0 @@ -Marquez:
-Is this to be our fate? Lost, pursued by these vicious creatures?
-...(omitted)...
-We were attacked by more strange creatures, smaller than the others we have seen. These new ones seem to hunt in packs!
-I have become separated from my group...
-Will I survive?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-20.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-20.html deleted file mode 100644 index ed4c84e3b9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-20.html +++ /dev/null @@ -1,7 +0,0 @@ -Marquez:
-I met a friend today.
He looks just like the creatures living here but he walks upright and seems to possess intelligence.
-He used a strange skill to save my life,
and he shared water and food with me.
-If it were not for him, I would not have been able to write these words.
-He saved my life.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-21.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-21.html deleted file mode 100644 index 08bfcc7e4c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-21.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-(According to the journal, it seems like the writer of this diary spent about a year with the native who saved his life.) The native's name is Kirikachin. A skillful hunter, he is respected by all the natives.
For some reason, however, Kirikachin cannot live in the native village or freely contact his people.
(Was this the result of some sort of duty? Or was it some kind of punishment? It seems as though there is some story concerned with it.)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-22.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-22.html deleted file mode 100644 index 18b279a696..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-22.html +++ /dev/null @@ -1,5 +0,0 @@ -Marquez:
-(It looks like lonely Kirikachin and the writer of this diary became close friends during their time together, and shared much of their knowledge with each other. My friend taught Kirikachin the famous children's song of Aden, "10 Little Midgets" and learned the "Warrior Song" from Kirikachin.
-One time, he even repaid his debt to Kirikachin by saving his life using a healing technique of Aden. It seems the two men became as close as brothers...)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-23.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-23.html deleted file mode 100644 index dd4bb4ba82..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-23.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-(Even after he was found by the expedition, he traveled back and forth to Kirikachin's camp. In fact, it seems like he stayed with Kirikachin more frequently than he did with his fellow explorers.)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-24.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-24.html deleted file mode 100644 index 8fa6d3ba37..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-24.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-(The last page is so blood-stained and damaged that its words are illegible. But there appears to be something stuck between the pages: an envelope.)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-25.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-25.html deleted file mode 100644 index 05c3686a8c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-25.html +++ /dev/null @@ -1,6 +0,0 @@ -Marquez:
-This is seems to be a letter that my friend wrote to the native.
-The diary itself, I must return to his family...
-But I think that this letter should be delivered to his native friend.
-Would you mind taking it with you, since you must seek out Kirikachin to learn the song? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-26.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-26.html deleted file mode 100644 index 003923d46b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-26.html +++ /dev/null @@ -1,5 +0,0 @@ -Marquez:
-Good work! You've brought all the journal pieces!
Please take this as a small token of my appreciation.
-Now I can give return this to his family.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-27.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-27.html deleted file mode 100644 index ce232f50e0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-27.html +++ /dev/null @@ -1,3 +0,0 @@ -Marquez:
-Go meet Kirikachin and give him this letter. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-28.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-28.html deleted file mode 100644 index abf957bef5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-28.html +++ /dev/null @@ -1,3 +0,0 @@ -Marquez:
-So you met Kirikachin? Then learn the "Warrior Song"! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-29.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-29.html deleted file mode 100644 index 684117546f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-29.html +++ /dev/null @@ -1,3 +0,0 @@ -Marquez:
-You've already learned the song? Good! Then go directly to Chief Mushika! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-30.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-30.html deleted file mode 100644 index da068abeb8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32113-30.html +++ /dev/null @@ -1,3 +0,0 @@ -Marquez:
-That song earned you their friendship? Congratulations! I hope you learn many things from them... - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32114-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32114-01.html deleted file mode 100644 index 2d1ca57b7f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32114-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Mushika:
-Uhh, Ma...(coughing)...Marquez sent you?
-Um...um... (coughing)... Forgive me, I am so very weak... Please speak with my son Asamah... - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32114-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32114-02.html deleted file mode 100644 index 719666ffaa..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32114-02.html +++ /dev/null @@ -1,3 +0,0 @@ -Mushika:
-Uhhh...(coughing)... Please, speak with my son Asamah... - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32114-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32114-03.html deleted file mode 100644 index 70b87075c9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32114-03.html +++ /dev/null @@ -1,3 +0,0 @@ -Mushika:
-Ah, you understand us very well, almost as if you were one of us...(coughing)... What...(coughing)...do you...need...(coughing)...I'm sorry, I fear I am too weak to speak more... Please talk to my son, Asamah... - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-01.html deleted file mode 100644 index 9f0a9a66a4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-01.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-Are you looking for my father, Chief Mushika?
-He is very ill, and you may have a difficult time understanding him. But I suppose there is no harm in trying.
-For myself, I am forbidden from speaking with outsiders unless my father so orders it. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-02.html deleted file mode 100644 index 7cfe71ade4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-Marquez sent you?
-Why?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-03.html deleted file mode 100644 index d00c31dcf6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-03.html +++ /dev/null @@ -1,7 +0,0 @@ -Asamah:
-How would you know about that skill?
-Hmm... I assume Marquez probably told you about it.
-I'm sorry, but the skill can only be taught to members of our tribe. It is forbidden to teach it to outsiders.
-If you understood our tribe better, as Marquez does, it might be a different matter...
-(It seems you must return to Marquez and ask him for advice on how to best interact with the Elroki tribe.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-04.html deleted file mode 100644 index bde33ed7dd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Asamah:
-I cannot speak about those skills unless you are one of us or have proven yourself a worthy friend of the Elroki tribe! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-05.html deleted file mode 100644 index dcad68771d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Asamah:
-Stubborn, aren't you? I still have nothing to say to you about those skills! -
- \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-06.html deleted file mode 100644 index 63bb5d85e7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Asamah:
-This...this...song!!! The surrounding Elrokians perk up and suddenly begin singing together.
-(When the excitement dies down, you'll have to face them.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-07.html deleted file mode 100644 index 7bc0653135..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-07.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-Where did you learn this song?
It seems like you not only know the melody of it, but that you also understand the spirit and meaning of the song.
-When I hear you sing, in fact, it's plain to me that you understand!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-08.html deleted file mode 100644 index e50c9863ce..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-08.html +++ /dev/null @@ -1,6 +0,0 @@ -Asamah:
-Oh, that's what happened... I am truly sorry about Kirikachin's friend.
-On a happier note... by understanding that song you have shown yourself a true friend of the Elroki tribe.
-How can we help you further my friend?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-09.html deleted file mode 100644 index 861c03422b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-09.html +++ /dev/null @@ -1,6 +0,0 @@ -Asamah:
-Ah, I see -- you need a tool to use the skill.
-I can make the tool you need if you can bring me the right materials.
-The materials I will require are 10 Ornithomimus claws, 10 Deinonychus bones, and 10 Pachycephalosaurus skins.
-Good luck! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-10.html deleted file mode 100644 index dabfe2d018..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-10.html +++ /dev/null @@ -1,4 +0,0 @@ -Asamah:
-The materials I need are10 Ornithomimus claws, 10 Deinonychus bones, and 10 Pachycephalosaurus skins.
-Go and bring me those items! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-11.html deleted file mode 100644 index 422524323a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-11.html +++ /dev/null @@ -1,12 +0,0 @@ -Asamah:
-Excellent, you have brought all the necessary materials.
-Now I ask for your patience while I work.
-This one like this...
-And this one, like this...
-Then combine all these..
-Whew!
-Here it is...finished at last.
-Take this to Kirikachin, and he will teach you the skill.
-Be sure to tell him that I sent you.
-Good luck in your studies! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-12.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-12.html deleted file mode 100644 index d36f255009..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32115-12.html +++ /dev/null @@ -1,3 +0,0 @@ -Asamah:
-Has Kirikachin taught you well? The skill is not easy to master, of that there can be no doubt. But I have faith in you! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-01.html deleted file mode 100644 index c4cd33deec..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-01.html +++ /dev/null @@ -1,7 +0,0 @@ -Kirikachin:
-Oh, outsider... Are there any of your race who know me, Kirikachin?
-...
-...
-Hmmm... No? You do not know? Then mind your own business!
-I am on an important mission and cannot be delayed! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-02.html deleted file mode 100644 index b307451845..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Kirikachin:
-Oh, outsider... Are there any of your race who know me, Kirikachin? I once had a friend in one such as you, but I can no longer locate him. Have you news of his whereabouts?
-(Give him the letter.)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-03.html deleted file mode 100644 index f4488a84e1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Kirikachin:
-(As he reads the letter, Kirikachin's hands begin to shake and tears fall onto the page. He sobs softly.)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-04.html deleted file mode 100644 index 4702adc78f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-04.html +++ /dev/null @@ -1,4 +0,0 @@ -Kirikachin:
-(Before you can put your hand on his shoulder, Kirikachin suddenly lifts his head and begins to sing. You've never heard this song before, but it is so sad and moving that it brings tears to your eyes.)
-Talk to Kirikachin again when he has finished singing. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-05.html deleted file mode 100644 index f4488a84e1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Kirikachin:
-(As he reads the letter, Kirikachin's hands begin to shake and tears fall onto the page. He sobs softly.)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-06.html deleted file mode 100644 index fb9e87355c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-06.html +++ /dev/null @@ -1,5 +0,0 @@ -Kirikachin:
-My heart is saddened, but I know he has gone to his rightful reward. My thanks to you for bringing me this letter -- now I know the truth, and that is some comfort.
-How can I repay you for your trouble?
Anything I can do for you?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-07.html deleted file mode 100644 index fa355ff4da..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-07.html +++ /dev/null @@ -1,3 +0,0 @@ -Kirikachin:
-(Kirikachin tells you about the origin and meaning of the song, and the sad fate that has befallen the Elroki tribe whose mighty warriors once sang the song.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-08.html deleted file mode 100644 index fbe71f2628..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-08.html +++ /dev/null @@ -1,3 +0,0 @@ -Kirikachin:
-Ah! Thank you for your kindness. Please, outsider, find a place of safety -- these lands are filled with peril, especially for one such as yourself! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-09.html deleted file mode 100644 index 8d962361fe..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-09.html +++ /dev/null @@ -1,5 +0,0 @@ -Kirikachin:
-What do you need? Ah, you wish to learn a skill? This is not something that just anyone can learn...
-And you are an outsider, after all...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-10.html deleted file mode 100644 index c290962936..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/32116-10.html +++ /dev/null @@ -1,14 +0,0 @@ -Kirikachin:
-Ah, the practice device needed to learn this skill! Only Asamah could have made it; clearly he has accepted your hand in friendship, though you are an outsider.
-I'll teach you; listen carefully.
-When you have the trap in your hand, you can use 3 types of skills.
-You can only use capture skill on the powerful dinosaur, Tyrannosaurus. You must use Kabokula, the first among the 3 skills, to put the dinosaur in a captive state.
-To maintain that captive state, however, you must use the appropriate skill for counteracting one of the Tyrannosaurus' 3 kinds of reactions. You will learn when to use which skill through experience.
-Whenever you use the 3 types of skills, you will consume a capture stone; therefore, you should prepare enough capture stones for your task.
-Now I have told you everything I know...
-Your practice device is now useless, so I will take it...
-In its place, take this real device and these capture stones. After you have used all the capture stones, buy more from Asamah.
-If you lose the device, you may buy another from Asamah -- but take care not to lose it, outsider!
-May it bring you success in battle and glory in the annals of our tribe!
-May Shilen guide your hand! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/Q00111_ElrokianHuntersProof.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/Q00111_ElrokianHuntersProof.java deleted file mode 100644 index ae27851453..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00111_ElrokianHuntersProof/Q00111_ElrokianHuntersProof.java +++ /dev/null @@ -1,487 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00111_ElrokianHuntersProof; - -import java.util.HashMap; -import java.util.Map; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.holders.ItemChanceHolder; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * Elrokian Hunter's Proof (111) - * @author Adry_85 - */ -public final class Q00111_ElrokianHuntersProof extends Quest -{ - // NPCs - private static final int MARQUEZ = 32113; - private static final int MUSHIKA = 32114; - private static final int ASAMAH = 32115; - private static final int KIRIKACHIN = 32116; - // Items - private static final int ELROKIAN_TRAP = 8763; - private static final int TRAP_STONE = 8764; - private static final int DIARY_FRAGMENT = 8768; - private static final int EXPEDITION_MEMBERS_LETTER = 8769; - private static final int ORNITHOMINUS_CLAW = 8770; - private static final int DEINONYCHUS_BONE = 8771; - private static final int PACHYCEPHALOSAURUS_SKIN = 8772; - private static final int PRACTICE_ELROKIAN_TRAP = 8773; - // Misc - private static final int MIN_LEVEL = 75; - // Mobs - private static final Map MOBS_DROP_CHANCES = new HashMap<>(); - - static - { - MOBS_DROP_CHANCES.put(22196, new ItemChanceHolder(DIARY_FRAGMENT, 0.51, 4)); // velociraptor_leader - MOBS_DROP_CHANCES.put(22197, new ItemChanceHolder(DIARY_FRAGMENT, 0.51, 4)); // velociraptor - MOBS_DROP_CHANCES.put(22198, new ItemChanceHolder(DIARY_FRAGMENT, 0.51, 4)); // velociraptor_s - MOBS_DROP_CHANCES.put(22218, new ItemChanceHolder(DIARY_FRAGMENT, 0.25, 4)); // velociraptor_n - MOBS_DROP_CHANCES.put(22223, new ItemChanceHolder(DIARY_FRAGMENT, 0.26, 4)); // velociraptor_leader2 - MOBS_DROP_CHANCES.put(22200, new ItemChanceHolder(ORNITHOMINUS_CLAW, 0.66, 11)); // ornithomimus_leader - MOBS_DROP_CHANCES.put(22201, new ItemChanceHolder(ORNITHOMINUS_CLAW, 0.33, 11)); // ornithomimus - MOBS_DROP_CHANCES.put(22202, new ItemChanceHolder(ORNITHOMINUS_CLAW, 0.66, 11)); // ornithomimus_s - MOBS_DROP_CHANCES.put(22219, new ItemChanceHolder(ORNITHOMINUS_CLAW, 0.33, 11)); // ornithomimus_n - MOBS_DROP_CHANCES.put(22224, new ItemChanceHolder(ORNITHOMINUS_CLAW, 0.33, 11)); // ornithomimus_leader2 - MOBS_DROP_CHANCES.put(22203, new ItemChanceHolder(DEINONYCHUS_BONE, 0.65, 11)); // deinonychus_leader - MOBS_DROP_CHANCES.put(22204, new ItemChanceHolder(DEINONYCHUS_BONE, 0.32, 11)); // deinonychus - MOBS_DROP_CHANCES.put(22205, new ItemChanceHolder(DEINONYCHUS_BONE, 0.66, 11)); // deinonychus_s - MOBS_DROP_CHANCES.put(22220, new ItemChanceHolder(DEINONYCHUS_BONE, 0.32, 11)); // deinonychus_n - MOBS_DROP_CHANCES.put(22225, new ItemChanceHolder(DEINONYCHUS_BONE, 0.32, 11)); // deinonychus_leader2 - MOBS_DROP_CHANCES.put(22208, new ItemChanceHolder(PACHYCEPHALOSAURUS_SKIN, 0.50, 11)); // pachycephalosaurus_ldr - MOBS_DROP_CHANCES.put(22209, new ItemChanceHolder(PACHYCEPHALOSAURUS_SKIN, 0.50, 11)); // pachycephalosaurus - MOBS_DROP_CHANCES.put(22210, new ItemChanceHolder(PACHYCEPHALOSAURUS_SKIN, 0.50, 11)); // pachycephalosaurus_s - MOBS_DROP_CHANCES.put(22221, new ItemChanceHolder(PACHYCEPHALOSAURUS_SKIN, 0.49, 11)); // pachycephalosaurus_n - MOBS_DROP_CHANCES.put(22226, new ItemChanceHolder(PACHYCEPHALOSAURUS_SKIN, 0.50, 11)); // pachycephalosaurus_ldr2 - } - - public Q00111_ElrokianHuntersProof() - { - super(111); - addStartNpc(MARQUEZ); - addTalkId(MARQUEZ, MUSHIKA, ASAMAH, KIRIKACHIN); - addKillId(MOBS_DROP_CHANCES.keySet()); - addCondMinLevel(MIN_LEVEL, "32113-06.htm"); - registerQuestItems(DIARY_FRAGMENT, EXPEDITION_MEMBERS_LETTER, ORNITHOMINUS_CLAW, DEINONYCHUS_BONE, PACHYCEPHALOSAURUS_SKIN, PRACTICE_ELROKIAN_TRAP); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - String htmltext = null; - if (qs == null) - { - return htmltext; - } - - switch (event) - { - case "32113-02.htm": - case "32113-05.htm": - case "32113-04.html": - case "32113-10.html": - case "32113-11.html": - case "32113-12.html": - case "32113-13.html": - case "32113-14.html": - case "32113-18.html": - case "32113-19.html": - case "32113-20.html": - case "32113-21.html": - case "32113-22.html": - case "32113-23.html": - case "32113-24.html": - case "32115-08.html": - case "32116-03.html": - { - htmltext = event; - break; - } - case "32113-03.html": - { - qs.startQuest(); - qs.setMemoState(1); - htmltext = event; - break; - } - case "32113-15.html": - { - if (qs.isMemoState(3)) - { - qs.setMemoState(4); - qs.setCond(4, true); - htmltext = event; - } - break; - } - case "32113-25.html": - { - if (qs.isMemoState(5)) - { - qs.setMemoState(6); - qs.setCond(6, true); - giveItems(player, EXPEDITION_MEMBERS_LETTER, 1); - htmltext = event; - } - break; - } - case "32115-03.html": - { - if (qs.isMemoState(2)) - { - qs.setMemoState(3); - qs.setCond(3, true); - htmltext = event; - } - break; - } - case "32115-06.html": - { - if (qs.isMemoState(9)) - { - qs.setMemoState(10); - qs.setCond(9); - playSound(player, QuestSound.ETCSOUND_ELROKI_SONG_FULL); - htmltext = event; - } - break; - } - case "32115-09.html": - { - if (qs.isMemoState(10)) - { - qs.setMemoState(11); - qs.setCond(10, true); - htmltext = event; - } - break; - } - case "32116-04.html": - { - if (qs.isMemoState(7)) - { - qs.setMemoState(8); - playSound(player, QuestSound.ETCSOUND_ELROKI_SONG_FULL); - htmltext = event; - } - break; - } - case "32116-07.html": - { - if (qs.isMemoState(8)) - { - qs.setMemoState(9); - qs.setCond(8, true); - htmltext = event; - } - break; - } - case "32116-10.html": - { - if (qs.isMemoState(12) && hasQuestItems(player, PRACTICE_ELROKIAN_TRAP)) - { - if ((player.getLevel() >= MIN_LEVEL)) - { - takeItems(player, PRACTICE_ELROKIAN_TRAP, -1); - giveItems(player, ELROKIAN_TRAP, 1); - giveItems(player, TRAP_STONE, 100); - giveAdena(player, 1702800, true); - addExpAndSp(player, 19973970, 4793); - qs.exitQuest(false, true); - htmltext = event; - } - else - { - htmltext = getNoQuestLevelRewardMsg(player); - } - break; - } - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) - { - final QuestState qs = getRandomPartyMemberState(player, -1, 3, npc); - if (qs != null) - { - final ItemChanceHolder item = MOBS_DROP_CHANCES.get(npc.getId()); - if (item.getCount() == qs.getMemoState()) - { - if (qs.isCond(4)) - { - if (giveItemRandomly(qs.getPlayer(), npc, item.getId(), 1, 50, item.getChance(), true)) - { - qs.setCond(5); - } - } - else if (qs.isCond(10)) - { - if (giveItemRandomly(qs.getPlayer(), npc, item.getId(), 1, 10, item.getChance(), true) // - && (getQuestItemsCount(qs.getPlayer(), ORNITHOMINUS_CLAW) >= 10) // - && (getQuestItemsCount(qs.getPlayer(), DEINONYCHUS_BONE) >= 10) // - && (getQuestItemsCount(qs.getPlayer(), PACHYCEPHALOSAURUS_SKIN) >= 10)) - { - qs.setCond(11); - } - } - } - } - return super.onKill(npc, player, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - if (qs == null) - { - return htmltext; - } - - switch (qs.getState()) - { - case State.COMPLETED: - { - if (npc.getId() == MARQUEZ) - { - htmltext = getAlreadyCompletedMsg(player); - } - break; - } - case State.CREATED: - { - if (npc.getId() == MARQUEZ) - { - htmltext = "32113-01.htm"; - } - break; - } - case State.STARTED: - { - switch (npc.getId()) - { - case MARQUEZ: - { - switch (qs.getMemoState()) - { - case 1: - { - htmltext = "32113-07.html"; - break; - } - case 2: - { - htmltext = "32113-08.html"; - break; - } - case 3: - { - htmltext = "32113-09.html"; - break; - } - case 4: - { - if (getQuestItemsCount(player, DIARY_FRAGMENT) < 50) - { - htmltext = "32113-16.html"; - } - else - { - takeItems(player, DIARY_FRAGMENT, -1); - qs.setMemoState(5); - htmltext = "32113-17.html"; - } - break; - } - case 5: - { - htmltext = "32113-26.html"; - break; - } - case 6: - { - htmltext = "32113-27.html"; - break; - } - case 7: - case 8: - { - htmltext = "32113-28.html"; - break; - } - case 9: - { - htmltext = "32113-29.html"; - break; - } - case 10: - case 11: - case 12: - { - htmltext = "32113-30.html"; - break; - } - } - break; - } - case MUSHIKA: - { - if (qs.isMemoState(1)) - { - qs.setCond(2, true); - qs.setMemoState(2); - htmltext = "32114-01.html"; - } - else if ((qs.getMemoState() > 1) && (qs.getMemoState() < 10)) - { - htmltext = "32114-02.html"; - } - else - { - htmltext = "32114-03.html"; - } - break; - } - case ASAMAH: - { - switch (qs.getMemoState()) - { - case 1: - { - htmltext = "32115-01.html"; - break; - } - case 2: - { - htmltext = "32115-02.html"; - break; - } - case 3: - case 4: - case 5: - case 6: - case 7: - case 8: - { - htmltext = "32115-04.html"; - break; - } - case 9: - { - htmltext = "32115-05.html"; - break; - } - case 10: - { - htmltext = "32115-07.html"; - break; - } - case 11: - { - if ((getQuestItemsCount(player, ORNITHOMINUS_CLAW) < 10) || (getQuestItemsCount(player, DEINONYCHUS_BONE) < 10) || (getQuestItemsCount(player, PACHYCEPHALOSAURUS_SKIN) < 10)) - { - htmltext = "32115-10.html"; - } - else - { - qs.setMemoState(12); - qs.setCond(12, true); - giveItems(player, PRACTICE_ELROKIAN_TRAP, 1); - takeItems(player, ORNITHOMINUS_CLAW, -1); - takeItems(player, DEINONYCHUS_BONE, -1); - takeItems(player, PACHYCEPHALOSAURUS_SKIN, -1); - htmltext = "32115-11.html"; - } - break; - } - case 12: - { - htmltext = "32115-12.html"; - break; - } - } - break; - } - case KIRIKACHIN: - { - switch (qs.getMemoState()) - { - case 1: - case 2: - case 3: - case 4: - case 5: - { - htmltext = "32116-01.html"; - break; - } - case 6: - { - if (hasQuestItems(player, EXPEDITION_MEMBERS_LETTER)) - { - qs.setMemoState(7); - qs.setCond(7, true); - takeItems(player, EXPEDITION_MEMBERS_LETTER, -1); - htmltext = "32116-02.html"; - } - break; - } - case 7: - { - htmltext = "32116-05.html"; - break; - } - case 8: - { - htmltext = "32116-06.html"; - break; - } - case 9: - case 10: - case 11: - { - htmltext = "32116-08.html"; - break; - } - case 12: - { - htmltext = "32116-09.html"; - break; - } - } - break; - } - } - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-01.htm deleted file mode 100644 index f7a13cc67b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-01.htm +++ /dev/null @@ -1,6 +0,0 @@ -Marquez:
-Have you heard of the natives of this island, the Elroki tribe? Perhaps you've heard the common drivel about an uncivilized race abandoned by the gods, beset by primitive and ferocious creatures. Hogwash!
-Those rumors are spread by people ignorant of the truth. The Elrokians I know are different than us, but no less intelligent. Their culture is steeped in tradition, in fact.
-And I will never forget the aid they gave me and my expedition.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-01a.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-01a.htm deleted file mode 100644 index 3175f47593..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-01a.htm +++ /dev/null @@ -1,5 +0,0 @@ -Marquez:
-Do not judge the Primeval Isle by only looking at this wharf. It is a dangerous place where primitive dinosaurs hide in the thick jungle, waiting for weak ones like you to wander by unawares! I've seen many like you who came to a bad end here!
-Exploring this island is not something to be done on a whim, mark my words. One day, when you are more experienced, you may be ready to explore its mysteries.
-(Only characters level 75 and above are permitted to take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-02.htm deleted file mode 100644 index 50d4567cb1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-02.htm +++ /dev/null @@ -1,7 +0,0 @@ -Marquez:
-The conflict between Humans and Elrokians began when the explorers built this wharf and maintained a presence here.
-Our two races are divided by differences in culture and language; what seems normal to one is often strange, even offensive, to the other. Despite my efforts to teach both sides to live together in harmony, misunderstandings are common. Blood has been spilled on more than one occasion, and the peace that now exists here is fragile at best.
-The Humans see the Elroki tribe as nothing more than violent savages, while the Elrokians see Humans as invaders. How can either side learn to respect the other?
-I tell you this because you seem to have no prejudice against the Elroki tribe -- will you help me help them?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-03.html deleted file mode 100644 index 2d4e2aad7b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-03.html +++ /dev/null @@ -1,6 +0,0 @@ -Marquez:
-Thank you! Then listen carefully. I have received news of the Elrokian chief, Mushika, the leader of his tribe.
-In his youth, he ventured into the Lost Nest in search of relics that could shed light on his people's history. During that time, I led an expedition to the Lost Nest which nearly met with disaster. Only Mushika's intervention saved us, and he and I became good friends.
-But I recently received a letter from him in which he tells me that he is dying from some disease. The pain must be unbearable, since it seems that his son Asamah had to finish the letter for him.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-04.html deleted file mode 100644 index bc4590f1d7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-04.html +++ /dev/null @@ -1,5 +0,0 @@ -Marquez:
-I don't know... His son Asamah wrote that he thinks he has found a cure, but needs a strong young adventurer to obtain it.
-Were I younger, I would go myself...but I know in my heart that this is a task for another. If I cannot go, though, I will at least send someone worthy of this trust, one who can help me repay the life-debt I owe Mushika.
-Will you go and help? You will find Mushika and his son Asamah in the Elrokian tribal chief barracks located southeast of the Primeval Plains. To get there, though, you will need the help of a native warrior named Orahochin who lives near the foot of the mountain that lies between the southern shore of the Primeval Plains and the Lost Nest. When you get to the Elroki camp, visit Mushika first if possible, but do not forget to speak with Asamah as well. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-05.html deleted file mode 100644 index f7d5284e04..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-05.html +++ /dev/null @@ -1,6 +0,0 @@ -Marquez:
-I have received news of the Elrokian chief, Mushika, the leader of his tribe.
-In his youth, he ventured into the Lost Nest in search of relics that could shed light on his people's history. During that time, I led an expedition to the Lost Nest which nearly met with disaster. Only Mushika's intervention saved us, and he and I became good friends.
-But I recently received a letter from him in which he tells me that he is dying from some disease. The pain must be unbearable, since it seems that his son Asamah had to finish the letter for him.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-06.html deleted file mode 100644 index 80850849af..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-Are you afraid to face the Elroki tribe? My friend, Mushika's life is at stake!
-Every moment of hesitation is another moment lost. I beg you, travel immediately to the Elroki tribal barracks located southeast of the Primeval Plains and there meet Mushika. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-07.html deleted file mode 100644 index e7a8d3ebe3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32113-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Marquez:
-You! Haven't you already left for the Primeval Isle? You haven't been at the wharf, have you? I don't know why you've come back here, but please -- go now! My friend, Mushika, is dying; any delay might be fatal to him.
-I have been visiting the wharf every day in the hope that news will come from the island that he has been cured. Don't disappoint me! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32114-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32114-01.html deleted file mode 100644 index 61b1cc5a1a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32114-01.html +++ /dev/null @@ -1,3 +0,0 @@ -Mushika:
-Invader...(coughing)...invader! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32114-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32114-02.html deleted file mode 100644 index 3f8c87ed4b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32114-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Mushika:
-Uh... Shilen, our mother... Do not abandon your chosen people, the Elroki tribe...
-Elroki! Bestow on us your mighty power...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32114-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32114-03.html deleted file mode 100644 index dd901b7b4f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32114-03.html +++ /dev/null @@ -1,3 +0,0 @@ -Mushika:
-My son...Asamah...(coughing)... Do you not...see...him...there? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32114-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32114-04.html deleted file mode 100644 index b76be6b539..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32114-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Mushika:
-Ma...Marquez! My friend...(coughing)...I'm sorry. Before... your book...is...finished...I, Mushika...must...go to...Shilen's side. Please, call my...son...Asamah...(coughing)... - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-01.html deleted file mode 100644 index 316b27de51..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Asamah:
-It is no easy task for any outsider to come and find the Elroki tribe these days. Personally, I have no quarrel with outsiders, but I can't say that our warriors share that sentiment.
-In any event, you have invaded the chief's barracks, and that is an insult for which they will wish to punish you... perhaps harshly. This is your last chance -- leave here quietly before the guard returns! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-02.html deleted file mode 100644 index dd8da7a861..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-02.html +++ /dev/null @@ -1,6 +0,0 @@ -Asamah:
-Marquez sent you? Thanks be to Shilen! I am Asamah, who asked Marquez to send an adventurer to help us.
-You spoke a little while ago with my father, Chief Mushika. He is only a shadow of his former self, tied to this life only by his will and his warrior pride. He is in such agony of body and spirit that the people are frightened out of their wits!
-We have never seen such an illness and do not know how to cure it. We are powerless even to soothe some of his pain! But with your coming I have hope at last! It is as if Shilen herself has answered my prayers.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-03.html deleted file mode 100644 index 40789e1e5f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-03.html +++ /dev/null @@ -1,6 +0,0 @@ -Asamah:
-Perhaps you should listen to this story to better understand the situation. You have already heard the tale of how my father and Marquez met, haven't you?
-The Lost Nest where they met is a very important place for the Elroki tribe.
-According to legend, it is the place where the goddess of water, Shilen, the mother and founder of this Primeval Island, blessed the Elrokians, transforming them into the bravest warriors the world has ever known.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-04.html deleted file mode 100644 index fcfb0d4eb1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-04.html +++ /dev/null @@ -1,7 +0,0 @@ -Asamah:
-Long, long ago, Shilen placed ancient creatures on the Primeval Isle. While her power kept these dangerous beings known as dinosaurs in check, she also, in her wisdom, allowed our ancestors to govern them.
-If we had more time, I could tell you fantastic tales about the ancient Elrokian warriors, whose courage and skill awed even the mighty-limbed dinosaurs.
-But now, we have fallen so far from those heights that the world refuses to believe we are even descended from that heroic race.
-My father always said that the first and most important duty of the Elrokian chief is to bring forth to our people the lost truth of our heritage, that we are the descendants of the Elrokians and chosen by the goddess herself. He believed we would find that proof in the Lost Nest, deep in the island's wild interior.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-05.html deleted file mode 100644 index 89a89bf8ae..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-05.html +++ /dev/null @@ -1,6 +0,0 @@ -Asamah:
-Yes, or so the shaman Karakawei and I believe. My father is the only Elrokian to have explored the Lost Nest, bringing back the ancient relic. He has truly devoted his entire life to restoring the lost stature of the Elroki tribe.
-Despite his efforts, some malcontents accused him of dwelling on the past while neglecting the present. Now their influence has spread like a grass fire in summer.
-Amidst all this chaos, my father fell ill, and I have searched everywhere for a cure. Eventually, I found references in the ancient tomes about a mysterious medicine capable of healing any illness. It was known to the ancient Elrokians back when they inhabited the Lost Nest.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-06.html deleted file mode 100644 index e59e0debec..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-06.html +++ /dev/null @@ -1,6 +0,0 @@ -Asamah:
-Unfortunately, all I could discover was when the medicine existed. So I asked the shaman Karakawei to summon the spirits of the Elrokians of that time and ask them where the medicine is.
-Karakawei knew the risks, but for my sake he attempted to summon our ancestors' spirits. For many days, his efforts were in vain, but finally he was able to contact a spirit who possessed knowledge of the medicine's whereabouts. Since then we've been anxiously waiting for an adventurer with the courage and skill to recover it for us.
-There is not a moment to spare! Please go straight to Karakawei -- you'll probably find him praying around the barracks. After you've obtained the medicine, please return to me at once. In the meantime, I will attempt to discover the cause of this illness while protecting my father from the riots.
-May Shilen guard your steps! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-07.html deleted file mode 100644 index 173e798b82..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Asamah:
-We cannot waste any more time! Please go straight to Karakawei and ask for his help.
-I suspect that you will likely find him praying near the barracks. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-08.html deleted file mode 100644 index 987e227e61..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-08.html +++ /dev/null @@ -1,4 +0,0 @@ -Asamah:
-You received no help from Karakawei? Or were you simply too frightened to take the medicine?
-Courage! You are under the protection of Shilen and the ancient Elrokians. Simply listen to your instincts and fate will guide your course. Calm your worries and concentrate on finding the medicine, I beg you! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-09.html deleted file mode 100644 index fd4f50a185..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32115-09.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-Is this the mysterious medicine? Blessed are you, Shilen! Thank you, my friend. Now we must wait to see if it is Shilen's will whether my father recovers or perishes.
-Whatever the result, you will be a friend of the Elroki forever, always present in our hearts and welcome at our hearths.
-If my father's health does improve, as I believe it will, I know he will wish to speak with you again. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-01.html deleted file mode 100644 index cf03623a1e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-01.html +++ /dev/null @@ -1,5 +0,0 @@ -Karakawei:
-You, outsider! Are you lost?
-Fate has not decreed that we should meet yet. Hasten back to where you belong; there wise Elrokians will awaken you.
-Be patient and the ancestors will speak to you in time. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-02.html deleted file mode 100644 index c5f01fd19a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Karakawei:
-Friend of the Elroki, be welcome here. You need not tell me who you are or why are you here -- the ancestors surrounding me have already told me that you are the outsider destined by fate to save the Elroki tribe from the evil facing it.
-Outsider, my ancestors wish to convey a message to you through me. Are you ready to hear it?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-03.html deleted file mode 100644 index d93cfeaee9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-03.html +++ /dev/null @@ -1,6 +0,0 @@ -Karakawei:
-Alas, our chief, Mushika, should have never begun the exploration. His arrogance aroused the wrath of our ancestors and brought on his illness. But Shilen has promised that Mushika would not perish, and will soon recover to help save the Elroki tribe. The key to his recovery lies in your willingness, fated outsider, to help our people.
-Wait! One of my departed ancestors wishes to speak with you through me.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-04.html deleted file mode 100644 index d235748373..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-04.html +++ /dev/null @@ -1,5 +0,0 @@ -Karakawei:
-Such disrespect! Do you not know that I am readying myself to enter the sacred space where life and death coexist?
-Though you are the outsider of fate, you must not trifle with these matters. They are beyond your comprehension. Be still and watch!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-05.html deleted file mode 100644 index 6b3ee45a13..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-05.html +++ /dev/null @@ -1,5 +0,0 @@ -Karakawei:
-Lost to my people's memory, unremembered and unknown, I, Elrokian of old, speak with you!
-The wisdom of the ancestors is this: find the egg laid by the Mantarasa dinosaur. The gods have bestowed upon it the gift of healing. To find it, make your mind as light as an eagle's feather and as clean as the morning dew and travel north.
-You will find the Mantarasa Egg on the border between the Primeval Plains and the Lost Nest. Only the Mantarasa Egg can save these poor children of the Elroki. May their former glory be restored to them! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-06.html deleted file mode 100644 index b7ac991db9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-06.html +++ /dev/null @@ -1,3 +0,0 @@ -Karakawei:
-Did you forget where to take the Mantarasa Egg? Shame! The egg was supposed to be used to save the life of Mushika, our sick chief. Take the egg to Asamah, his son, immediately. Make haste! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-07.html deleted file mode 100644 index 1aaea086f7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32117-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Karakawei:
-I am Elroki... Kuk... Karakawei is returning from the spirit world. This Elrokian is telling you one last time...
-Outsider, please find the Mantarasa Egg... on the border of the Primeval Plains and the Lost Nest... Shilen's divine protection be with you always! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32118-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32118-01.html deleted file mode 100644 index 19ba204086..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32118-01.html +++ /dev/null @@ -1,3 +0,0 @@ -Mantarasa Egg:
-Upon closer examination, it appears to be rooted to the ground almost like a large old tree. You think it must be some kind of sentient being, but can only wonder at its abilities right now. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32118-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32118-02.html deleted file mode 100644 index 949396f1a9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32118-02.html +++ /dev/null @@ -1,3 +0,0 @@ -Mantarasa Egg:
-You've finally found the egg! Looking closer, it appears to be only a shell, however. What's happened to whatever was inside? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32118-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32118-03.html deleted file mode 100644 index c9597442e2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32118-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Mantarasa Egg:
-It may be the Mantarasa Egg. Its shell resembles that of a giant tortoise. When you touch it, it feels surprisingly warm.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32118-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32118-04.html deleted file mode 100644 index c56ef7486e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/32118-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Mantarasa Egg:
-You carefully pick up the egg and place it in your bag. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/Q00124_MeetingTheElroki.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/Q00124_MeetingTheElroki.java deleted file mode 100644 index 2156e67fb1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00124_MeetingTheElroki/Q00124_MeetingTheElroki.java +++ /dev/null @@ -1,289 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00124_MeetingTheElroki; - -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * Meeting the Elroki (124) - * @author Adry_85 - */ -public class Q00124_MeetingTheElroki extends Quest -{ - // NPCs - private static final int MARQUEZ = 32113; - private static final int MUSHIKA = 32114; - private static final int ASAMAH = 32115; - private static final int KARAKAWEI = 32117; - private static final int MANTARASA = 32118; - // Item - private static final int MANTARASA_EGG = 8778; - - public Q00124_MeetingTheElroki() - { - super(124); - addStartNpc(MARQUEZ); - addTalkId(MARQUEZ, MUSHIKA, ASAMAH, KARAKAWEI, MANTARASA); - registerQuestItems(MANTARASA_EGG); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return getNoQuestMsg(player); - } - - switch (event) - { - case "32113-03.html": - { - qs.startQuest(); - break; - } - case "32113-04.html": - { - if (qs.isCond(1)) - { - qs.setCond(2, true); - } - break; - } - case "32114-04.html": - { - if (qs.isCond(2)) - { - qs.setCond(3, true); - } - break; - } - case "32115-06.html": - { - if (qs.isCond(3)) - { - qs.setCond(4, true); - } - break; - } - case "32117-05.html": - { - if (qs.isCond(4)) - { - qs.setCond(5, true); - } - break; - } - case "32118-04.html": - { - if (qs.isCond(5)) - { - giveItems(player, MANTARASA_EGG, 1); - qs.setCond(6, true); - } - break; - } - } - return event; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState qs = getQuestState(player, true); - - switch (npc.getId()) - { - case MARQUEZ: - { - switch (qs.getState()) - { - case State.CREATED: - { - htmltext = (player.getLevel() < 75) ? "32113-01a.htm" : "32113-01.htm"; - break; - } - case State.STARTED: - { - switch (qs.getCond()) - { - case 1: - { - htmltext = "32113-05.html"; - break; - } - case 2: - { - htmltext = "32113-06.html"; - break; - } - case 3: - case 4: - case 5: - { - htmltext = "32113-07.html"; - break; - } - } - break; - } - case State.COMPLETED: - { - htmltext = getAlreadyCompletedMsg(player); - break; - } - } - break; - } - case MUSHIKA: - { - if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - { - htmltext = "32114-01.html"; - break; - } - case 2: - { - htmltext = "32114-02.html"; - break; - } - default: - { - htmltext = "32114-03.html"; - break; - } - } - break; - } - break; - } - case ASAMAH: - { - if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - case 2: - { - htmltext = "32115-01.html"; - break; - } - case 3: - { - htmltext = "32115-02.html"; - break; - } - case 4: - { - htmltext = "32115-07.html"; - break; - } - case 5: - { - htmltext = "32115-08.html"; - break; - } - case 6: - { - if (hasQuestItems(player, MANTARASA_EGG)) - { - htmltext = "32115-09.html"; - giveAdena(player, 100013, true); - addExpAndSp(player, 301922, 30294); - qs.exitQuest(false, true); - } - break; - } - } - } - break; - } - case KARAKAWEI: - { - if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - case 2: - case 3: - { - htmltext = "32117-01.html"; - break; - } - case 4: - { - htmltext = "32117-02.html"; - break; - } - case 5: - { - htmltext = "32117-07.html"; - break; - } - case 6: - { - htmltext = "32117-06.html"; - break; - } - } - } - break; - } - case MANTARASA: - { - if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - case 2: - case 3: - case 4: - { - htmltext = "32118-01.html"; - break; - } - case 5: - { - htmltext = "32118-03.html"; - break; - } - case 6: - { - htmltext = "32118-02.html"; - break; - } - } - } - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-01.htm deleted file mode 100644 index 57055876b1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Mushika:
-Uh... We've never met before...have we? You seem somehow familiar...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-01a.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-01a.htm deleted file mode 100644 index 980cb138f7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-01a.htm +++ /dev/null @@ -1,4 +0,0 @@ -Mushika:
-Ugh, you... Do you look down your nose upon our Elrokian warriors, or are you simply ignorant of the facts? Inexperienced youngsters like you come to a bad end quickly in this place...
-(Only characters level 76 and above are permitted to take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-01b.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-01b.htm deleted file mode 100644 index b963e4c431..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-01b.htm +++ /dev/null @@ -1,4 +0,0 @@ -Mushika:
-Chief Mushika looks in your eyes intently.
-(Only characters above level 76 who have formed a bond with the Elroki tribe are permitted to take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-02.htm deleted file mode 100644 index 440f8c02c1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Mushika:
-Then you are the outsider of fate, the one Marquez sent! Oh yes, I remember now, through the haze of my fever...
-Asamah tells me that you have brought the Mantarasa egg, despite the danger? I am not completely recovered, but I am mending, thanks to you. Like my friend Marquez, you have rare courage! Venturing into the lair of those dinosaurs to save this old man's life...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-03.htm deleted file mode 100644 index 04cb5715ca..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-03.htm +++ /dev/null @@ -1,6 +0,0 @@ -Mushika:
-You are not only brave, but also humble.
-Outsider -- no, now my friend -- I am in your debt. But I must ask you for help in a still more serious matter.
-We Elrokians have a saying:"A brave warrior wears a bell necklace that calls danger." It seems to apply to you as well.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-04.htm deleted file mode 100644 index 0e6772f3d3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-04.htm +++ /dev/null @@ -1,5 +0,0 @@ -Mushika:
-No, no. Forgive the ramblings of an old man.
-It's unfair to ask you to aid our Elroki tribe, given all that you've already done for me, but... Somehow I think you may be able to succeed where we have failed.

- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-05.html deleted file mode 100644 index 6b888ba55a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-05.html +++ /dev/null @@ -1,6 +0,0 @@ -Mushika:
-Thank you for saying that. Asamah and I do not think that everything has been set right simply because I have been cured.
-My illness was no coincidence, my foreign friend. I suspect that it is connected to something in our people's distant past. And in you I see the fated link that will reconnect our past and our future. The moment my eyes beheld you, my spirit told me so.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-06.html deleted file mode 100644 index b42beae8bd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-06.html +++ /dev/null @@ -1,6 +0,0 @@ -Mushika:
-I find it difficult to speak of our troubles in detail using your language. Simply put, the Elrokian race is only a shadow of its former self.
-Now an ancient evil has been reawakened, and unless it is stopped we Elrokians will be exterminated entirely. This entire island will revert to the primeval chaos that once ruled here.
-The evil is connected to our old home, the Lost Nest. Do you understand me so far?

- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-07.html deleted file mode 100644 index feff482664..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-07.html +++ /dev/null @@ -1,6 +0,0 @@ -Mushika:
-I have spent my life trying to win back the Lost Nest for my people. Many believe it is a fool's errand, and that I have neglected the present for the sake of the past. But in my heart I know that this is my sacred duty.
-The relative comfort of our life on these Primeval Plains is a sweet poison to my people, sapping our will and causing us to forget our glorious past. We must complete the duty entrusted to us by the goddess; if we fail in this trust, we deserve to be erased from the memory of the world!
-As I see the signs -- secret feuds, mysterious diseases, violent children -- I see our end approaching. And I believe these occurrences are connected to some change in the Lost Nest itself. Have you met the shaman Karakawei?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-08.html deleted file mode 100644 index 58a32e39f1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-08.html +++ /dev/null @@ -1,6 +0,0 @@ -Mushika:
-Very well. Then go to Karakawei and tell him that I sent you. He will tell you in detail what you must do in the Lost Nest.
-Complete the task as Karakawei directs you and then return to me.
-This is all I can tell you -- it is not entirely safe to speak openly of these important matters here.
-Before you leave, take this. There will be a time when it proves useful to you, so please take good care of it. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-09.html deleted file mode 100644 index ebf46a3722..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-09.html +++ /dev/null @@ -1,7 +0,0 @@ -Mushika:
-Thank you for saying that. Asamah and I suspect that my illness is somehow connected to our ancient home, the Lost Nest.
-Nor do we think that our troubles have ended simply because I have been restored to health.
-But in you, I see the fated link that will reconnect my people with our past and our future. The moment my eyes beheld you, my spirit told me that you are the one destined to save the Elroki.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-10.html deleted file mode 100644 index 95c2282866..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-10.html +++ /dev/null @@ -1,4 +0,0 @@ -Mushika:
-Very well. Then go to Karakawei and tell him that I sent you. He will tell you in detail what you must do in the Lost Nest.
-(Mushika looks around carefully, then takes out an object from his chest.) When the time comes, make good use of it. Complete the task as Karakawei directs you and then return to me with news. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-11.html deleted file mode 100644 index 5dffda3140..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-11.html +++ /dev/null @@ -1,3 +0,0 @@ -Mushika:
-Why haven't you left? If you've already spoken with Karakawei, you should know what you have to do. I can do nothing else for you now, so go. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-12.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-12.html deleted file mode 100644 index de23da597a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32114-12.html +++ /dev/null @@ -1,6 +0,0 @@ -Mushika:
-Shilen, you have answered our heartfelt prayers! Blessed are you!
-Oh, outsider of fate, our tribe already owes you our thanks.
-You have risked your life to bring us this epitaph, and Asamah and I will not rest until we have deciphered it. Thanks to you, I know we will finally prove to our Elrokian brothers and sisters that we are the descendants of the same glorious race who once governed the dinosaurs of the Lost Nest.
-Asamah, Karakawei and I have pledged a blood-oath that we will never cease our efforts until we Elrokians return to the Lost Nest and are reborn as the great Elroki tribe we once were. As leader of the Elroki tribe, I thank you for all your efforts on our behalf. I am sorry we have no wealth with which to thank you, but I will shortly display my gratitude as best I can. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-01.html deleted file mode 100644 index 9fd64922c8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Karakawei:
-How dare you interrupt my prayers to Shilen? Disrespectful outsider!
-Wait, are you not the outsider who saved the life of Mushika, our chief? He has been searching for you -- why do you wander here instead of meeting him? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-02.html deleted file mode 100644 index 97b85e5b0b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Karakawei:
-Are you not the outsider who went to search for the Mantarasa Egg? Why have you come here?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-03.html deleted file mode 100644 index e42a181d63..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-03.html +++ /dev/null @@ -1,6 +0,0 @@ -Karakawei:
-It seems Mushika has already decided.
-Outsider, I know that Mushika has asked you to go to the Lost Nest. But did he tell you of the place itself, of his purpose in sending you there?
-In the Elrokian tongue, the Lost Nest is called Wallamai.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-04.html deleted file mode 100644 index f00c0ff181..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-04.html +++ /dev/null @@ -1,5 +0,0 @@ -Karakawei:
-Wallamai means a bowl filled with blood. Once the Lost Nest was a sacred place for the Elroki. Young warriors proved themselves by traveling there and completing a ceremonial rite-of-passage. But then the dinosaurs of the Lost Nest became so vicious that few of our young men returned, and those who did were half-past dead with the fear of what they had seen. In our day, only one warrior has successfully penetrated the Lost Nest and returned: Mushika. He brought out a metal fragment that he claimed was a sacred relic of our ancient past.
-But he was the last Elrokian to enter the Lost Nest, and it cost him dearly. I did not expect that the chief would entrust our fate to an outsider like yourself, but perhaps he sees more than I do of this matter. So, outsider of fate, are you ready to leave for our Wallamai?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-05.html deleted file mode 100644 index b93a05b9a5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Karakawei:
-Very well. Mushika wishes you to obtain a record of our ancestors that legend says is hidden in the Lost Nest. Specifically, it is a memorial tower erected by Shilen to commemorate our honorable dead Elrokian warriors.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-06.html deleted file mode 100644 index b75bbed7a8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-06.html +++ /dev/null @@ -1,5 +0,0 @@ -Karakawei:
-In that bygone age, Shilen was the sacred goddess of water, and she was like a mother to all the creatures of this island.
-Legend says that Shilen imbued a stone pillar with the magical ability to record and remember every single detail of the Elroki tribe.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-07.html deleted file mode 100644 index 2d128e7f7a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Karakawei:
-Mushika suspects that the last of the ancient Elrokian warriors, whose truth has been hidden under the veil of years, the ancient relic he himself once brought out of the Lost Nest, and the cause of his present illness are all related. But none know how this could be, which is why we need the wisdom of that magic stone pillar, whom legend says observes and remembers all that occurs on this island. Mushika especially wished to discover the identity of the relic and its purpose. Both he and I agree that it is our best -- our only -- clue to these bizarre happenings.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-08.html deleted file mode 100644 index 5d4d2de032..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-08.html +++ /dev/null @@ -1,6 +0,0 @@ -Karakawei:
-Alas, no one knows for certain if it even still exists. But through my sorcery, I can summon the spirits of my ancestors and ask for their guidance.
-The ritual will require special materials that I do not have, however.
-I will especially need Ornithomimus' claws and Deinonychus' bone fragments to perform the ritual. Can you obtain those materials for me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-09.html deleted file mode 100644 index b30e726adb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-09.html +++ /dev/null @@ -1,4 +0,0 @@ -Karakawei:
-I know very well where the dinosaurs live. If you leave this place with Kariachin's help and go up north, you will find a cave linked to an area of the Lost Nest.
-Enter it and you will find the dinosaurs easily. Once among them, hunt Ornithomimus and Deinonychus and gather their claws and bone fragments for the ritual. Once you have obtained more than two of each of them, return here. In the meantime, I will prepare another part of the ritual. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-10.html deleted file mode 100644 index 2a63fe4633..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-10.html +++ /dev/null @@ -1,4 +0,0 @@ -Karakawei:
-Haven't you collected the materials for the ritual yet? We cannot begin until I have the claws and bone fragments necessary to summon the spirits of my ancestors.
-Go to the Lost Nest and hunt Ornithomimus and Deinonychus. Collect their claws and bone fragments; you must obtain more than two each in order for me to proceed with the ritual. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-11.html deleted file mode 100644 index a70dba180e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-11.html +++ /dev/null @@ -1,5 +0,0 @@ -Karakawei:
-Excellent! These are claws and bone fragments I need for the ritual! I know that the dinosaurs must have fought fiercely, but I see that you were able to procure everything we need. Well done!
-Now that we have all the materials, we will proceed with the ritual.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-12.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-12.html deleted file mode 100644 index 55d076b38e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-12.html +++ /dev/null @@ -1,4 +0,0 @@ -Karakawei:
-(Karakawei begins chanting in a low voice. Suddenly, his body becomes rigid and unmoving, like a stone statue. Has his spirit left his body to communicate with his ancestors?)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-13.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-13.html deleted file mode 100644 index 5768f47344..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-13.html +++ /dev/null @@ -1,5 +0,0 @@ -Karakawei:
-Phew... Our great ancestors have shared their wisdom with me, their unworthy descendant. As a shaman of the Elroki people, I now pass this wisdom to you, the outsider of fate.
-Are you ready to hear the wisdom of the Elroki?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-14.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-14.html deleted file mode 100644 index 98aefd316e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-14.html +++ /dev/null @@ -1,4 +0,0 @@ -Karakawei:
-The ancestors say that the legendary stone monument really does exist. It is a sacred child of Shilen, given life through her powerful water magic. But now it sleeps a slumber deeper than death, and there is only one thing that can awake it: the very word that Shilen first spoke to it at its creation.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-15.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-15.html deleted file mode 100644 index 6438fc7271..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-15.html +++ /dev/null @@ -1,5 +0,0 @@ -Karakawei:
-The ancestors have told me that the word is tepu. And they have also revealed that the monument stands beneath a tree at the end of the northeast part of the Lost Nest.
-This was all I heard before my strength was exhausted and my spirit fled back to my body.
-But I fear that you will face obstacles on this journey that I cannot foresee. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-16.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-16.html deleted file mode 100644 index a50a005291..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-16.html +++ /dev/null @@ -1,4 +0,0 @@ -Karakawei:
-The word that will awake the monument is tepu. The monument itself stands beneath a tree at the end of the northeast part of the Lost Nest.
-But take care! I fear that you will face obstacles on this journey that I cannot foresee. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-17.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-17.html deleted file mode 100644 index 4718e88819..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-17.html +++ /dev/null @@ -1,4 +0,0 @@ -Karakawei:
-Have you already returned from discovering the stone monument and learning the secret of the ancient relic? No? Oh, outsider, you can lie to Karakawei, but you cannot cheat our ancestors or escape the destiny that Shilen has decreed for you.
-Choose now! Will you return to the Lost Nest and finish this task, or do you plan to simply wander around like a drunken fool? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-18.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-18.html deleted file mode 100644 index a5b00d0e39..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32117-18.html +++ /dev/null @@ -1,5 +0,0 @@ -Karakawei:
-Ah, is this the real epitaph from the pillar of wisdom?
-You, outsider, have done well indeed. Thank you for showing it to me, but Mushika should be the first to see it.
-Go and give it to him. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-01.html deleted file mode 100644 index c7b716461a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-01.html +++ /dev/null @@ -1,3 +0,0 @@ -Ulu Kaimu:
-The Pillar of Wisdom looks like any other monument, but there is a feeling of some kind of hidden power. But no matter how much you stare and prod it, you cannot discover anything peculiar. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-02.html deleted file mode 100644 index 2b76134a23..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Ulu Kaimu:
-(Staring closely at the Pillar of Wisdom, the delicate letters on its face seem to move rhythmically. Given its location, this must be the stone monument Karakawei told you about...)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-03.html deleted file mode 100644 index 460fb86c6a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-03.html +++ /dev/null @@ -1,13 +0,0 @@ -Ulu Kaimu:
-Try to enter the first letter of the ancient word.
-p    -w    -o
-n    -t    -a
-u    -e    -g
-h - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-04.html deleted file mode 100644 index d4bbf12904..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-04.html +++ /dev/null @@ -1,13 +0,0 @@ -Ulu Kaimu:
-Try to enter the second letter of the ancient word.
-p    -w    -o
-n    -t    -a
-u    -e    -g
-h - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-05.html deleted file mode 100644 index dbe1378ce8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-05.html +++ /dev/null @@ -1,13 +0,0 @@ -Ulu Kaimu:
-Try to enter the third letter of the ancient word.
-p    -w    -o
-n    -t    -a
-u    -e    -g
-h - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-06.html deleted file mode 100644 index 113badc2cc..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-06.html +++ /dev/null @@ -1,13 +0,0 @@ -Ulu Kaimu:
-Try to enter the fourth letter of the ancient word.
-p    -w    -o
-n    -t    -a
-u    -e    -g
-h - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-07.html deleted file mode 100644 index 5ea6f9211a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Ulu Kaimu:
-You have failed to communicate with Ulu Kaimu.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-08.html deleted file mode 100644 index 16bfead7c8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-08.html +++ /dev/null @@ -1,4 +0,0 @@ -Ulu Kaimu:
-(The delicate letters on the face of the pillar begin organizing themselves into what seem to be sentences.)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-09.html deleted file mode 100644 index 1c06310356..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-09.html +++ /dev/null @@ -1,4 +0,0 @@ -Ulu Kaimu:
-Who...Who has awakened me from this silence?!? You? A small and strange-looking creature has done this? I have never seen such a strange-looking creature... by all that is Shilen...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-10.html deleted file mode 100644 index 1d6349ed9d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-10.html +++ /dev/null @@ -1,5 +0,0 @@ -Ulu Kaimu:
-I am Ulu Kaimu, a Pillar of Wisdom whose name means "eyes watching earth" in the Elrokian tongue. You used Shilen's word to awaken me!
-Now you know how to communicate with me, so tell me: How is it that you came to know that word? If you have awakened me for some mundane thing, you will not survive your blasphemy...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-11.html deleted file mode 100644 index 2a4804fc29..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-11.html +++ /dev/null @@ -1,5 +0,0 @@ -Ulu Kaimu:
-The outsider of fate!
-(The engraved letters on the face of the pillar scatter, then begin to reorganize in a new pattern. You suspect that it is searching for some information regarding the outsider of fate. After several moments, the letters stop moving.)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-12.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-12.html deleted file mode 100644 index ce7ef47d22..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-12.html +++ /dev/null @@ -1,9 +0,0 @@ -Ulu Kaimu:
-I have already discovered why you are here by connecting the threads of events past.
-You need not prove yourself to me.
-That I am awake and communicate with you now is the will of Shilen.
-O fated outsider, what ancient wisdom do you seek?
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-13.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-13.html deleted file mode 100644 index f1a37d0ec2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-13.html +++ /dev/null @@ -1,7 +0,0 @@ -Ulu Kaimu:
-The dinosaurs are primitive creatures born when the circle of the gods was broken in the ancient time. Possessed of the same power as the giants, they were a threat to the other 5 races -- to the gods themselves, in fact.
-The gods wished to protect the other races from these creatures, but hesitated.
-So the water goddess, Shilen took it upon herself to be a mother to these dangerous creatures.
-She made them a comfortable nest on this Primeval Isle. But she was not blind to the danger of their violent natures. Therefore she designated the brave Elroki tribe to be the guardians of this island and preserve order here.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-14.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-14.html deleted file mode 100644 index f1093380c3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-14.html +++ /dev/null @@ -1,6 +0,0 @@ -Ulu Kaimu:
-That is related to the reason why the order of the Lost Nest was threatened. Shilen ordered the Elroki tribe to move the dinosaurs to a more remote place.
-But during that journey, some of the dinosaurs disobeyed Shilen's commands and attempted to flee. The brave Elrokian warriors defeated them at great cost to their tribe -- and then only with the help of Shilen herself.
-The order Shilen had imposed was thrown out of balance, and the seals of gods created to control those violent dinosaurs were damaged. For you see, Shilen had bestowed the power to seal to stone pillars like us in order to curb her violent children.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-15.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-15.html deleted file mode 100644 index 21b4d1c787..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-15.html +++ /dev/null @@ -1,6 +0,0 @@ -Ulu Kaimu:
-That's right. In her wisdom, Shilen fashioned several stone pillars in order to record the island's history in the hopes that order could again be restored.
-But when Shilen was transformed into the goddess of destruction and the Elroki tribe was driven out to the Primeval Plains by the dinosaurs, our focus shifted to serving as guardians.
-It fell to us to try to control the rampages of the dinosaurs; communication with the outside world was lost and most of the Elroki have long since forgotten us.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-16.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-16.html deleted file mode 100644 index d2e4f6cb23..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-16.html +++ /dev/null @@ -1,9 +0,0 @@ -Ulu Kaimu:
-(Show the item to Ulu Kaimu).
-Hmmm... This recalls memories of....
-The blessing of water...my mother Shilen... I also remember Shilen's wisdom -- and her concern about the dinosaurs.
-But I don't think my memories are the wisdom you seek.
-Go to my other brother Kaimus and show them the item and receive their wisdom...
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-17.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-17.html deleted file mode 100644 index e31761a16f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-17.html +++ /dev/null @@ -1,7 +0,0 @@ -Ulu Kaimu:
-Shilen made several brothers like me in order that the history of the island might be recorded from many different angles. She created us in groups and granted us the power to communicate among ourselves, that we might share our wisdom with each other.
-But because Shilen was concerned that Kaimus might abuse the wisdom she gave us, she alone knows how many stone pillars have life.
-Among them, I can communicate only with one brother Kaimu. I do not know if he possesses the wisdom that you seek.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-18.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-18.html deleted file mode 100644 index 8ff117b568..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-18.html +++ /dev/null @@ -1,4 +0,0 @@ -Ulu Kaimu:
-My brother Balu Kaimu stands under a tree near the road if you travel south from here. Communicate with him in the same way you have with me.
-Awaken him with the word toon, which Shilen first said to him when she gave him life. He will share his wisdom with you. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-19.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-19.html deleted file mode 100644 index 00743a3b57..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32119-19.html +++ /dev/null @@ -1,3 +0,0 @@ -Ulu Kaimu:
-You are the outsider whom fate decreed would awake me with the words of my mother, Shilen. I cannot communicate with you now, so pass me by and return to your path. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-01.html deleted file mode 100644 index 2b7ea4307d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Balu Kaimu:
-The ancient stone pillar does not seem particularly unique, but you sense something secret and powerful in it. It almost seems to be waiting for something...or someone. Perhaps it is one of the pillars created by Shilen...
-Since you don't know how to communicate with the pillar, perhaps it would be better to return after learning how to do so. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-02.html deleted file mode 100644 index c53599337b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Balu Kaimu:
-(Staring closely at the Pillar of Wisdom, the delicate letters on its face seem to move rhythmically. Given its location, this must be Balu Kaimu....)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-03.html deleted file mode 100644 index 566f8f6554..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-03.html +++ /dev/null @@ -1,13 +0,0 @@ -Balu Kaimu:
-Try to enter the first letter of the ancient word.
-    -    - -    -    - -    -    - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-04.html deleted file mode 100644 index 436ec6b26c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-04.html +++ /dev/null @@ -1,13 +0,0 @@ -Balu Kaimu:
-Try to enter the second letter of the ancient word.
-    -    - -    -    - -    -    - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-05.html deleted file mode 100644 index d94401f4e7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-05.html +++ /dev/null @@ -1,13 +0,0 @@ -Balu Kaimu:
-Try to enter the third letter of the ancient word.
-    -    - -    -    - -    -    - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-06.html deleted file mode 100644 index 646d2e6191..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-06.html +++ /dev/null @@ -1,13 +0,0 @@ -Balu Kaimu:
-Try to enter the fourth letter of the ancient word.
-    -    - -    -    - -    -    - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-07.html deleted file mode 100644 index 64eba8e1e3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Balu Kaimu:
-You have failed to communicate with Balu Kaimu.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-08.html deleted file mode 100644 index 2222faec28..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-08.html +++ /dev/null @@ -1,4 +0,0 @@ -Balu Kaimu:
-(The delicate letters on the face of the pillar begin organizing themselves into what seem to be sentences.)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-09.html deleted file mode 100644 index f70fc15f8e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-09.html +++ /dev/null @@ -1,4 +0,0 @@ -Balu Kaimu:
-Who...Who has awakened me from this silence you small and strange-looking creature has done it I have never seen such a strange-looking creature since Shilen gave me life...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-10.html deleted file mode 100644 index c2eca1e69c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-10.html +++ /dev/null @@ -1,5 +0,0 @@ -Balu Kaimu:
-I am Balu Kaimu, a Pillar of Wisdom whose name means "eyes watching sea" in the Elrokian tongue. You used Shilen's word to awaken me!
-Now you know how to communicate with me, so tell me: How is it that you came to know that word? It evoked a sacred oath between my mother Shilen and the ancient Elrokian warriors...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-11.html deleted file mode 100644 index e2df837aa5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-11.html +++ /dev/null @@ -1,5 +0,0 @@ -Balu Kaimu:
-The...outsider...of...fate!
-(The engraved letters on the face of the pillar scatter, then begin to form a new pattern. When the reorganization is over, the letters stop moving.)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-12.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-12.html deleted file mode 100644 index caad78e156..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-12.html +++ /dev/null @@ -1,7 +0,0 @@ -Balu Kaimu:
-I am mentally connected with my brother, Ulu Kaimu, whom you also awakened with Shilen's word. I have shared information concerning you with him, so you will not need to prove yourself to him. In fact, the entire flow of history, from the creation of the Lost Nest until the present, made our meeting here and now inevitable.
-It is my mother Shilen's will that I communicate with you. Outsider, tell me: what wisdom do you seek from Balu Kaimu?
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-13.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-13.html deleted file mode 100644 index 88133205fc..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-13.html +++ /dev/null @@ -1,6 +0,0 @@ -Balu Kaimu:
-Long, long ago, when all the dinosaurs had finished their migration to the Lost Nest under the supervision of the Elkrokhian warriors, Elkrokhian civilization was at its peak.
-The seal stones set in place by my mother Shilen and the statues that reflected her beauty were arranged in perfect harmony. The island was fertile and peaceful.
-Shilen even enlisted the help of the other gods to make this place a a true paradise. Dinosaurs and Elrokians coexisted in peace and prosperity in those days.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-14.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-14.html deleted file mode 100644 index 348059b12b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-14.html +++ /dev/null @@ -1,6 +0,0 @@ -Balu Kaimu:
-The end of paradise was heralded by the sharp claws of Sailren the dinosaur. Violent and vicious, Sailren almost seemed clothed in flame. Not even the greatest Elrokian warrior could tame it.
-Finally, Shilen ordered Sailren isolated on a remote part of the island, far from civilization. Many Elrokian warriors perished in the capture of that terrible creature.
-Only Shilen's help made it possible, but from that day on, the balance of the island was lost. In the years that followed, most of the seal stones -- even the fabric of civilization itself -- were destroyed by dinosaurs that had become impossible to control.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-15.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-15.html deleted file mode 100644 index 91db3937d4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-15.html +++ /dev/null @@ -1,8 +0,0 @@ -Balu Kaimu:
-(Present the item to Balu Kaimu.)
-Hmm... It seems familiar to me, conjuring memories long buried.
-I remember Elrokian warriors in their shining silver armor striking their fierce dinosaur foes with weapons forged by the gods themselves! But I don't think this is the wisdom you seek.
-Perhaps you should go to another Kaimu and ask its wisdom on the matter...
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-16.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-16.html deleted file mode 100644 index d7e2867d63..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-16.html +++ /dev/null @@ -1,6 +0,0 @@ -Balu Kaimu:
-That is correct. Just as I can communicate with Ulu Kaimu, I can communicate with my other brothers as well. But Chuta Kaimu cannot communicate with Ulu Kaimu. I can communicate with both, but I cannot channel all their wisdom.
-We Kaimus share our wisdom through a complex process. For so it is ordained by my mother, Shilen, that we cannot monopolize our wisdom.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-17.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-17.html deleted file mode 100644 index 1c573d488d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-17.html +++ /dev/null @@ -1,4 +0,0 @@ -Balu Kaimu:
-To meet my brother, Chuta Kaimu, start here and travel southwest. You will find him where the road ends.
-To wake him from his slumber, speak only the word wagu, the same word that my mother Shilen spoke when she gave him life. Possibly he will share his wisdom with you. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-18.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-18.html deleted file mode 100644 index 47c2f667f2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32120-18.html +++ /dev/null @@ -1,3 +0,0 @@ -Balu Kaimu:
-You are the outsider whom fate decreed would awake me with the words of my mother, Shilen. I cannot communicate with you now, so pass me by and return to your path. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-01.html deleted file mode 100644 index eb832fd45b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Chuta Kaimu:
-The Pillar of Wisdom looks like any other monument, but there is a feeling of some kind of hidden power. Perhaps it is one of the pillars created by Shilen...
-Since you don't know how to communicate with the pillar, perhaps it would be better to return after learning how to do so. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-02.html deleted file mode 100644 index f1caf5f3e3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Chuta Kaimu:
-(Staring closely at the Pillar of Wisdom, the delicate letters on its face seem to move rhythmically. Given its location, this must be Chuta Kaimu....)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-03.html deleted file mode 100644 index 0a88acd3e1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-03.html +++ /dev/null @@ -1,13 +0,0 @@ -Chuta Kaimu:
-Try to enter the first letter of the ancient word.
-    -    - -    -    - -    -    - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-04.html deleted file mode 100644 index d0c7529085..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-04.html +++ /dev/null @@ -1,13 +0,0 @@ -Chuta Kaimu:
-Try to enter the second letter of the ancient word.
-    -    - -    -    - -    -    - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-05.html deleted file mode 100644 index 6dc2776036..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-05.html +++ /dev/null @@ -1,13 +0,0 @@ -Chuta Kaimu:
-Try to enter the third letter of the ancient word.
-    -    - -    -    - -    -    - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-06.html deleted file mode 100644 index 62cc05023d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-06.html +++ /dev/null @@ -1,13 +0,0 @@ -Chuta Kaimu:
-Try to enter the fourth letter of the ancient word.
-    -    - -    -    - -    -    - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-07.html deleted file mode 100644 index 337a98ee7c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Chuta Kaimu:
-You have failed to communicate with Chuta Kaimu.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-08.html deleted file mode 100644 index a4fd5c5e0a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-08.html +++ /dev/null @@ -1,4 +0,0 @@ -Chuta Kaimu:
-(The delicate letters on the face of the pillar begin organizing themselves into what seem to be sentences.)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-09.html deleted file mode 100644 index bec906fd4a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-09.html +++ /dev/null @@ -1,4 +0,0 @@ -Chuta Kaimu:
-Whoo...Who has awakened me from this silence you small and strange-looking creature has done it I have never seen such a strange-looking creature since Shilen gave me life...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-10.html deleted file mode 100644 index 8b3b6aa030..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-10.html +++ /dev/null @@ -1,5 +0,0 @@ -Chuta Kaimu:
-I am Chuta Kaimu, a Pillar of Wisdom whose name means "eyes watching heaven" in the Elrokian tongue. You used Shilen's word to awaken me!
-Now you know how to communicate with me, so tell me: How is it that you came to know that word? It evoked a sacred oath between my mother Shilen and the ancient Elrokian warriors...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-11.html deleted file mode 100644 index 34979b110f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-11.html +++ /dev/null @@ -1,5 +0,0 @@ -Chuta Kaimu:
-The outsider of fate!
-(The engraved letters on Chuta Kaimu's monument scatter, then begin to form a new pattern. You suspect that it may be searching for information regarding the outsider of fate. Finally the letters stop moving, having reassembled themselves into a new pattern.)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-12.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-12.html deleted file mode 100644 index ada3b4bfea..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-12.html +++ /dev/null @@ -1,7 +0,0 @@ -Chuta Kaimu:
-Both the wisdom I possess and that of my brother Balu Kaimu confirms that you are whom you say you are. It was fated that we should meet.
-Outsider of fate, what wisdom do you seek from me? To repay you for awakening me from ages of silent slumber, ask me anything you wish to know.
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-13.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-13.html deleted file mode 100644 index 7d91a6d1b6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-13.html +++ /dev/null @@ -1,7 +0,0 @@ -Chuta Kaimu:
-(Show the item to Chuta Kaimu.)
-This is...
-Long years have changed its shape and appearance, making recognition difficult. Wait while I access more stored wisdom regarding it.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-14.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-14.html deleted file mode 100644 index 6d65c0b26f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-14.html +++ /dev/null @@ -1,6 +0,0 @@ -Chuta Kaimu:
-It is not true that Shilen abandoned this island. The truth is that she was stripped of her right to govern after she was seduced by her father, Gran Kain. Although the crime was his, it was Shilen who was punished, and it was the Lost Nest that suffered most.
-History scorns Shilen for this act, judging her as willful, cold-hearted and selfish. But this island's creatures know the truth.
-Far from cold-hearted, Shilen loved even the primitive creatures that the other gods had forsaken. As their mother-goddess, she fretted about their safety and the future of this island until the moment her position was usurped.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-15.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-15.html deleted file mode 100644 index 3286757410..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-15.html +++ /dev/null @@ -1,7 +0,0 @@ -Chuta Kaimu:
-With the Lost Nest no longer under Shilen's rule, the goddess was unable to continue to protect the Elroki tribe, and much of the Elrokians' power derived from her mighty magic was lost.
-Meanwhile, freed from Elrokian control, the dinosaurs roamed unfettered throughout the land, wreaking havoc wherever they went.
-The Elroki tribe was forced to flee to the Primeval Plains, where they settled and became a mere shadow of their former selves. Gone were the mighty Elrokian warriors, replaced by timid villagers and short-sighted leaders. Eventually, their descendants even forgot their true heritage and their true home.
-But in you I see the spirit of a true Elrokian warrior of old! Fate has decreed that you should be the one to help save their race and restore them to their ancient glory.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-16.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-16.html deleted file mode 100644 index c060ced968..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-16.html +++ /dev/null @@ -1,5 +0,0 @@ -Chuta Kaimu:
-The pride of the ancient Elrokian warriors -- in a sense, their other self, proof of Mother Shilen's blessing and faithfulness. Ah, this is! This must be a fragment of the weapon the Elrokian warriors once wielded.
-May I see it more closely?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-17.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-17.html deleted file mode 100644 index 10b76d8fd9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-17.html +++ /dev/null @@ -1,4 +0,0 @@ -Chuta Kaimu:
-This fragment is surely a remnant of the ax Gazkh, which was once wielded by Elrokian warriors at the peak of the tribe's power. Now I believe that you are truly the outsider of whom the prophecies speak. Blessed be the name of Shilen!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-18.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-18.html deleted file mode 100644 index d6a61d4736..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-18.html +++ /dev/null @@ -1,4 +0,0 @@ -Chuta Kaimu:
-May I see it more closely? (Place the relic near the Pillar.) This is indeed proof that you are the long-awaited outsider fated to save this island. Long ago, Shilen foretold that when the ancient evil of this island woke again from its slumber, fate would send an outsider, armed with Gazkh, to save the Elrokian people and restore them to their rightful home.
-Shilen instructed the we Kaimus share with him the wisdom he needs. You are the outsider whom fate has chosen! I now obey my mother Shilen's command -- here is written wisdom concerning Gazkh. Return to the Elrokian village and give this to its leader. He too has an important role to play in averting this coming doom and will aid you in your quest. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-19.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-19.html deleted file mode 100644 index 9407bc5c61..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-19.html +++ /dev/null @@ -1,4 +0,0 @@ -Chuta Kaimu:
-Your identity is confirmed! I sense a signal from my brother Balu Kaimu, who has also been awakened from his long slumber. He shares wisdom with me that confirms you are indeed the outsider fated to save this island.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-20.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-20.html deleted file mode 100644 index a74e5cf3e0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-20.html +++ /dev/null @@ -1,4 +0,0 @@ -Chuta Kaimu:
-The item you have brought here is surely a fragment of the weapon wielded by ancient Elrokian warriors to subjugate and control the vicious dinosaurs of the island. Blessed by Shilen herself, it was a powerful force for order in their hands.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-21.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-21.html deleted file mode 100644 index 5ff345722a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/32121-21.html +++ /dev/null @@ -1,3 +0,0 @@ -Chuta Kaimu:
-Take this written wisdom to the leader of the Elroki tribe. He too has an important role to play in averting this coming doom and will aid you in your quest. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/Q00125_TheNameOfEvil1.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/Q00125_TheNameOfEvil1.java deleted file mode 100644 index f677d4282f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00125_TheNameOfEvil1/Q00125_TheNameOfEvil1.java +++ /dev/null @@ -1,597 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00125_TheNameOfEvil1; - -import java.util.HashMap; -import java.util.Map; - -import com.l2jmobius.Config; -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; -import com.l2jmobius.gameserver.network.serverpackets.MagicSkillUse; - -import quests.Q00124_MeetingTheElroki.Q00124_MeetingTheElroki; - -/** - * The Name of Evil - 1 (125) - * @author Adry_85 - */ -public class Q00125_TheNameOfEvil1 extends Quest -{ - // NPCs - private static final int MUSHIKA = 32114; - private static final int KARAKAWEI = 32117; - private static final int ULU_KAIMU = 32119; - private static final int BALU_KAIMU = 32120; - private static final int CHUTA_KAIMU = 32121; - // Items - private static final int ORNITHOMIMUS_CLAW = 8779; - private static final int DEINONYCHUS_BONE = 8780; - private static final int EPITAPH_OF_WISDOM = 8781; - private static final int GAZKH_FRAGMENT = 8782; - - private static final Map ORNITHOMIMUS = new HashMap<>(); - private static final Map DEINONYCHUS = new HashMap<>(); - static - { - ORNITHOMIMUS.put(22200, 661); - ORNITHOMIMUS.put(22201, 330); - ORNITHOMIMUS.put(22202, 661); - ORNITHOMIMUS.put(22219, 327); - ORNITHOMIMUS.put(22224, 327); - DEINONYCHUS.put(22203, 651); - DEINONYCHUS.put(22204, 326); - DEINONYCHUS.put(22205, 651); - DEINONYCHUS.put(22220, 319); - DEINONYCHUS.put(22225, 319); - } - - public Q00125_TheNameOfEvil1() - { - super(125); - addStartNpc(MUSHIKA); - addTalkId(MUSHIKA, KARAKAWEI, ULU_KAIMU, BALU_KAIMU, CHUTA_KAIMU); - addKillId(ORNITHOMIMUS.keySet()); - addKillId(DEINONYCHUS.keySet()); - registerQuestItems(ORNITHOMIMUS_CLAW, DEINONYCHUS_BONE, EPITAPH_OF_WISDOM, GAZKH_FRAGMENT); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return getNoQuestMsg(player); - } - - String htmltext = event; - switch (event) - { - case "32114-05.html": - { - qs.startQuest(); - break; - } - case "32114-08.html": - { - if (qs.isCond(1)) - { - giveItems(player, GAZKH_FRAGMENT, 1); - qs.setCond(2, true); - } - break; - } - case "32117-09.html": - { - if (qs.isCond(2)) - { - qs.setCond(3, true); - } - break; - } - case "32117-15.html": - { - if (qs.isCond(4)) - { - qs.setCond(5, true); - } - break; - } - case "T_One": - { - qs.set("T", "1"); - htmltext = "32119-04.html"; - break; - } - case "E_One": - { - qs.set("E", "1"); - htmltext = "32119-05.html"; - break; - } - case "P_One": - { - qs.set("P", "1"); - htmltext = "32119-06.html"; - break; - } - case "U_One": - { - qs.set("U", "1"); - if (qs.isCond(5) && (qs.getInt("T") > 0) && (qs.getInt("E") > 0) && (qs.getInt("P") > 0) && (qs.getInt("U") > 0)) - { - htmltext = "32119-08.html"; - qs.set("Memo", "1"); - } - else - { - htmltext = "32119-07.html"; - } - qs.unset("T"); - qs.unset("E"); - qs.unset("P"); - qs.unset("U"); - break; - } - case "32119-07.html": - { - qs.unset("T"); - qs.unset("E"); - qs.unset("P"); - qs.unset("U"); - break; - } - case "32119-18.html": - { - if (qs.isCond(5)) - { - qs.setCond(6, true); - qs.unset("Memo"); - } - break; - } - case "T_Two": - { - qs.set("T", "1"); - htmltext = "32120-04.html"; - break; - } - case "O_Two": - { - qs.set("O", "1"); - htmltext = "32120-05.html"; - break; - } - case "O2_Two": - { - qs.set("O2", "1"); - htmltext = "32120-06.html"; - break; - } - case "N_Two": - { - qs.set("N", "1"); - if (qs.isCond(6) && (qs.getInt("T") > 0) && (qs.getInt("O") > 0) && (qs.getInt("O2") > 0) && (qs.getInt("N") > 0)) - { - htmltext = "32120-08.html"; - qs.set("Memo", "1"); - } - else - { - htmltext = "32120-07.html"; - } - qs.unset("T"); - qs.unset("O"); - qs.unset("O2"); - qs.unset("N"); - break; - } - case "32120-07.html": - { - qs.unset("T"); - qs.unset("O"); - qs.unset("O2"); - qs.unset("N"); - } - case "32120-17.html": - { - if (qs.isCond(6)) - { - qs.setCond(7, true); - qs.unset("Memo"); - } - break; - } - case "W_Three": - { - qs.set("W", "1"); - htmltext = "32121-04.html"; - break; - } - case "A_Three": - { - qs.set("A", "1"); - htmltext = "32121-05.html"; - break; - } - case "G_Three": - { - qs.set("G", "1"); - htmltext = "32121-06.html"; - break; - } - case "U_Three": - { - qs.set("U", "1"); - if (qs.isCond(7) && (qs.getInt("W") > 0) && (qs.getInt("A") > 0) && (qs.getInt("G") > 0) && (qs.getInt("U") > 0)) - { - htmltext = "32121-08.html"; - qs.set("Memo", "1"); - } - else - { - htmltext = "32121-07.html"; - } - qs.unset("W"); - qs.unset("A"); - qs.unset("G"); - qs.unset("U"); - break; - } - case "32121-07.html": - { - qs.unset("W"); - qs.unset("A"); - qs.unset("G"); - qs.unset("U"); - break; - } - case "32121-11.html": - { - qs.set("Memo", "2"); - break; - } - case "32121-16.html": - { - qs.set("Memo", "3"); - break; - } - case "32121-18.html": - { - if (qs.isCond(7) && hasQuestItems(player, GAZKH_FRAGMENT)) - { - giveItems(player, EPITAPH_OF_WISDOM, 1); - takeItems(player, GAZKH_FRAGMENT, -1); - qs.setCond(8, true); - qs.unset("Memo"); - } - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) - { - final L2PcInstance partyMember = getRandomPartyMember(player, 3); - if (partyMember == null) - { - return null; - } - - final QuestState qs = getQuestState(partyMember, false); - final int npcId = npc.getId(); - if (ORNITHOMIMUS.containsKey(npcId)) - { - if ((getQuestItemsCount(player, ORNITHOMIMUS_CLAW) < 2) && (getRandom(1000) < (ORNITHOMIMUS.get(npcId) * Config.RATE_QUEST_DROP))) - { - giveItems(player, ORNITHOMIMUS_CLAW, 1); - playSound(player, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - } - else if (DEINONYCHUS.containsKey(npcId) && (getQuestItemsCount(player, DEINONYCHUS_BONE) < 2) && (getRandom(1000) < (DEINONYCHUS.get(npcId) * Config.RATE_QUEST_DROP))) - { - giveItems(player, DEINONYCHUS_BONE, 1); - playSound(player, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - - if ((getQuestItemsCount(player, ORNITHOMIMUS_CLAW) == 2) && (getQuestItemsCount(player, DEINONYCHUS_BONE) == 2)) - { - qs.setCond(4, true); - } - return super.onKill(npc, player, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - QuestState qs = getQuestState(player, true); - - switch (npc.getId()) - { - case MUSHIKA: - { - switch (qs.getState()) - { - case State.CREATED: - { - if (player.getLevel() < 76) - { - htmltext = "32114-01a.htm"; - } - else - { - qs = player.getQuestState(Q00124_MeetingTheElroki.class.getSimpleName()); - htmltext = ((qs != null) && qs.isCompleted()) ? "32114-01.htm" : "32114-01b.htm"; - } - break; - } - case State.STARTED: - { - switch (qs.getCond()) - { - case 1: - { - htmltext = "32114-09.html"; - break; - } - case 2: - { - htmltext = "32114-10.html"; - break; - } - case 3: - case 4: - case 5: - case 6: - case 7: - { - htmltext = "32114-11.html"; - break; - } - case 8: - { - if (hasQuestItems(player, EPITAPH_OF_WISDOM)) - { - htmltext = "32114-12.html"; - addExpAndSp(player, 859195, 86603); - qs.exitQuest(false, true); - } - break; - } - } - break; - } - case State.COMPLETED: - { - htmltext = getAlreadyCompletedMsg(player); - break; - } - } - break; - } - case KARAKAWEI: - { - if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - { - htmltext = "32117-01.html"; - break; - } - case 2: - { - htmltext = "32117-02.html"; - break; - } - case 3: - { - htmltext = "32117-10.html"; - break; - } - case 4: - { - if ((getQuestItemsCount(player, ORNITHOMIMUS_CLAW) >= 2) && (getQuestItemsCount(player, DEINONYCHUS_BONE) >= 2)) - { - takeItems(player, ORNITHOMIMUS_CLAW, -1); - takeItems(player, DEINONYCHUS_BONE, -1); - htmltext = "32117-11.html"; - } - break; - } - case 5: - { - htmltext = "32117-16.html"; - break; - } - case 6: - case 7: - { - htmltext = "32117-17.html"; - break; - } - case 8: - { - htmltext = "32117-18.html"; - break; - } - } - } - break; - } - case ULU_KAIMU: - { - if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - case 2: - case 3: - case 4: - { - htmltext = "32119-01.html"; - break; - } - case 5: - { - if (qs.get("Memo") == null) - { - htmltext = "32119-02.html"; - npc.broadcastPacket(new MagicSkillUse(npc, player, 5089, 1, 1000, 0)); - qs.unset("T"); - qs.unset("E"); - qs.unset("P"); - qs.unset("U"); - } - else - { - htmltext = "32119-09.html"; - } - break; - } - case 6: - { - htmltext = "32119-18.html"; - break; - } - default: - { - htmltext = "32119-19.html"; - break; - } - } - } - break; - } - case BALU_KAIMU: - { - if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - case 2: - case 3: - case 4: - case 5: - { - htmltext = "32120-01.html"; - break; - } - case 6: - { - if (qs.get("Memo") == null) - { - htmltext = "32120-02.html"; - npc.broadcastPacket(new MagicSkillUse(npc, player, 5089, 1, 1000, 0)); - qs.unset("T"); - qs.unset("O"); - qs.unset("O2"); - qs.unset("N"); - } - else - { - htmltext = "32120-09.html"; - } - break; - } - case 7: - { - htmltext = "32120-17.html"; - break; - } - default: - { - htmltext = "32119-18.html"; - break; - } - } - } - break; - } - case CHUTA_KAIMU: - { - if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - { - htmltext = "32121-01.html"; - break; - } - case 7: - { - if (qs.get("Memo") == null) - { - htmltext = "32121-02.html"; - npc.broadcastPacket(new MagicSkillUse(npc, player, 5089, 1, 1000, 0)); - qs.unset("W"); - qs.unset("A"); - qs.unset("G"); - qs.unset("U"); - break; - } - - switch (qs.getInt("Memo")) - { - case 1: - { - htmltext = "32121-09.html"; - break; - } - case 2: - { - htmltext = "32121-19.html"; - break; - } - case 3: - { - htmltext = "32121-20.html"; - break; - } - } - break; - } - case 8: - { - htmltext = "32121-21.html"; - break; - } - } - } - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-1.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-1.html deleted file mode 100644 index 260ef51ca6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-1.html +++ /dev/null @@ -1,6 +0,0 @@ -Shilen's Stone Statue:
-I am the seal stone, the gatekeeper set to watch over Sailren.
-I am also an avatar of Shilen, who was the mother of this island and the first daughter of Einhasad and Gran Kain.
-I ask you, you who are imbued with the spirit of an Elrokian warrior, who you are and why you are here.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-1a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-1a.html deleted file mode 100644 index 771093440f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-1a.html +++ /dev/null @@ -1,3 +0,0 @@ -Shilen's Stone Statue:
-The purpose of this stone statue is not fully known, but it appears to be some sort of seal stone that has a powerful control power. Without further information, you must pass it by for now. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2.html deleted file mode 100644 index 649824c8a0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2.html +++ /dev/null @@ -1,6 +0,0 @@ -Shilen's Stone Statue:
-Oh, is that right? I have sensed the energy emmitted by Sailren had become stronger these later days and wondered if this ancient evil was simply waiting for its chance to strike.
-Sadly, the seal stones can no longer completely hold him. I have prayed to Shilen to show me a solution.
-Now, with your arrival here, I think our gracious mother has answered our prayers. It may be possible now to defeat it.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2a.html deleted file mode 100644 index 42eb9de2a8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2a.html +++ /dev/null @@ -1,4 +0,0 @@ -Shilen's Stone Statue:
-Yes, it is true. There will be great danger, but if you face Sailren while wielding Gazkh, you will weaken the creature's power. Then we stone statues may gather all our power and seal him again in his prison. But to wield Gazkh, you must take the Warrior's Oath, which can be made only by an Elrokian who has undergone a difficult rite of passage. The spirit of that warrior's grave gave you his ashes so that you might satisfy the conditions of the oath by giving them to me. In doing so, you will become one with the Elrokian warrior. Are you ready to take the Warrior's Oath?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2b.html deleted file mode 100644 index bdf43acf12..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2b.html +++ /dev/null @@ -1,6 +0,0 @@ -Shilen's Stone Statue:
-The eldest daughter of Einhasad and Gran Kain is inquiring about you.
-You stem from the Lizardman race, but you are now a part of the Elroki tribe that was born from the energy of water and prospered under the protection of the water goddess Shilen. Is this true?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2c.html deleted file mode 100644 index 0ba86f87ef..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2c.html +++ /dev/null @@ -1,5 +0,0 @@ -Shilen's Stone Statue:
-Elrokian warrior! You have proven your courage and loyalty by passing all the trials I gave you. Receive, therefore, the ax created from the sacred water, Gazkh.
-And know that from this time on you are sworn to follow my commands, the chief of which is to fight until your last breath to prevent these vicious dinosaurs from unleashing chaos on the world of men. Use this power wisely and well, or risk my righteous judgment and awful wrath.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2d.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2d.html deleted file mode 100644 index 15417d18ea..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2d.html +++ /dev/null @@ -1,6 +0,0 @@ -Shilen's Stone Statue:
-Fool!
-In the past, Shilen required her Elrokian warriors to take a sacred oath. Only then did she grant them the ability to wield Gazkh. In Shilen's stead, you must swear the oath to me.
-If you refuse, you will never be able to wield Gazkh. Consider carefully! Do you wish to continue?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2e.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2e.html deleted file mode 100644 index 0070839dba..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2e.html +++ /dev/null @@ -1,5 +0,0 @@ -Shilen's Stone Statue:
-Disobey and you will have dishonored yourself, your family and your people before the gods themselves, who will punish you in their anger.
-Chosen Elrokian warrior! Swear this oath before my mother Einhasad and my father Gran Kain, an oath you will keep while there is breath is your body! Swear!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2f.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2f.html deleted file mode 100644 index a8a4e17832..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2f.html +++ /dev/null @@ -1,4 +0,0 @@ -Shilen's Stone Statue:
-Now the spirit of this Elrokian warrior and your body have become one. I bestow upon you the right to wield Gazkh on Shilen's behalf. Swear your loyalty to Shilen!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2g.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2g.html deleted file mode 100644 index 1246b1b217..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2g.html +++ /dev/null @@ -1,4 +0,0 @@ -Shilen's Stone Statue:
-Righteous Elrokian warrior! I accept your oath on behalf of Shilen. You are reborn as a true Elrokian warrior, protected by Shilen and given power over the dinosaurs.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2h.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2h.html deleted file mode 100644 index f87efc1150..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2h.html +++ /dev/null @@ -1,6 +0,0 @@ -Shilen's Stone Statue:
-Ah...
-Actually, I am simply binding you to the oath on Shilen's behalf... She and she alone can give you Gazkh.
-You undoubtedly know that Shilen suffered unspeakable tragedy after the seal of Sailren. The poor goddess was abandoned by her parents and brothers and sisters, shunned and transformed into the goddess of death. The world today has forgotten how wise and powerful Shilen was. Were she still the water goddess, the chaos rampant in the world would be far less than it is.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2i.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2i.html deleted file mode 100644 index c906050d95..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2i.html +++ /dev/null @@ -1,6 +0,0 @@ -Shilen's Stone Statue:
-Do I speak recklessly?
-Shilen cannot bestow Gazkh on you now, and it is impossible to find an intact ax.
-But if you are truly so willing to wield Gazkh and go into Sailren's nest, there should be a way.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2j.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2j.html deleted file mode 100644 index 0af42bd95f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2j.html +++ /dev/null @@ -1,5 +0,0 @@ -Shilen's Stone Statue:
-I cannot give you Gazkh, but if you gather up the fragments of Gazkh and bring them to me, I can reform the axhead and restore the weapon to its former power.
-You must find the fragments; return to the person who gave you this task and ask him for some clue.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2k.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2k.html deleted file mode 100644 index 63d05d839e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2k.html +++ /dev/null @@ -1,4 +0,0 @@ -Shilen's Stone Statue:
-There is one more ritual. Give me the ashes and you will be reborn as a true Elrokian warrior under Shilen's protection.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2l.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2l.html deleted file mode 100644 index de11e8d3b5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-2l.html +++ /dev/null @@ -1,6 +0,0 @@ -Shilen's Stone Statue:
-(You tell him about your experience at the warrior's grave.) Oh, is that right? I have sensed the energy emmitted by Sailren had become stronger these later days and wondered if this ancient evil was simply waiting for its chance to strike.
-Sadly, the seal stones can no longer completely hold him. I have prayed to Shilen to show me a solution.
-Now, with your arrival here, I think our gracious mother has answered our prayers. It may be possible now to defeat it.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-3.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-3.html deleted file mode 100644 index b6217f2607..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-3.html +++ /dev/null @@ -1,5 +0,0 @@ -Shilen's Stone Statue:
-I have allowed the ancient Elrokian warrior's spirit to enter your body. Now you are a master of Gazkh! As long as the Elrokian spirit is within you, the Gazkh will serve you.
-Remember, your loyalty is now to Shilen and Shilen alone!
-In her stead, I command you, faithful warrior, to return to the Elrokian village and find the help you require to restore Gazkh. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-4.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-4.html deleted file mode 100644 index 1d953e8c98..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-4.html +++ /dev/null @@ -1,3 +0,0 @@ -Shilen's Stone Statue:
-Haven't you already taken the Warrior's Oath and become a true Elrokian warrior? If you are here with Gazkh to fight against Sailren, then go back. Though you may have learned to wield Gazkh, you are still unprepared to defeat Sailren in combat. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-5.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-5.html deleted file mode 100644 index b45a52fd10..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32109-5.html +++ /dev/null @@ -1,4 +0,0 @@ -Shilen's Stone Statue:
-There is already a brave Elrokian warrior's spirit within you!
-In Shilen's stead, I now command you, faithful warrior, to search for Gazkh with all your might. Returh to the Elrokian village; someone there will aid you in your search. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-1.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-1.html deleted file mode 100644 index 90892f52df..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-1.html +++ /dev/null @@ -1,5 +0,0 @@ -Mushika:
-Welcome... Are you here because you wish to hear about the fragment of Gazkh?
-You are! Then listen to a tale that makes my heart sing for joy! The only weapon capable of defeating Sailren has been discovered!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2.html deleted file mode 100644 index 65f855baaa..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2.html +++ /dev/null @@ -1,6 +0,0 @@ -Mushika:
-My heart leaps for joy at this unexpected clue! I never expected news of the ancient weapon, Gazkh, from an old document like this. Not even a scholarly tome, at that! But in this ordinary book, "Traces of Living Beings of the Ancient Times," lay hidden the ancient Elrokian password... This discovery will help us reconstruct a long lost part of Elrokian history.
-Most importantly, we now have this vital clue about the whereabouts of the Gazkh fragments. They must be found -- are you willing to help us do so?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2a.html deleted file mode 100644 index 2938f9d66b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2a.html +++ /dev/null @@ -1,6 +0,0 @@ -Mushika:
-You are indeed filled with curiosity! Very well, then. Listen carefully and I will read to you the part in which the password is hidden. The contents of "Traces of Living Beings from Ancient Times" is fairly well known to any scholar of mythology or history.
-"... In the days of old, when the circle of the gods was broken, countless races were spawned from that circle. The greatest of them were the gods themselves; the next greatest were the Giants. And the gods gave the Giants authority to rule over the world."
-All scholars know this story, but in these latter days men wonder what has become of all the creatures brought forth into the world at the breaking of the circle.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2b.html deleted file mode 100644 index f1248c5dbb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2b.html +++ /dev/null @@ -1,6 +0,0 @@ -Mushika:
-Time is now urgent; we do not know when Sailren's violence will begin to spread further. If I interpret this correctly, the fragments of Gazkh are embedded in the bodies of several of the predatory dinosaurs.
-To find out more, you must communicate with Shilen's stone statue, the gatekeeper of Sailren's nest. Go to the statue, tell it the hidden meaning of the password and ask about the location of the predatory dinosaurs.
-Do not be surprised if your news shocks the statue; this is something none of us considered. The statue stands at the southeast end of the Lost Nest. You have been there before, haven't you?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2c.html deleted file mode 100644 index a87273d15c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2c.html +++ /dev/null @@ -1,5 +0,0 @@ -Mushika:
-Although they had subjugated all the races of the world, the Giants seemed uneasy in their rule. Legend has it that they then created a mighty army of Orcs. But no one knows their purpose... There must still have been something or some creatures they considered a threat.
-But what kind of creatures could threaten Giants in the safety of their mountains? More importantly, what became of these mysterious creatures?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2d.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2d.html deleted file mode 100644 index 7d41266e06..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2d.html +++ /dev/null @@ -1,7 +0,0 @@ -Mushika:
-I read this document over and over again, but I never thought the password was hidden inside.
-I didn't know that this book was really a secret document written in ancient secret passwords -- like others, I read it only with scholarly interest.
-But although this seems to be like any other document, through proper decryption we can discover its hidden meaning.
-Legend has it that our ancestors once shared their secret documents in this way, but I've never seen such a thing before.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2e.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2e.html deleted file mode 100644 index 0f12b240b6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-2e.html +++ /dev/null @@ -1,6 +0,0 @@ -Mushika:
-The.fragments.of.Gazkh.are.breathing.in.the.iron.monsters'.body.Go.where.the.brightest.light.shines.upon.and.the.darkest.night.falls.in.search.of.the.fragment.and.the.gate.keeper.who.looks.like.our.god.will.open.the.door.
-That is it. This book is a kind of secret map that indicates where the fragment of Gazkh is. The writer of this book probably created this password hoping that the fragment would be found by the right person.
-The very fact that we have discovered this is proof of Shilen's guiding hand on our actions!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-3.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-3.html deleted file mode 100644 index 61018c5b24..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-3.html +++ /dev/null @@ -1,5 +0,0 @@ -Mushika:
-Ah, my spirit rejoices to hear you say that you will help us! In truth, this will not be an easy task. The fate of the Elroki tribe is in your hands, my friend.
-But fear not! You are the warrior chosen by Shilen for this purpose. Not only will Shilen lead you to Gazkh, she will fight by your side until the final day! She will guard and guide you, just as she did my ancestors.
-Here, take this. It will aid you on your journey. May Shilen be with you. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-4.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-4.html deleted file mode 100644 index 1ccc8c4f04..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32114-4.html +++ /dev/null @@ -1,5 +0,0 @@ -Mushika:
-Ho, you are hot-tempered, I see!
-Patience, my young friend! Everything has its own time and place. I do not know what you were doing before coming to see me, but it is not difficult to tell that you abandoned whatever you were supposed to be doing to come here.
-Am I wrong? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0.htm deleted file mode 100644 index e6592a1d01..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0.htm +++ /dev/null @@ -1,4 +0,0 @@ -Asamah:
-That an outsider like you would come all this way to render aid to our Elkrohki tribe... please know that we are truly grateful. But unfortunately, only the outsider selected by fate itself can help our tribe now.
-(Only characters level 77 and above are permitted to take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0a.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0a.htm deleted file mode 100644 index 8c3ee0f01e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0a.htm +++ /dev/null @@ -1,6 +0,0 @@ -Asamah:
-Welcome, benefactor of the Elkrohki tribe!
-My father and I were just thanking the gods for your arrival. Had you not come when you did, both he and the whole future of the Elroki tribe would have perished.
-We are in your debt. How can we repay you?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0b.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0b.htm deleted file mode 100644 index d9be204e5a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0b.htm +++ /dev/null @@ -1,4 +0,0 @@ -Asamah:
-These few moments may determine the fate of the Elroki tribe itself. Every second is precious!
-Had I more time, I would tell you of the hardships and trials facing us right now. I might even enlist your help! But sadly I cannot spare even the time for that. Farewell! (This quest can only be taken on by characters above level 77 who have completed the "Name of Evil 1" quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0c.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0c.htm deleted file mode 100644 index de3719b32d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0c.htm +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-In particular, the epitaph of wisdom that you brought me is truly a mysterious and valuable item. The letters inside it seem to have a life of their own! They have assembled themselves to tell me of an ancient relic, Gazkh.
-My father, Mushika, the high priest Karakawei and I are all beside ourselves with the excitement of this discovery.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0d.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0d.htm deleted file mode 100644 index c1f2245d13..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-0d.htm +++ /dev/null @@ -1,6 +0,0 @@ -Asamah:
-In fact, we have been able to use this opportunity to make sense of the few fragmented pieces of our history. As a student of that history, it has been very rewarding for me.
-But we have stumbled upon a mystery surrounding the sacred axe, named Gazkh. Sadly, our wisdom and strength are not sufficient to unravel the full mystery by ourselves.
-But our prophecies tell us that an outsider, chosen by fate, can succeed when we are without direction. Please... I ask on behalf of the Elroki people: Will you help us?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1.html deleted file mode 100644 index c6ad75a185..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-Apparently our ancestors wielded a powerful ax called Gazkh. More than just a weapon, it was a sacred relic granted to our tribe by the goddess Shilen herself.
-Gazkh's most important power was the ability to keep the dinosaurs of the Lost Nest sealed within their prison. But somehow the ax's head was shattered, dispersing that power and creating a number of side effects.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1a.html deleted file mode 100644 index 9c99779785..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1a.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-In brief, my father found a fragment of the ax within the Lost Nest. Somehow the fragment injured him, and soon after he succumbed to this mysterious illness.
-I'm sure that you have also heard of the strange occurrences that have been witnessed here of late. I'm almost sure that both they and my father's unnatural illness are somehow connected to the Lost Nest and Gazkh.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1b.html deleted file mode 100644 index c1c5269e47..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1b.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-Let us not risk that my suspicions are clouding your judgment! I will let you draw your own conclusions. This will be an arduous task, but my heart tells me that the best course of action is for you to return to the Pillars of Wisdom, one by one, and search for some clue about the strange phenomena happening on this island.
-Carefully examine each of the Pillars. If you discover any useful information, please return to me.
-Proof of what you find would be even more welcome! I will wait here for you -- may your eyes be sharp and your sword arm strong for the journey! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1c.html deleted file mode 100644 index 02c8affe55..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1c.html +++ /dev/null @@ -1,4 +0,0 @@ -Asamah:
-I suspect that both my father's illness and the strange phenomena we've witnessed on the island are related to the Lost Nest and Gazkh.
-Unfortunately, I don't think the epitaph itself provides us enough information to link all of these events together. I have an idea -- go and examine each of the Pillars of Wisdom. If you discover something of importance, please return here at once. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1d.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1d.html deleted file mode 100644 index 88023c29f5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-1d.html +++ /dev/null @@ -1,4 +0,0 @@ -Asamah:
-The sacred ax known as Gazkh was originally bestowed upon the ancient Elkrokhian warriors by Shilen. It had the power to seal dinosaurs in their prison to preserve the safety of the island. When it was broken, we think there was a backlash of negative energy.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-2.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-2.html deleted file mode 100644 index f6b95f1e79..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-2.html +++ /dev/null @@ -1,4 +0,0 @@ -Asamah:
-Back so soon? Are you sure that you've really visited the Pillars of Wisdom and the Statue of Shilen? I mean no offense, but you seem to lack the confidence of one who has completed this arduous journey.
-If you bypassed one of the 3 Pillars of Wisdom or the Statue of Shilen, please go back and finish your task. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-3.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-3.html deleted file mode 100644 index 383b8a9835..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-3.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-You're here! I've been waiting for you.
-What befell you during your adventure? Did you discover any relics concerning the Elroki tribe?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-3a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-3a.html deleted file mode 100644 index d1aa12ef56..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-3a.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-Amazing! I am bewildered by hearing all that you have endured. Listening to your tale just now, I can't help but wonder if you are the one the prophecies speak of, the one destined to save our Elroki tribe and restore us to glory.
-The Warrior's Oath you invoked is so ancient that we have lost the specific wording... It is clear to me that an ancient Elrokian warrior's spirit is within you. I hear and see the proof of this, but still cannot bring myself to believe it!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4.html deleted file mode 100644 index 2695863656..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-Ah! You completed a great feat, and yet you are so humble!
-I -- no, we -- are truly thankful. The information you discovered will help me uncover vital parts of the lost history of our Elroki tribe.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4a.html deleted file mode 100644 index eef5347676..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4a.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-I have personally studied all we know regarding Gazkh, but all I know is that its fragments disappeared following its destruction during the battle with Sailren.
-You said that you had something else to ask me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4b.html deleted file mode 100644 index ead17833b9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4b.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-Well, as it happens I have gleaned a few insights about that terrible time from some of the documents I have studied and the ancient stories I have heard.
-Do you have a specific reason for asking me this?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4c.html deleted file mode 100644 index ca20296cfd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4c.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-Ah, so you have heard part of the tale, eh? I'm not surprised that you didn't hear more -- many consider it blasphemy, after all.
-Besides, a creature that considers itself an avatar of Shilen would be loathe to reveal the goddess' error, especially to an outsider. You must understand that some other races now fear and despise Shilen as the goddess of death. Even the mention of her name seals many lips.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4d.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4d.html deleted file mode 100644 index 3575406eac..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4d.html +++ /dev/null @@ -1,6 +0,0 @@ -Asamah:
-I see. Then let me tell you who Shilen once was.
-Untold ages ago, the union of the Goddess of Creation, Einhasad, and the God of Destruction, Gran Kain, produced 5 God-Children. Shilen was first-born, and she grew wiser daily, more courageous, more beautiful and more skilled.
-Loved by her subjects, she was the equal of her brothers when it came to commanding an army, an expert in both strategy and tactics.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4e.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4e.html deleted file mode 100644 index 5ca47a872b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4e.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-Einhasad and Gran Kain watched their 5 children grow, assigning each a duty suited to their individual abilities and strengths. Two of the God-Childs gave them worry, though.
-One was Shilen, whose many talents made any single duty seem too small. The other was Eva, whose quiet, passive nature seemed to obscure any talent she might have. Easily swayed by her siblings, she seemed to have no real will of her own.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4f.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4f.html deleted file mode 100644 index 58fe476202..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4f.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-After great deliberation, the two gods made Shilen the goddess of water, a role they considered suitable for her many talents. Eva, however, was only given the task of composing poems and songs to commemorate her siblings' rule.
-As the goddess of water, Shilen showed herself to be wise and far-seeing, which is why the other gods entrusted her with the governing of those powerful primitive creatures. Had it not been for her efforts, those creatures would have long ago escaped this island to wreak havoc on the world.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4g.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4g.html deleted file mode 100644 index 7333a79b2b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4g.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-Shilen commanded my Elkrokhian ancestors to rule over the dinosaurs, using powerful magic to control and restrain them. It was the peak of Shilen's glory, and the world owed her a debt it could never repay.
-But the other gods envied Shilen, and sought a chance to discredit her. At last she was seduced by her father, Gran Kain. Great with child, she was punished by her enraged mother, Einhasad.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4h.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4h.html deleted file mode 100644 index cc3d96c3fa..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4h.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-Einhasad cast her from the continent, installing in her place as the goddess of water the weak and timid Eva. The primitive creatures who called her mother were suddenly abandoned, forever disrupting the balance of this island.
-As a result, we Elrokians were forced to migrate to these Primeval Plains to escape the mindless fury of the dinosaurs.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4i.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4i.html deleted file mode 100644 index 9ee5ba9b76..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4i.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-When Eva became the goddess of water, it was the single most unfortunate thing to befall our tribe up to that time. Shilen's misfortune continued from that day onward, and eventually she became slanderously known as a goddess of evil or a goddess of death. Some historians also began describing her as the avatar of evil.
-But I have heard that other, less-biased historical documents depict Shilen as a victim of Eva's insatiable jealousy. They say that not only did we lose our wise and strong goddess, but that all the suffering and chaos in our world is a reflection of Eva's spiteful heart.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4j.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4j.html deleted file mode 100644 index bd56f95582..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-4j.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-Ha! Well done, indeed! And you are so humble...
-My thanks for your help. I will use what you have just told me to share the knowledge of the lost history of the Elroki tribe.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-5.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-5.html deleted file mode 100644 index 33575df4fd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-5.html +++ /dev/null @@ -1,5 +0,0 @@ -Asamah:
-I actually haven't found anything to indicate where Gazkh is.
-Fortunately, my father, Chief Mushika, has found some clues about Gazkh's whereabouts.
-He told me that he wanted tell you personally upon your return, so go talk to him. Don't waste a minute! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-5a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-5a.html deleted file mode 100644 index e80e58ec88..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32115-5a.html +++ /dev/null @@ -1,4 +0,0 @@ -Asamah:
-My father, Chief Mushika, has found a very important clue about Gazkh.
-Since his discovery, he has been anxiously waiting for you. Go quickly to meet him. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-1.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-1.html deleted file mode 100644 index 840eb3c801..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-1.html +++ /dev/null @@ -1,3 +0,0 @@ -Ulu Kaimu:
-This is the Pillar of Wisdom known as Ulu Kaimu! Communication is not possible at the moment -- something is lacking. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-2.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-2.html deleted file mode 100644 index 41e338a9a7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-2.html +++ /dev/null @@ -1,5 +0,0 @@ -Ulu Kaimu:
-To communicate with Ulu Kaimu, place your hands on the pillar and think about the question you wish to ask.
-As you do so, the ancient letters moving rhythmically on the face of the pillar seem to gather around your hands. You feel a sensation of warmth.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-3.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-3.html deleted file mode 100644 index c3f2ab60e9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-3.html +++ /dev/null @@ -1,4 +0,0 @@ -Ulu Kaimu:
-Try to gain insight about the questions regarding: Gazkh and abnormal phenomenon. (The engraved letters on the Ulu Kaimu stone monument scatter, then realign into a new sequence. They seem to float inside the stone monument.)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-3a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-3a.html deleted file mode 100644 index 70a58812f7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-3a.html +++ /dev/null @@ -1,5 +0,0 @@ -Ulu Kaimu:
-Welcome, o' outsider whose fated coming has been foretold! You, and only you, are granted the privilege of gaining wisdom directly from Balu Kaimu.
-What do you seek?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-3b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-3b.html deleted file mode 100644 index 9bd9ad0fc5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-3b.html +++ /dev/null @@ -1,4 +0,0 @@ -Ulu Kaimu:
-Instead of answering, the stone surface of the pillar seems to shimmer as words appear, forming a phrase that seems almost slightly raised, like a button. Push on it gently.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-3c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-3c.html deleted file mode 100644 index 734cb107ff..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-3c.html +++ /dev/null @@ -1,4 +0,0 @@ -Ulu Kaimu:
-Ulu Kaimu awaits your reaction after it has finished searching for answers regarding Gazkh and abnormal phenomenon.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-4.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-4.html deleted file mode 100644 index 42c5d2a407..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-4.html +++ /dev/null @@ -1,9 +0,0 @@ -Ulu Kaimu:
-You called me a gift of the gods, a blessing to the warrior's hand.
-You charged me to carry out the sacred task at your side.
-Aieee! My shattered and scattered body. Now the entire Lost Nest is my grave.
-My master!
-I still hear the song you sang to me as we rode into battle.
-Why am I imprisoned in this darkness? My lost master...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-4a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-4a.html deleted file mode 100644 index 59bb3781fb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-4a.html +++ /dev/null @@ -1,3 +0,0 @@ -Ulu Kaimu:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-4b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-4b.html deleted file mode 100644 index c8b314df64..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-4b.html +++ /dev/null @@ -1,6 +0,0 @@ -Ulu Kaimu:
-These are all the memories I can find about this question. It is now your decision whether to use this wisdom or not.
-O fated outsider, wisdom is a tool like any other, to be used or discarded at the whim of its handler. Please remember my wisdom...
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-4c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-4c.html deleted file mode 100644 index 67da2e7b5a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-4c.html +++ /dev/null @@ -1,4 +0,0 @@ -Ulu Kaimu:
-You hear a clear, plaintive melody. It sounds like a folk song, or perhaps even some sort of military tune. The melody is easy to remember.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-5.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-5.html deleted file mode 100644 index 8a704720af..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-5.html +++ /dev/null @@ -1,4 +0,0 @@ -Ulu Kaimu:
-If you still have questions, then visit my brother, Balu Kaimu. He may be able to communicate with other pillars and may possess more memories on this subject that I do.
-Travel south along this road and you will find him. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-5a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-5a.html deleted file mode 100644 index e3b7cbbbca..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-5a.html +++ /dev/null @@ -1,5 +0,0 @@ -Ulu Kaimu:
-For more wisdom, visit Balu Kaimu.
-Travel south along this road and you will find him.

- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-5b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-5b.html deleted file mode 100644 index a69aef0b79..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32119-5b.html +++ /dev/null @@ -1,3 +0,0 @@ -Ulu Kaimu:
-Do-Mi-Fa-Sol-Fa! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-1.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-1.html deleted file mode 100644 index 7d522265e4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-1.html +++ /dev/null @@ -1,3 +0,0 @@ -Balu Kaimu:
-This is the Pillar of Wisdom known as Balu Kaimu! Communication is not possible at the moment -- it seems that you didn't take all the steps necessary for communication. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-2.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-2.html deleted file mode 100644 index b553aee63f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-2.html +++ /dev/null @@ -1,5 +0,0 @@ -Balu Kaimu:
-To communicate with Balu Kaimu, place your hands on the pillar and think about the question you wish to ask.
-As you do so, the ancient letters moving rhythmically on the face of the pillar seem to gather around your hands. You feel a sensation of warmth.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-3.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-3.html deleted file mode 100644 index bd8cb173b1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-3.html +++ /dev/null @@ -1,5 +0,0 @@ -Balu Kaimu:
-Welcome, outsider whose fated coming has been foretold! You, and only you, are granted the privilege of gaining wisdom directly from Balu Kaimu.
-What do you seek?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-3a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-3a.html deleted file mode 100644 index a2cdb097b7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-3a.html +++ /dev/null @@ -1,4 +0,0 @@ -Balu Kaimu:
-Try to gain insight about Gazkh and abnormal phenomena. (The engraved letters on the face of the pillar scatter, then realign into a new sequence and seem to float gently within the stone.)
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-3b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-3b.html deleted file mode 100644 index 9d68a8b742..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-3b.html +++ /dev/null @@ -1,4 +0,0 @@ -Balu Kaimu:
-Instead of answering, the stone surface of the pillar seems to shimmer as words appear, forming a phrase that seems almost slightly raised, like button. Push on it gently.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-3c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-3c.html deleted file mode 100644 index 8279a4101f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-3c.html +++ /dev/null @@ -1,4 +0,0 @@ -Balu Kaimu:
-Balu Kaimu awaits your response after completing its search concerning Gazkh and abnormal phenomena.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-4.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-4.html deleted file mode 100644 index 5217e637d7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-4.html +++ /dev/null @@ -1,9 +0,0 @@ -Balu Kaimu:
-Armor yourself in silver armor and grasp Gazkh!
-(Bluish light plays across the head of the ax, clearly outlining both it and the seal emblem.)
-Seal, tell me truly today if our Elrokian warriors will be victorious over the vicious creature, Sailren!
-Mother Shilen!
-Be with us so that we may rightly execute the sacred duty you entrusted to us.
-The dawn of battle already makes the eastern sky blush, and the warriors' voices are raised in song as they prepare to go forth.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-4a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-4a.html deleted file mode 100644 index ff1cc6523d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-4a.html +++ /dev/null @@ -1,3 +0,0 @@ -Balu Kaimu:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-4b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-4b.html deleted file mode 100644 index 680801bc24..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-4b.html +++ /dev/null @@ -1,7 +0,0 @@ -Balu Kaimu:
-From the midst of his storm of memories, Balu Kaimu has found the one that you will need most.
-It comes not from an Elrokian, but is actually a memory of the ax Gazkh about its owner. It seems that Gazkh frequently communicated spiritually with its owner.
-The memory ends with the Warrior's Song, an ancient Elrokian song of battle. The ending is the clearest part of the memory, so the song must have great significance.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-4c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-4c.html deleted file mode 100644 index 1b8b99c987..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-4c.html +++ /dev/null @@ -1,4 +0,0 @@ -Balu Kaimu:
-This melody...so similar to the one I heard before from Ulu Kaimu. It sounds like another verse of the previous melody.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-5.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-5.html deleted file mode 100644 index 7690724463..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-5.html +++ /dev/null @@ -1,5 +0,0 @@ -Balu Kaimu:
-This is all I can remember... The look on your face tells me that this memory was not really the object of your search.
-Perhaps I can help. Go meet my brother, Chuta Kaimu.
-You will find him at the very end of the southwest area. I believe that he will be able to shine the light of wisdom upon you... - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-5a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-5a.html deleted file mode 100644 index 28a32f6ff9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-5a.html +++ /dev/null @@ -1,5 +0,0 @@ -Balu Kaimu:
-You will find Chuta Kaimu at the very end of the southwest area.
-I know my brother will shine the light of wisdom upon you...

- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-5b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-5b.html deleted file mode 100644 index 7eaa06c677..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32120-5b.html +++ /dev/null @@ -1,3 +0,0 @@ -Balu Kaimu:
-Fa-Sol-Ti-Sol-Fa! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-1.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-1.html deleted file mode 100644 index 478d12085d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-1.html +++ /dev/null @@ -1,3 +0,0 @@ -Chuta Kaimu:
-This is the Pillar of Wisdom known as Chuta Kaimu! Communication is not possible at the moment -- something is lacking. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-2.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-2.html deleted file mode 100644 index 34cccb2b02..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-2.html +++ /dev/null @@ -1,5 +0,0 @@ -Chuta Kaimu:
-To communicate with Chuta Kaimu, place your hands on the pillar and think about the question you wish to ask.
-As you do so, the ancient letters moving rhythmically on the face of the pillar seem to gather around your hands. You feel a sensation of warmth.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3.html deleted file mode 100644 index dd0d4f327c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3.html +++ /dev/null @@ -1,5 +0,0 @@ -Chuta Kaimu:
-Welcome, outsider whose fated coming has been foretold! You, and only you, are granted the privilege of gaining wisdom directly from Chuta Kaimu.
-What do you seek?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3a.html deleted file mode 100644 index 6c78ed4482..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3a.html +++ /dev/null @@ -1,4 +0,0 @@ -Chuta Kaimu:
-Instead of answering, the stone surface of the pillar seems to shimmer as words appear, forming a phrase that seems almost slightly raised, like button. Push on it gently.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3b.html deleted file mode 100644 index 71b6279120..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3b.html +++ /dev/null @@ -1,6 +0,0 @@ -Chuta Kaimu:
-The dinosaurs closed ranks and resisted our attack.
-Blood of both men and beast stain the silver armor of the Elrokian warriors.
-But we are Gazkhs! Mother Shilen bestowed on us the power to seal and ordered us to serve the Elroki tribe.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3c.html deleted file mode 100644 index a1dc407a0e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3c.html +++ /dev/null @@ -1,6 +0,0 @@ -Chuta Kaimu:
-The bravest of the Elrokian warriors, my master!
-My duty is to defend you from Sailren's claws, but you are wounded -- you fall!
-Your lifeless hand opens, and Gazkh falls to the ground, no longer a warrior's weapon.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3d.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3d.html deleted file mode 100644 index 041e306b40..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3d.html +++ /dev/null @@ -1,8 +0,0 @@ -Chuta Kaimu:
-Mother Shilen, I implore you!
-Before my life ends in sorrow for my master's death,
-Before I am destroyed by the wrath of Sailren,
-Use me to restore order!
-Though I be shattered to pieces, use my energy to seal up our enemy!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3e.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3e.html deleted file mode 100644 index 743e3dd440..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-3e.html +++ /dev/null @@ -1,4 +0,0 @@ -Chuta Kaimu:
-Chuta Kaimu awaits your reaction after it has finished searching for Gazkh.and.abnormal.phenomena.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4.html deleted file mode 100644 index c8989b2156..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4.html +++ /dev/null @@ -1,5 +0,0 @@ -Chuta Kaimu:
-My hero, my master!
-Should my spirit ever return here, gather my shattered body and sing to me the warrior song of old.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4a.html deleted file mode 100644 index 8145172699..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4a.html +++ /dev/null @@ -1,3 +0,0 @@ -Chuta Kaimu:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4b.html deleted file mode 100644 index 25f483b856..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4b.html +++ /dev/null @@ -1,5 +0,0 @@ -Chuta Kaimu:
-This fragment of Gazkh floods me with its suffering! The pain!
-Another memory surfaces!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4c.html deleted file mode 100644 index 23e5f81964..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4c.html +++ /dev/null @@ -1,7 +0,0 @@ -Chuta Kaimu:
-With my body, the sacrifice of other Gazkhs, and the efforts of Shilen, we locked Sailren deep in the Lost Nest.
-But our shattered fragments are now buried in the cold ground or lodged in the skins of the dinosaurs themselves, and the magical seal has failed.
-With it, the power to contain the evil is failing.
-A broken bowl cannot hold water, so how can a broken ax hold power?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4d.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4d.html deleted file mode 100644 index 181336fec1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4d.html +++ /dev/null @@ -1,9 +0,0 @@ -Chuta Kaimu:
-O Shilen!
-Let this broken sentinel return to its master's side!
-Travel to a place where the thick trees lean against a cliff and hold their hands together.
-To a place where the Elrokian warriors of old cast off their worn bodies and left on the journey from which no man returns.
-Were it within my power, I would already be with them!
-Oh, my silver-armored master...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4e.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4e.html deleted file mode 100644 index bcfb18aba6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-4e.html +++ /dev/null @@ -1,4 +0,0 @@ -Chuta Kaimu:
-The melody sounds similar to the one that Balu Kaimu sang. Perhaps it is the next verse of the song; given its similarity to the other melody, it should be easy to memorize.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-5.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-5.html deleted file mode 100644 index 2c26937881..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-5.html +++ /dev/null @@ -1,6 +0,0 @@ -Chuta Kaimu:
-Here is the wisdom that you seek.
-Outsider of fate, Shilen's will is that you now travel to the Warrior's Grave and pray over it with a true heart. Then you will receive what you require.
-The grave lies at the end of the southwest area. Take this fragment of Gazkh that you showed me, whose memories have revealed this wisdom to me.
-If only you could restore the fragment to its rightful master! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-5a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-5a.html deleted file mode 100644 index f82e94e76e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-5a.html +++ /dev/null @@ -1,6 +0,0 @@ -Chuta Kaimu:
-This is all the wisdom I can share with you.
-Follow this road to the Warrior's Grave at the southwest end.
-Once there, pray for his soul and you may receive what you require. If necessary, place the Gazkh fragment on the Warrior's Grave.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-5b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-5b.html deleted file mode 100644 index a9a320c294..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32121-5b.html +++ /dev/null @@ -1,3 +0,0 @@ -Chuta Kaimu:
-Sol-Fa-Mi-Fa-Mi! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-1.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-1.html deleted file mode 100644 index 89c9d7a462..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-1.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
-It appears to be a grave. But who would be buried in such a remote place? From its neglected appearance, it's clear that no one has visited here for a long time...but you have the sense the grave is the final resting place of a noble soul. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2.html deleted file mode 100644 index 3914d59509..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2.html +++ /dev/null @@ -1,5 +0,0 @@ -Warrior's Grave:
-Judging from its location, this must be the warrior's grave that Chuta Kaimu told you about.
-There must certainly be a story about the unknown warrior whose remains are buried here.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2a.html deleted file mode 100644 index aecac10734..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2a.html +++ /dev/null @@ -1,5 +0,0 @@ -Warrior's Grave:
-You conclude your prayer for the unknown soul buried here.
-Suddenly, a hazy figure appears above the battered gravestone! Looking closely, you see the ghostly figure of an Elrokian warrior. Could it be the spirit of the person buried in this lost grave?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2b.html deleted file mode 100644 index 8fb3b9dda3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2b.html +++ /dev/null @@ -1,5 +0,0 @@ -Warrior's Grave:
-Stranger, why have you come to this forgotten place? Why do you raise up your voice in prayer?
-Your desire to see me was so strong that it called to me across the black chasm of death, summoning me back to the world of men. What do you seek here?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2c.html deleted file mode 100644 index 299f50bf62..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2c.html +++ /dev/null @@ -1,4 +0,0 @@ -Warrior's Grave:
-What manner of wisdom do you seek, that you should venture so far from the safety of home and hearth? I see it is no trivial whim that brings you here, but that you have been entrusted with a most important task...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2d.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2d.html deleted file mode 100644 index b9f78d56d6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2d.html +++ /dev/null @@ -1,6 +0,0 @@ -Warrior's Grave:
-I perceive a metal fragment chipped from a blunt weapon...
-Wait... What is this symbol?
-Ah! This is a fragment of Gazkh!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2e.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2e.html deleted file mode 100644 index a054620e26..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2e.html +++ /dev/null @@ -1,6 +0,0 @@ -Warrior's Grave:
-Yes, now that I see it clearly, I certainly recognize it. Ah, Gazkh! From the time Shilen bequeathed it to me it never left my side, not even in slumber. Even after death, I wandered for a time searching for it. And now I see that, like me, it is only a broken remnant of what it was.
-This is truly a bittersweet reunion. The memories rush back... But alas! Those times are gone, never to return.
-But how is it that a stranger to these lands should bring this here, you who are not even an Elrokian warrior?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2f.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2f.html deleted file mode 100644 index 9eba3b56fb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2f.html +++ /dev/null @@ -1,7 +0,0 @@ -Warrior's Grave:
-I understand your amazement, but such things are possible.
-The objects upon which Shilen bestowed the power to seal often were also granted awareness and will.
-Gazkh was created to control unstable dinosaurs through a powerful mystic seal, and it became more than a weapon -- it was given life.
-Gazkh and its wielder were spiritually connected, a union that made them a force to be reckoned with on the battlefield and revered in council.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2g.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2g.html deleted file mode 100644 index 32dd37c5db..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2g.html +++ /dev/null @@ -1,4 +0,0 @@ -Warrior's Grave:
-The power to seal would be dispersed and the weapon thrown into the sea. In that way, Gazkh's suffering would be ended and its legacy preserved. Were that not to happen, Gazkh might become a burden to the tribe...or worse.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2h.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2h.html deleted file mode 100644 index c96233baed..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2h.html +++ /dev/null @@ -1,5 +0,0 @@ -Warrior's Grave:
-What do you mean?!
-Are you saying that in the final battle against Sailren, Gazkh was shattered in the supreme effort to seal the creature?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2i.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2i.html deleted file mode 100644 index 132cea418b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2i.html +++ /dev/null @@ -1,5 +0,0 @@ -Warrior's Grave:
-Ah, that it came to that! Glad I am that I did not live to see those dark days, or the dismal fate of my friend and weapon!
-How Gazkh must have suffered through the long years, broken, abandoned and forgotten by men! That pain likely became like poison to anyone who touched any of the fragments.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2j.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2j.html deleted file mode 100644 index 7b97e3ac0e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2j.html +++ /dev/null @@ -1,5 +0,0 @@ -Warrior's Grave:
-No. As far as I know, it is impossible for a Gazkh to use up all of its strength...
-But why do you ask such things?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2k.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2k.html deleted file mode 100644 index e46a6dfff8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2k.html +++ /dev/null @@ -1,7 +0,0 @@ -Warrior's Grave:
-The Elrokian village... You say that my descendants are growing more violent?
-Hmm... If I surmise correctly, then the phenomena are... Oh no!
-Stranger, we haven't much time!
-If what I fear has come to pass, then the Elrokians -- indeed the very island itself -- are in grave danger!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2l.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2l.html deleted file mode 100644 index 6c23278021..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-2l.html +++ /dev/null @@ -1,4 +0,0 @@ -Warrior's Grave:
-Ah, this is a fragment of the sacred ax Gazkh, given into my hand by my mother, Shilen!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-3.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-3.html deleted file mode 100644 index c6b8361fe3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-3.html +++ /dev/null @@ -1,6 +0,0 @@ -Warrior's Grave:
-What you have seen are signs of the Sirens awakening, throwing off the power of the seal! Sirens are filled with wickedness and death, and even have the ability to influence the thoughts and actions of others -- even possess their spirits! It was that ability that led many Elrokian warriors to an ignoble death while I lived.
-Unless this awakening is prevented, the entire island will succumb to the Sirens' chaos.
-There is no time to waste -- you must listen to me and heed my words. Only you can save my people!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-3a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-3a.html deleted file mode 100644 index dd8770f1f5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-3a.html +++ /dev/null @@ -1,6 +0,0 @@ -Warrior's Grave:
-The only hope is for you to become an Elrokian warrior, the one destined to wield Gazkh!
-But wait! Gazkh is no toy to be picked up on a whim. It is as dangerous as a serpent, as powerful as fire itself! You must prove yourself worthy to be its owner.
-Stranger, I see that you are already wise and brave. But that alone is not enough. If you wish to travel this path, there is one more task you must perform.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-3b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-3b.html deleted file mode 100644 index 4d62b029d3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-3b.html +++ /dev/null @@ -1,5 +0,0 @@ -Warrior's Grave:
-The Sirens possess more than simply physical powers; they also possess psychic abilities. In the past, they could impose their wills on others, forcing them to do their bidding. Without Shilen and her mighty Elrokian warriors, this island is doomed...unless you can prevent it.
-Hear my words!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4.html deleted file mode 100644 index 7adb24f7bb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4.html +++ /dev/null @@ -1,6 +0,0 @@ -Warrior's Grave:
-There is no time to give you all the details now -- they can wait until the first step is finished.
-First, you must retrieve my ashes from this grave. A memorial ceremony will prepare my remains; sing the Warrior Song that inspired countless Elrokian warriors as they prepared for battle in the days of old. Summoned by that old tune, my bones will rouse themselves from their long slumber and emerge.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4a.html deleted file mode 100644 index a1bfff5bfa..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4a.html +++ /dev/null @@ -1,5 +0,0 @@ -Warrior's Grave:
-Have you not heard that ancient song, with its sweet but sorrowful melody?
-You know so much about the Elroki tribe -- I cannot believe no one has taught it to you.
-Search your memory! If you truly do not know it, you must search out someone who can teach it to you; sadly, I am prohibited from helping you learn it. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4b.html deleted file mode 100644 index 9a2f859346..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4b.html +++ /dev/null @@ -1,6 +0,0 @@ -Warrior's Grave:
-Good!
-Remember, the warrior song contains 3 verses. The memorial ceremony can be completed only when you perfectly sing every single scale of each verse.
-Are you ready?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4c.html deleted file mode 100644 index ba297a50a0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4c.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the first note of the first verse.
-Do    -Re    -Mi    -Fa    -Sol - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4d.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4d.html deleted file mode 100644 index ce4125f31d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4d.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4e.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4e.html deleted file mode 100644 index 78aa60b6bb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4e.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the second note of the first verse.
-Do    -Re    -Mi    -Fa    -Sol - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4f.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4f.html deleted file mode 100644 index 7af2b769e0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4f.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4g.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4g.html deleted file mode 100644 index a1af9c1f58..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4g.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the third note of the first verse.
-Do    -Re    -Mi    -Fa    -Sol - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4h.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4h.html deleted file mode 100644 index 40be54bbbf..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4h.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4i.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4i.html deleted file mode 100644 index 3306f7f6a2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4i.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the fourth note of the first verse.
-Do    -Re    -Mi    -Fa    -Sol - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4j.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4j.html deleted file mode 100644 index 9c0a2b718c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4j.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4k.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4k.html deleted file mode 100644 index 89bfa4b256..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4k.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the fifth note of the first verse.
-Do    -Re    -Mi    -Fa    -Sol - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4l.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4l.html deleted file mode 100644 index 69549b1fe2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4l.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4m.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4m.html deleted file mode 100644 index 3509902b91..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4m.html +++ /dev/null @@ -1,5 +0,0 @@ -Warrior's Grave:
-It is not a complex melody, but perhaps an outsider such as yourself finds it more difficult to sing than a born Elrokian warrior who has heard it from birth. Concentrate! You must try again -- the fate of this island depends on it!
-Remember, you must perfectly sing every single scale of each of the 3 verses.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4n.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4n.html deleted file mode 100644 index 2b5af87011..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-4n.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5.html deleted file mode 100644 index c0f2ed08c4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the first note of the second verse.
-Re    -Mi    -Fa    -Sol    -Ti - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5a.html deleted file mode 100644 index a460143e28..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5a.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5b.html deleted file mode 100644 index 0d030d29d9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5b.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the second note of the second verse.
-Re    -Mi    -Fa    -Sol    -Ti - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5c.html deleted file mode 100644 index f1aee932c0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5c.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5d.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5d.html deleted file mode 100644 index b267e54df0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5d.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the third note of the second verse.
-Re    -Mi    -Fa    -Sol    -Ti - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5e.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5e.html deleted file mode 100644 index 33bdd2e3f4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5e.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5f.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5f.html deleted file mode 100644 index 8a80cdc54c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5f.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the fourth note of the second verse.
-Re    -Mi    -Fa    -Sol    -Ti - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5g.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5g.html deleted file mode 100644 index 7e42f544cf..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5g.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5h.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5h.html deleted file mode 100644 index 8bf7f2facf..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5h.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the fifth note of the second verse.
-Re    -Mi    -Fa    -Sol    -Ti - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5i.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5i.html deleted file mode 100644 index 4577e66712..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5i.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5j.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5j.html deleted file mode 100644 index 0ac4e38aaa..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-5j.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6.html deleted file mode 100644 index af2786cfbf..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the first note of the third verse.
-Do    -Re    -Mi    -Fa    -Sol - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6a.html deleted file mode 100644 index 71861f15f9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6a.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6b.html deleted file mode 100644 index e0576354b4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6b.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the second note of the third verse.
-Do    -Re    -Mi    -Fa    -Sol - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6c.html deleted file mode 100644 index c368d654d0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6c.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6d.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6d.html deleted file mode 100644 index 151ca8ba31..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6d.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the third note of the third verse.
-Do    -Re    -Mi    -Fa    -Sol - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6e.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6e.html deleted file mode 100644 index d8edee1814..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6e.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6f.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6f.html deleted file mode 100644 index 44ddb4f8eb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6f.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the fourth note of the third verse.
-Do    -Re    -Mi    -Fa    -Sol - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6g.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6g.html deleted file mode 100644 index 8238786713..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6g.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6h.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6h.html deleted file mode 100644 index ea05fbebd1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6h.html +++ /dev/null @@ -1,8 +0,0 @@ -Warrior's Grave:
-Please press the fifth note of the third verse.
-Do    -Re    -Mi    -Fa    -Sol - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6i.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6i.html deleted file mode 100644 index ce5fc85cfb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6i.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6j.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6j.html deleted file mode 100644 index 1ee5d88044..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-6j.html +++ /dev/null @@ -1,3 +0,0 @@ -Warrior's Grave:
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-7.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-7.html deleted file mode 100644 index 7f191ecada..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-7.html +++ /dev/null @@ -1,5 +0,0 @@ -Warrior's Grave:
-You have successfully completed the memorial service by singing the Warrior's Song correctly.
-Suddenly, you hear an answering echo of the song all around you. Almost delicately, a small cloud of dust rises from the grave. The cloud coalesces in mid-air, then moves toward you and gently settles in your pocket.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-7a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-7a.html deleted file mode 100644 index d60967032b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-7a.html +++ /dev/null @@ -1,5 +0,0 @@ -Warrior's Grave:
-Yes, these are all that remains of my mortal body, summoned forth from their resting place by the power of your Warrior's Song to perform one final duty.
-As you take these ashes, accept my spirit! We are now linked, you and I. Take these ashes and go to the end of the southeast area. It was there that Sailren was supposedly sealed. Examine the area carefully for the seal stone; it should be there as well.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-7b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-7b.html deleted file mode 100644 index 4610dd1daf..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-7b.html +++ /dev/null @@ -1,4 +0,0 @@ -Warrior's Grave:
-You obtained ashes from the Warrior's Grave after successfully completing the memorial service.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-8.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-8.html deleted file mode 100644 index 1c7e7e2b6a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-8.html +++ /dev/null @@ -1,6 +0,0 @@ -Warrior's Grave:
-The seal stone is the most powerful of its kind in the Lost Nest, keeping both man and dinosaur apart from each other.
-It will likely possess some sort of unique shape; I doubt you will have trouble recognizing it when you see it.
-Deposit my ashes on the stone and you will learn how to wield Gazkh. The seal stone may also have other information we need to stop Sailren from destroying the island.
-Time is fleeting! Hurry and find the seal stone before its protective power fails entirely! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-9.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-9.html deleted file mode 100644 index 8a431a72a4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/32122-9.html +++ /dev/null @@ -1,4 +0,0 @@ -Warrior's Grave:
-Why haven't you left?
-Take these ashes and travel southeast. The seal stone that imprisons Sailren should be in that area -- find it and deposit the ashes on it and you will discover how to wield Gazkh. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/Q00126_TheNameOfEvil2.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/Q00126_TheNameOfEvil2.java deleted file mode 100644 index 2fe435eff1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00126_TheNameOfEvil2/Q00126_TheNameOfEvil2.java +++ /dev/null @@ -1,786 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00126_TheNameOfEvil2; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; -import com.l2jmobius.gameserver.network.serverpackets.MagicSkillUse; - -import quests.Q00125_TheNameOfEvil1.Q00125_TheNameOfEvil1; - -/** - * The Name of Evil - 2 (126) - * @author Adry_85 - */ -public class Q00126_TheNameOfEvil2 extends Quest -{ - // NPCs - private static final int SHILENS_STONE_STATUE = 32109; - private static final int MUSHIKA = 32114; - private static final int ASAMAH = 32115; - private static final int ULU_KAIMU = 32119; - private static final int BALU_KAIMU = 32120; - private static final int CHUTA_KAIMU = 32121; - private static final int WARRIORS_GRAVE = 32122; - // Items - private static final int GAZKH_FRAGMENT = 8782; - private static final int BONE_POWDER = 8783; - // Reward - private static final int ENCHANT_WEAPON_A = 729; - - public Q00126_TheNameOfEvil2() - { - super(126); - addStartNpc(ASAMAH); - addTalkId(ASAMAH, ULU_KAIMU, BALU_KAIMU, CHUTA_KAIMU, WARRIORS_GRAVE, SHILENS_STONE_STATUE, MUSHIKA); - registerQuestItems(GAZKH_FRAGMENT, BONE_POWDER); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return getNoQuestMsg(player); - } - - switch (event) - { - case "32115-1.html": - { - qs.startQuest(); - break; - } - case "32115-1b.html": - { - if (qs.isCond(1)) - { - qs.setCond(2, true); - } - break; - } - case "32119-3.html": - { - if (qs.isCond(2)) - { - qs.setCond(3, true); - } - break; - } - case "32119-4.html": - { - if (qs.isCond(3)) - { - qs.setCond(4, true); - } - break; - } - case "32119-4a.html": - case "32119-5b.html": - { - playSound(player, QuestSound.ETCSOUND_ELROKI_SONG_1ST); - break; - } - case "32119-5.html": - { - if (qs.isCond(4)) - { - qs.setCond(5, true); - } - break; - } - case "32120-3.html": - { - if (qs.isCond(5)) - { - qs.setCond(6, true); - } - break; - } - case "32120-4.html": - { - if (qs.isCond(6)) - { - qs.setCond(7, true); - } - break; - } - case "32120-4a.html": - case "32120-5b.html": - { - playSound(player, QuestSound.ETCSOUND_ELROKI_SONG_2ND); - break; - } - case "32120-5.html": - { - if (qs.isCond(7)) - { - qs.setCond(8, true); - } - break; - } - case "32121-3.html": - { - if (qs.isCond(8)) - { - qs.setCond(9, true); - } - break; - } - case "32121-4.html": - { - if (qs.isCond(9)) - { - qs.setCond(10, true); - } - break; - } - case "32121-4a.html": - case "32121-5b.html": - { - playSound(player, QuestSound.ETCSOUND_ELROKI_SONG_3RD); - break; - } - case "32121-5.html": - { - if (qs.isCond(10)) - { - giveItems(player, GAZKH_FRAGMENT, 1); - qs.setCond(11, true); - } - break; - } - case "32122-2a.html": - { - npc.broadcastPacket(new MagicSkillUse(npc, player, 5089, 1, 1000, 0)); - break; - } - case "32122-2d.html": - { - takeItems(player, GAZKH_FRAGMENT, -1); - break; - } - case "32122-3.html": - { - if (qs.isCond(12)) - { - qs.setCond(13, true); - } - break; - } - case "32122-4.html": - { - if (qs.isCond(13)) - { - qs.setCond(14, true); - } - break; - } - case "DO_One": - { - qs.set("DO", "1"); - event = "32122-4d.html"; - break; - } - case "MI_One": - { - qs.set("MI", "1"); - event = "32122-4f.html"; - break; - } - case "FA_One": - { - qs.set("FA", "1"); - event = "32122-4h.html"; - break; - } - case "SOL_One": - { - qs.set("SOL", "1"); - event = "32122-4j.html"; - break; - } - case "FA2_One": - { - qs.set("FA2", "1"); - if (qs.isCond(14) && (qs.getInt("DO") > 0) && (qs.getInt("MI") > 0) && (qs.getInt("FA") > 0) && (qs.getInt("SOL") > 0) && (qs.getInt("FA2") > 0)) - { - event = "32122-4n.html"; - qs.setCond(15, true); - } - else - { - event = "32122-4m.html"; - } - qs.unset("DO"); - qs.unset("MI"); - qs.unset("FA"); - qs.unset("SOL"); - qs.unset("FA2"); - break; - } - case "32122-4m.html": - { - qs.unset("DO"); - qs.unset("MI"); - qs.unset("FA"); - qs.unset("SOL"); - qs.unset("FA2"); - break; - } - case "FA_Two": - { - qs.set("FA", "1"); - event = "32122-5a.html"; - break; - } - case "SOL_Two": - { - qs.set("SOL", "1"); - event = "32122-5c.html"; - break; - } - case "TI_Two": - { - qs.set("TI", "1"); - event = "32122-5e.html"; - break; - } - case "SOL2_Two": - { - qs.set("SOL2", "1"); - event = "32122-5g.html"; - break; - } - case "FA2_Two": - { - qs.set("FA2", "1"); - if (qs.isCond(15) && (qs.getInt("FA") > 0) && (qs.getInt("SOL") > 0) && (qs.getInt("TI") > 0) && (qs.getInt("SOL2") > 0) && (qs.getInt("FA2") > 0)) - { - event = "32122-5j.html"; - qs.setCond(16, true); - } - else - { - event = "32122-5i.html"; - } - qs.unset("FA"); - qs.unset("SOL"); - qs.unset("TI"); - qs.unset("SOL2"); - qs.unset("FA2"); - break; - } - case "32122-5i.html": - { - qs.unset("FA"); - qs.unset("SOL"); - qs.unset("TI"); - qs.unset("SOL2"); - qs.unset("FA2"); - break; - } - case "SOL_Three": - { - qs.set("SOL", "1"); - event = "32122-6a.html"; - break; - } - case "FA_Three": - { - qs.set("FA", "1"); - event = "32122-6c.html"; - break; - } - case "MI_Three": - { - qs.set("MI", "1"); - event = "32122-6e.html"; - break; - } - case "FA2_Three": - { - qs.set("FA2", "1"); - event = "32122-6g.html"; - break; - } - case "MI2_Three": - { - qs.set("MI2", "1"); - if (qs.isCond(16) && (qs.getInt("SOL") > 0) && (qs.getInt("FA") > 0) && (qs.getInt("MI") > 0) && (qs.getInt("FA2") > 0) && (qs.getInt("MI2") > 0)) - { - event = "32122-6j.html"; - qs.setCond(17, true); - } - else - { - event = "32122-6i.html"; - } - qs.unset("SOL"); - qs.unset("FA"); - qs.unset("MI"); - qs.unset("FA2"); - qs.unset("MI2"); - break; - } - case "32122-6i.html": - { - qs.unset("SOL"); - qs.unset("FA"); - qs.unset("MI"); - qs.unset("FA2"); - qs.unset("MI2"); - break; - } - case "32122-7.html": - { - giveItems(player, BONE_POWDER, 1); - playSound(player, QuestSound.ETCSOUND_ELROKI_SONG_FULL); - npc.broadcastPacket(new MagicSkillUse(npc, player, 5089, 1, 1000, 0)); - break; - } - case "32122-8.html": - { - if (qs.isCond(17)) - { - qs.setCond(18, true); - } - break; - } - case "32109-2.html": - { - if (qs.isCond(18)) - { - qs.setCond(19, true); - } - break; - } - case "32109-3.html": - { - if (qs.isCond(19)) - { - takeItems(player, BONE_POWDER, -1); - qs.setCond(20, true); - } - break; - } - case "32115-4.html": - { - if (qs.isCond(20)) - { - qs.setCond(21, true); - } - break; - } - case "32115-5.html": - { - if (qs.isCond(21)) - { - qs.setCond(22, true); - } - break; - } - case "32114-2.html": - { - if (qs.isCond(22)) - { - qs.setCond(23, true); - } - break; - } - case "32114-3.html": - { - rewardItems(player, ENCHANT_WEAPON_A, 1); - giveAdena(player, 460483, true); - addExpAndSp(player, 1015973, 102802); - qs.exitQuest(false, true); - break; - } - } - return event; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - QuestState qs = getQuestState(player, true); - - switch (npc.getId()) - { - case ASAMAH: - { - switch (qs.getState()) - { - case State.CREATED: - { - if (player.getLevel() < 77) - { - htmltext = "32115-0.htm"; - } - else - { - qs = player.getQuestState(Q00125_TheNameOfEvil1.class.getSimpleName()); - htmltext = ((qs != null) && qs.isCompleted()) ? "32115-0a.htm" : "32115-0b.htm"; - } - break; - } - case State.STARTED: - { - switch (qs.getCond()) - { - case 1: - { - htmltext = "32115-1d.html"; - break; - } - case 2: - { - htmltext = "32115-1c.html"; - break; - } - case 3: - case 4: - case 5: - case 6: - case 7: - case 8: - case 9: - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - { - htmltext = "32115-2.html"; - break; - } - case 20: - { - htmltext = "32115-3.html"; - break; - } - case 21: - { - htmltext = "32115-4j.html"; - break; - } - case 22: - { - htmltext = "32115-5a.html"; - break; - } - } - break; - } - case State.COMPLETED: - { - htmltext = getAlreadyCompletedMsg(player); - break; - } - } - break; - } - case ULU_KAIMU: - { - if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - { - htmltext = "32119-1.html"; - break; - } - case 2: - { - htmltext = "32119-2.html"; - npc.broadcastPacket(new MagicSkillUse(npc, player, 5089, 1, 1000, 0)); - break; - } - case 3: - { - htmltext = "32119-3c.html"; - break; - } - case 4: - { - htmltext = "32119-4c.html"; - break; - } - case 5: - { - htmltext = "32119-5a.html"; - break; - } - } - } - break; - } - case BALU_KAIMU: - { - if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - case 2: - case 3: - case 4: - { - htmltext = "32120-1.html"; - break; - } - case 5: - { - htmltext = "32120-2.html"; - npc.broadcastPacket(new MagicSkillUse(npc, player, 5089, 1, 1000, 0)); - break; - } - case 6: - { - htmltext = "32120-3c.html"; - break; - } - case 7: - { - htmltext = "32120-4c.html"; - break; - } - default: - { - htmltext = "32120-5a.html"; - break; - } - } - } - break; - } - case CHUTA_KAIMU: - { - if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - { - htmltext = "32121-1.html"; - break; - } - case 8: - { - htmltext = "32121-2.html"; - npc.broadcastPacket(new MagicSkillUse(npc, player, 5089, 1, 1000, 0)); - break; - } - case 9: - { - htmltext = "32121-3e.html"; - break; - } - case 10: - { - htmltext = "32121-4e.html"; - break; - } - default: - { - htmltext = "32121-5a.html"; - break; - } - } - } - break; - } - case WARRIORS_GRAVE: - { - if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - case 8: - case 9: - case 10: - { - htmltext = "32122-1.html"; - break; - } - case 11: - { - htmltext = "32122-2.html"; - qs.setCond(12, true); - break; - } - case 12: - { - htmltext = "32122-2l.html"; - break; - } - case 13: - { - htmltext = "32122-3b.html"; - break; - } - case 14: - { - htmltext = "32122-4.html"; - qs.unset("DO"); - qs.unset("MI"); - qs.unset("FA"); - qs.unset("SOL"); - qs.unset("FA2"); - break; - } - case 15: - { - htmltext = "32122-5.html"; - qs.unset("FA"); - qs.unset("SOL"); - qs.unset("TI"); - qs.unset("SOL2"); - qs.unset("FA2"); - break; - } - case 16: - { - htmltext = "32122-6.html"; - qs.unset("SOL"); - qs.unset("FA"); - qs.unset("MI"); - qs.unset("FA2"); - qs.unset("MI2"); - break; - } - case 17: - { - htmltext = hasQuestItems(player, BONE_POWDER) ? "32122-7.html" : "32122-7b.html"; - break; - } - case 18: - { - htmltext = "32122-8.html"; - break; - } - default: - { - htmltext = "32122-9.html"; - break; - } - } - } - break; - } - case SHILENS_STONE_STATUE: - { - if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - case 8: - case 9: - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - { - htmltext = "32109-1a.html"; - break; - } - case 18: - { - if (hasQuestItems(player, BONE_POWDER)) - { - htmltext = "32109-1.html"; - } - break; - } - case 19: - { - htmltext = "32109-2l.html"; - break; - } - case 20: - { - htmltext = "32109-5.html"; - break; - } - default: - { - htmltext = "32109-4.html"; - break; - } - } - } - break; - } - case MUSHIKA: - { - if (qs.isStarted()) - { - if (qs.getCond() < 22) - { - htmltext = "32114-4.html"; - } - else if (qs.isCond(22)) - { - htmltext = "32114-1.html"; - } - else - { - htmltext = "32114-2.html"; - } - } - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-01a.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-01a.htm deleted file mode 100644 index 3bc8ef1444..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-01a.htm +++ /dev/null @@ -1,5 +0,0 @@ -Mercenary Kahman:
-Welcome! The time has come to end this conflict.
-Are you ready to do your part in a decisive battle?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-01b.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-01b.htm deleted file mode 100644 index cad8edf7e1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-01b.htm +++ /dev/null @@ -1,3 +0,0 @@ -Mercenary Kahman:
-Thanks to you, the Stakatos have finally been defeated. Good work! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-02.htm deleted file mode 100644 index bbfb2bcf21..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-02.htm +++ /dev/null @@ -1,4 +0,0 @@ -Mercenary Kahman:
-I'm sorry, but you are too inexperienced to help us. Save yourself!
-(Only characters who are level 81 or higher may undertake this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-03.htm deleted file mode 100644 index b8fa076669..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-03.htm +++ /dev/null @@ -1,5 +0,0 @@ -Mercenary Kahman:
-I admire your courage! As you know, we've been infiltrating the Stakato Nest for some time and covertly attacking those monsters. Well, that must have just made them angrier.
-This time we're going to cut their head off by killing their leader, Queen Shyeed. Bring back the Stakato Queen's Fangs as proof of your victory.
-It won't be an easy battle, so take some trusted comrades with you. Good luck! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-04.html deleted file mode 100644 index 0316b93123..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-04.html +++ /dev/null @@ -1,4 +0,0 @@ -Mercenary Kahman:
-Our reconnaissance isn't complete, so I don't have a mission for you yet. Come back later.
-(Only characters who have completed the "In Search of the Nest" quest may undertake this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-05.html deleted file mode 100644 index 9f84b9622a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-05.html +++ /dev/null @@ -1,5 +0,0 @@ -Mercenary Kahman:
-These fangs...?! They belonged to the Queen Shyeed? So you were successful!
-Well done! Here is the highest reward you can receive from the Golden Ram Mercenaries.
-It has been an honor working with you! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-06.html deleted file mode 100644 index c5e9c9155b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/31554-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Mercenary Kahman:
-What are you doing here? We Golden Ram Mercenaries don't tolerate cowards. Show us what you're made of!
-Defeat Queen Shyeed and bring back the Stakato Queen's Fangs as proof! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/Q00146_TheZeroHour.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/Q00146_TheZeroHour.java deleted file mode 100644 index b404fdc3b7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00146_TheZeroHour/Q00146_TheZeroHour.java +++ /dev/null @@ -1,134 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00146_TheZeroHour; - -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -import quests.Q00109_InSearchOfTheNest.Q00109_InSearchOfTheNest; - -/** - * The Zero Hour (146) - * @author Gnacik, malyelfik - */ -public class Q00146_TheZeroHour extends Quest -{ - // NPCs - private static final int KAHMAN = 31554; - private static final int QUEEN_SHYEED = 25671; - // Item - private static final int KAHMANS_SUPPLY_BOX = 14849; - private static final int FANG = 14859; - - public Q00146_TheZeroHour() - { - super(146); - addStartNpc(KAHMAN); - addTalkId(KAHMAN); - addKillId(QUEEN_SHYEED); - registerQuestItems(FANG); - } - - @Override - public int getNpcStringId() - { - return 640; - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return getNoQuestMsg(player); - } - - if (event.equalsIgnoreCase("31554-03.htm")) - { - qs.startQuest(); - } - return event; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final L2PcInstance partyMember = getRandomPartyMember(killer, 1); - if ((partyMember != null) && !hasQuestItems(partyMember, FANG)) - { - giveItems(partyMember, FANG, 1); - getQuestState(partyMember, false).setCond(2, true); - } - return super.onKill(npc, killer, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState qs = getQuestState(player, true); - - switch (qs.getState()) - { - case State.CREATED: - { - if (player.getLevel() < 81) - { - htmltext = "31554-02.htm"; - } - else - { - final QuestState prev = player.getQuestState(Q00109_InSearchOfTheNest.class.getSimpleName()); - if ((prev != null) && prev.isCompleted()) - { - htmltext = "31554-01a.htm"; - } - else - { - htmltext = "31554-04.html"; - } - } - break; - } - case State.STARTED: - { - if (qs.isCond(1)) - { - htmltext = "31554-06.html"; - } - else - { - giveItems(player, KAHMANS_SUPPLY_BOX, 1); - addExpAndSp(player, 154616, 12500); - qs.exitQuest(false, true); - htmltext = "31554-05.html"; - } - break; - } - case State.COMPLETED: - { - htmltext = "31554-01b.htm"; - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30897-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30897-01.html deleted file mode 100644 index f64499d5c9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30897-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Head Blacksmith Roman:
-I've been taking a break these past couple of days. I feel as though I deserve it. So whatever business brings you here better be good.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30897-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30897-02.html deleted file mode 100644 index 39aa6961c7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30897-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Head Blacksmith Roman:
-It is an undeniable certainty that transforming that useless Field of Silence into an industrial zone will make life here more prosperous. Once that happens, I'm going to take all the money I've saved and build my own factory out there. Then it will be bye-bye work and hello money .... lots and lots of money.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30897-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30897-03.html deleted file mode 100644 index c5a0054347..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30897-03.html +++ /dev/null @@ -1,6 +0,0 @@ -Head Blacksmith Roman:
-I'm serious as the grave.
-What good is that land doing completely undeveloped? Does that reed field make money? Is it benefiting anybody at all?
-Dr. Helvetica just wants to ulitize the land... give it a purpose. Developing on that land won't just make him money, it will make money for us all. Can't you see that?
-The day that Athenia's plan puts adena in my pocket will be the day that I re-evaluate my decision. But until that time, my patronage goes to Helvetica. Ponder that on your way out. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30897-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30897-04.html deleted file mode 100644 index f016106ff4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30897-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Head Blacksmith Roman:
-Do you have any more business with me? I've said all I have to say. Unless there's something else, stop bothering me. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-00.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-00.html deleted file mode 100644 index 9f9abfd5aa..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-00.html +++ /dev/null @@ -1,4 +0,0 @@ -Gatekeeper Flauen:
-This change may prove less than desirable. I hesitate to put you in danger...
-(Only characters who are level 82 or higher may undertake this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-01.htm deleted file mode 100644 index 2fa0d250c0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-01.htm +++ /dev/null @@ -1,6 +0,0 @@ -Gatekeeper Flauen:
-This place - my home - has been untouched by the passage of time. But now, the winds of change have begun to blow ... even here amidst the beauty of Heine.
-While change often brings with it uncertainty and even anxiety, I sense something indescribable on the wind. Something ominous. Something perhaps even deadly.
-I hope these feelings of mine are wrong.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-02.htm deleted file mode 100644 index 91a2e0aa1a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-02.htm +++ /dev/null @@ -1,6 +0,0 @@ -Gatekeeper Flauen:
-As you're not from around here, it is not surprising to find that you are unaware of the alarm brewing within our community.
-Recently, monsters named Mucrokians have appeared in the Field of Silence and the Field of Whispers. And while they do resemble their Crokian brethren, the likenesses stop there. The Mucrokians are far more powerful and far more deadly.
-Moreover...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-03.htm deleted file mode 100644 index 43f465d2b8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-03.htm +++ /dev/null @@ -1,6 +0,0 @@ -Gatekeeper Flauen:
-In the north, a dwarf by the name of Dr. Helvetica has appeared in the Fields of Silence. A more dastardly fellow you will never find. If the rumors are true, Dr. Helvetica's plan is to conquer that area by force! It is said that he plans to lead an army of Enchanted Golems through that area, wiping it clean of friend and foe, so he can transform it into an industrial zone!
-In order to stop Helvetica's plans, an elf called Athenia has setup camp on the south end of the island, in the Field of Whispers. She is amassing her own following, and means to prevent Dr. Helvetica from getting away with the corruption and desecration of Nature.
-But...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-04.htm deleted file mode 100644 index 4aa89704ac..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-04.htm +++ /dev/null @@ -1,5 +0,0 @@ -Gatekeeper Flauen:
-While Athenia is doing all she can to thwart Dr. Helvetica's plans, the land is crying out for your assistance.
-Perhaps the providence of Evas has sent you here to us. The current state of affairs cannot last. Won't you lend a hand? Which side you choose to support is up to you...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-05.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-05.htm deleted file mode 100644 index 8731764e2e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-05.htm +++ /dev/null @@ -1,6 +0,0 @@ -Gatekeeper Flauen:
-I place the choice in your hands. But before making it, you must learn more about both sides.
-Both sides are seeking assistance from Sir Iason Heine, since he exerts a vast influence here. I suggest you speak with him and ask his advice.
-Do you understand?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-06.html deleted file mode 100644 index 12e99e27c3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Gatekeeper Flauen:
-I hope so. May Eva bless your efforts, my friend. You will find Iason Heine in the warehouse of this village.
-Take this letter with you, and good luck! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-07.html deleted file mode 100644 index ed6e708409..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-07.html +++ /dev/null @@ -1,3 +0,0 @@ -Gatekeeper Flauen:
-I cannot provide you any more help. Find Sir Iason Heine in the village warehouse and speak with him. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-08.html deleted file mode 100644 index e055b196a1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-08.html +++ /dev/null @@ -1,4 +0,0 @@ -Gatekeeper Flauen:
-I have nothing more to say. You should have already arrived to the destination if you used the teleport while chatting like this.
-For Dr. Helvetica, go to the Reed Field of Silence; for Priestess Athenia, please go to the Reed Field of Whisper. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-09.html deleted file mode 100644 index 8a27cae407..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-09.html +++ /dev/null @@ -1,4 +0,0 @@ -Gatekeeper Flauen:
-I heard the rumor that you had surrendered yourself to the winds of change. I pray you made the right decision...
-(You have already completed this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-10.html deleted file mode 100644 index ca552004d6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-10.html +++ /dev/null @@ -1,4 +0,0 @@ -Gatekeeper Flauen:
-Roman? Ah, you mean the Head Blacksmith!
-He should be in the blacksmith's shop, as you would expect. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-11.html deleted file mode 100644 index 3a8f96f26d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30899-11.html +++ /dev/null @@ -1,3 +0,0 @@ -Gatekeeper Flauen:
-???? You mean by Eva's High Priest? He should be in the Great Temple of Eva... - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30925-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30925-01.html deleted file mode 100644 index afdd5009c5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30925-01.html +++ /dev/null @@ -1,4 +0,0 @@ -High Priestess Morelyn:
-What brings you here, traveler? I can sense that you are not here for spiritual renewal. Why has Eva brought you to us?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30925-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30925-02.html deleted file mode 100644 index 75b3f38034..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30925-02.html +++ /dev/null @@ -1,5 +0,0 @@ -High Priestess Morelyn:
-Ahh, Athenia. I assume you are speaking of the Priestess that fights to ensure the sanctity and preservation of our lands.
-She is going to be our savior, you know.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30925-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30925-03.html deleted file mode 100644 index 84916c2e3b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30925-03.html +++ /dev/null @@ -1,3 +0,0 @@ -High Priestess Morelyn:
-Nature is the lifeblood of everyone and everything. The land will only nurture us so long as we nurture it. Athenia understands this and strives protect this delicate balance. And she is willing to do that by any means necessary. And for that, she has my unwaivering support. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30925-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30925-04.html deleted file mode 100644 index a838ea1744..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30925-04.html +++ /dev/null @@ -1,3 +0,0 @@ -High Priestess of Eva Morelyn:
-You have not left yet? I tell you this again. Please think about the meaning of this place Heine. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-01.html deleted file mode 100644 index 0c8e659335..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Iason Haine:
-What is it?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-02.html deleted file mode 100644 index b6d06aa0c7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Iason Heine:
-Hmm... You say this letter was sent by Flauen? She has protected this area for many years, so I must respect her judgment. I've also been watching this situation closely. I assume you'd like to hear my perspective on it?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-03.html deleted file mode 100644 index 25c93bc84f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-03.html +++ /dev/null @@ -1,6 +0,0 @@ -Iason Heine:
-I'm sure you're already aware that Dr. Helvetica settles in the northern Reed Field, the Reed Field of Silence, whereas Priestess Athenia settles in the southern Reed Field, the Reed Field of Whisper. Then, what is that you're curious about?
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-03a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-03a.html deleted file mode 100644 index 8e6fa25fca..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-03a.html +++ /dev/null @@ -1,5 +0,0 @@ -Iason Heine:
-What can I say about Dr. Helvetica? The only things I know about him are from his correspondance and idle gossip.
-I've heard that he is somewhat of a genius, finding fame and notoriety through his tenure at the Pavel Laboratory. Like Doctor Chaos, he had outgrown the confines of such a stifflingly correct administration. He claims to want the land to the north to build a research facility. It would surely help Innadril's development if I were to support his cause.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-03b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-03b.html deleted file mode 100644 index 4f0485f6d6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-03b.html +++ /dev/null @@ -1,6 +0,0 @@ -Iason Heine:
-Are you talking about Athenia? Oh yes, I've heard about her.
-Not only is she a passionate believer of Eva, but she is also a powerful priestess who knows well about the ancient rites and rituals. She believes that the land is something to be nurtured and protected. She would like nothing more than to see this area reinvigorated.
-Yes, it's true. I am inclined to help her, for in helping her, I can prevent the spread of these horrible Mucrokians.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-04.html deleted file mode 100644 index 6bbefb5cb6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-04.html +++ /dev/null @@ -1,5 +0,0 @@ -Iason Heine:
-To be quite frank, I don't know which side to support. The development of our territory versus the safety of our residents...
-I've just been waiting to see how things play out. Perhaps... would you be willing to help me decide?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-05.html deleted file mode 100644 index b63f18d55d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-05.html +++ /dev/null @@ -1,5 +0,0 @@ -Iason Heine:
-As you probably know, I am a busy man. And I don't have the time to address this particular matter personally. So I want you to decide who I should support. Go meet with the supporters of both sides, listen to their opinions and report back to me.
-First, I'll set up a meeting with Head Blacksmith Roman who happens to be a supporter of Dr. Helvetica. After that, you'll have a meeting with High Priestess Morelyn who supports this Athenia woman.
-After you have meet with these two, come back to me with your decision. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-06.html deleted file mode 100644 index e53b282cb8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-06.html +++ /dev/null @@ -1,3 +0,0 @@ -Iason Heine:
-First, meet with Head Blacksmith Roman, the supporter of Dr. Helvetica. And then, meet with High Priestess of Eva Morelyn, the supporter of Atenia. Come back when you are ready to decide. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-07.html deleted file mode 100644 index 6529a43ff1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Iason Heine:
-So tell me ... have you gleaned enough information to make a decision?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-08.html deleted file mode 100644 index 6561d9e194..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-08.html +++ /dev/null @@ -1,5 +0,0 @@ -Iason Heine:
-I have request letters from the two sides in my hand. Both are asking me for my support. After speaking to advocates of each side, which do you think I should support?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-08a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-08a.html deleted file mode 100644 index ae9f620a80..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-08a.html +++ /dev/null @@ -1,5 +0,0 @@ -Iason Heine:
-Oh, is that so? You want to help Dr. Helvetica, right? But a decision must be carefully made. If you are firm about your decision, I'll ignore the request letter from Priestess Athenia and promise my support to Dr. Helvetica. Are you sure about this? You cannot turn back your choice.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-08b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-08b.html deleted file mode 100644 index 17dc222c85..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-08b.html +++ /dev/null @@ -1,5 +0,0 @@ -Iason Heine:
-Is that so? Are you sure about this? Once you have made your choice, there is no going back.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-08c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-08c.html deleted file mode 100644 index 02dc30e367..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-08c.html +++ /dev/null @@ -1,6 +0,0 @@ -Iason Heine:
-Sure, you want to think about it again, right?
-Here are the requests letters from the two associations. They want me to support each of them. Which side will you support?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-09.html deleted file mode 100644 index ab6987922b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-09.html +++ /dev/null @@ -1,5 +0,0 @@ -Iason Heine:
-Very well then. I will disregard Athenia's request.
-(Iason tears up her letter right in front of you.)
-Ah, here it is. Here is the letter I received from Dr. Helvetica. Take this signed affidavit to him on my behalf. Let him know he now has my full support. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-10.html deleted file mode 100644 index 4b4e2a6519..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-10.html +++ /dev/null @@ -1,5 +0,0 @@ -Iason Heine:
-As you wish. And to show that I stand by your decision, I will destroy the note I received from Dr. Helvetica.
-(...Iason tears the letter into little pieces and throws them in the air...)
-Now take this promissory note to Athenia and let her know that she has my full support. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-11.html deleted file mode 100644 index 47703635cc..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/30969-11.html +++ /dev/null @@ -1,4 +0,0 @@ -Iason Heine:
-You can't change your mind now! We're both committed to the path you chose.
-Hurry and deliver this letter pledging my support. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-01.html deleted file mode 100644 index e58d514f48..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Dr. Helvetica:
-I am still awaiting word from Iason Heine. If I can secure his support, then no man or beast alive will be able to stop me. So what brings you here?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-02.html deleted file mode 100644 index 73afa2db3c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-02.html +++ /dev/null @@ -1,3 +0,0 @@ -Dr. Helvetica:
-That is stupendous news, my friend. With Heine's support, there is no way we will be defeated. Please take this as a token of my gratitude! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-03.html deleted file mode 100644 index 92e6fb49ec..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-03.html +++ /dev/null @@ -1,3 +0,0 @@ -Dr. Helvetica:
-Haven't I already finished this work? Anyway, I feel good because the news you brought. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-04.html deleted file mode 100644 index 2c57373c4c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-04.html +++ /dev/null @@ -1,4 +0,0 @@ -Dr. Helvetica:
-Ah, thank you very much. This means... Supporting Necromancer... Athenia.. What? What is this? This letter is about supporting Priestess Athenia instead of me!!
-Hey, are you joking with me? If you don't get lost right away, I will kick you out with the Bulldozer Rem. Please leave already. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-05.html deleted file mode 100644 index ec6680eba0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32641-05.html +++ /dev/null @@ -1,3 +0,0 @@ -Dr. Helvetica:
-I haven't received any response for the support request from Iason Heine. If he helps, then we can proceed with the business even faster. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-01.html deleted file mode 100644 index 62127d6158..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Priestess Athenia:
-I am waiting on Iason Heine's decision. Only with his support can we rejuvinate this zone to its original splendor. Do you perhaps know of him?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-02.html deleted file mode 100644 index 48ebafcb57..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-02.html +++ /dev/null @@ -1,3 +0,0 @@ -Priestess Athenia:
-Ah! I'm glad that you came. I'll give you a little reward. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-03.html deleted file mode 100644 index 4af32f0b1d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-03.html +++ /dev/null @@ -1,3 +0,0 @@ -Priestess Athenia:
-We've gained hope that we can win. I thank you once again. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-04.html deleted file mode 100644 index aedf4df991..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Priestess Athenia:
-Are you a minister of Dr. Helvetica? Why are you showing Support Letter for Dr. Helvetica to me? Please leave now. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-05.html deleted file mode 100644 index 82c2d5ffdd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/32643-05.html +++ /dev/null @@ -1,3 +0,0 @@ -Priestess Athenia:
-When would Iason Heine send his reply...? Do you know anything about this? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/Q00237_WindsOfChange.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/Q00237_WindsOfChange.java deleted file mode 100644 index 93502b7551..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00237_WindsOfChange/Q00237_WindsOfChange.java +++ /dev/null @@ -1,330 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00237_WindsOfChange; - -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -import quests.Q00238_SuccessFailureOfBusiness.Q00238_SuccessFailureOfBusiness; -import quests.Q00239_WontYouJoinUs.Q00239_WontYouJoinUs; - -/** - * Winds of Change (237) - * @author Joxit - */ -public class Q00237_WindsOfChange extends Quest -{ - // NPCs - private static final int FLAUEN = 30899; - private static final int IASON = 30969; - private static final int ROMAN = 30897; - private static final int MORELYN = 30925; - private static final int HELVETICA = 32641; - private static final int ATHENIA = 32643; - // Items - private static final int FLAUENS_LETTER = 14862; - private static final int DOSKOZER_LETTER = 14863; - private static final int ATHENIA_LETTER = 14864; - private static final int VICINITY_OF_FOS = 14865; - private static final int SUPPORT_CERTIFICATE = 14866; - // Misc - private static final int MIN_LEVEL = 82; - - public Q00237_WindsOfChange() - { - super(237); - addStartNpc(FLAUEN); - addTalkId(FLAUEN, IASON, ROMAN, MORELYN, HELVETICA, ATHENIA); - registerQuestItems(FLAUENS_LETTER, DOSKOZER_LETTER, ATHENIA_LETTER); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState st = getQuestState(player, false); - if (st == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "30899-02.htm":// FLAUEN - case "30899-03.htm": - case "30899-04.htm": - case "30899-05.htm": - case "30969-03.html":// IASON - case "30969-03a.html": - case "30969-03b.html": - case "30969-04.html": - case "30969-08.html": - case "30969-08a.html": - case "30969-08b.html": - case "30969-08c.html": - case "30897-02.html":// ROMAN - case "30925-02.html":// MORELYN - { - htmltext = event; - break; - } - case "30899-06.html": - { - st.startQuest(); - giveItems(player, FLAUENS_LETTER, 1); - htmltext = event; - break; - } - case "30969-02.html": - { - takeItems(player, FLAUENS_LETTER, -1); - htmltext = event; - break; - } - case "30969-05.html": - { - if (st.isCond(1)) - { - st.setCond(2, true); - htmltext = event; - } - break; - } - case "30897-03.html": - { - if (st.isCond(2)) - { - st.setCond(3, true); - htmltext = event; - } - break; - } - case "30925-03.html": - { - if (st.isCond(3)) - { - st.setCond(4, true); - htmltext = event; - } - break; - } - case "30969-09.html": - { - if (st.isCond(4)) - { - giveItems(player, DOSKOZER_LETTER, 1); - st.setCond(5, true); - htmltext = event; - } - break; - } - case "30969-10.html": - { - if (st.isCond(4)) - { - giveItems(player, ATHENIA_LETTER, 1); - st.setCond(6, true); - htmltext = event; - } - break; - } - case "32641-02.html": - { - giveAdena(player, 213876, true); - giveItems(player, VICINITY_OF_FOS, 1); - addExpAndSp(player, 892773, 60012); - st.exitQuest(false, true); - htmltext = event; - break; - } - case "32643-02.html": - { - giveAdena(player, 213876, true); - giveItems(player, SUPPORT_CERTIFICATE, 1); - addExpAndSp(player, 892773, 60012); - st.exitQuest(false, true); - htmltext = event; - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance talker) - { - String htmltext = getNoQuestMsg(talker); - final QuestState st = getQuestState(talker, true); - - switch (npc.getId()) - { - case FLAUEN: - { - switch (st.getState()) - { - case State.COMPLETED: - { - htmltext = "30899-09.html"; - break; - } - case State.CREATED: - { - htmltext = (talker.getLevel() >= MIN_LEVEL) ? "30899-01.htm" : "30899-00.html"; - break; - } - case State.STARTED: - { - switch (st.getCond()) - { - case 1: - case 4: - { - htmltext = "30899-07.html"; - break; - } - case 2: - { - htmltext = "30899-10.html"; - break; - } - case 3: - { - htmltext = "30899-11.html"; - break; - } - case 5: - case 6: - { - htmltext = "30899-08.html"; - break; - } - } - } - } - break; - } - case IASON: - { - if (st.isCompleted()) - { - htmltext = Quest.getNoQuestMsg(talker); - } - else - { - switch (st.getCond()) - { - case 1: - { - htmltext = "30969-01.html"; - break; - } - case 2: - { - htmltext = "30969-06.html"; - break; - } - case 4: - { - htmltext = "30969-07.html"; - break; - } - case 5: - case 6: - { - htmltext = "30969-11.html"; - break; - } - } - } - break; - } - case ROMAN: - { - switch (st.getCond()) - { - case 2: - { - htmltext = "30897-01.html"; - break; - } - case 3: - case 4: - { - htmltext = "30897-04.html"; - break; - } - } - break; - } - case MORELYN: - { - switch (st.getCond()) - { - case 3: - { - htmltext = "30925-01.html"; - break; - } - case 4: - { - htmltext = "30925-04.html"; - break; - } - } - break; - } - case HELVETICA: - { - if (st.isCompleted()) - { - final QuestState q238 = st.getPlayer().getQuestState(Q00238_SuccessFailureOfBusiness.class.getSimpleName()); - htmltext = (hasQuestItems(talker, VICINITY_OF_FOS) || ((q238 != null) && q238.isCompleted())) ? "32641-03.html" : "32641-05.html"; - } - else if (st.isCond(5)) - { - htmltext = "32641-01.html"; - } - else if (st.isCond(6)) - { - htmltext = "32641-04.html"; - } - break; - } - case ATHENIA: - { - if (st.isCompleted()) - { - final QuestState q239 = st.getPlayer().getQuestState(Q00239_WontYouJoinUs.class.getSimpleName()); - htmltext = (hasQuestItems(talker, SUPPORT_CERTIFICATE) || ((q239 != null) && q239.isCompleted())) ? "32643-03.html" : "32643-05.html"; - } - else if (st.isCond(5)) - { - htmltext = "32643-04.html"; - } - else if (st.isCond(6)) - { - htmltext = "32643-01.html"; - } - break; - } - } - return htmltext; - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-00.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-00.html deleted file mode 100644 index 32f98bb819..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-00.html +++ /dev/null @@ -1,4 +0,0 @@ -Dr. Helvetica:
-Did you know anything before coming? There is no task I can give you.
-(Only characters of level 82 or above and who cleared the Winds of Change quest can take on this Quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-01.htm deleted file mode 100644 index 9d53395b6a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Dr. Helvetica:
-Although I gave you the Reed Field Development Research Certificate, I cannot trust you 100%. But if you could do this favor for me, I will be able to trust you completely.
-If you can succesfully carry this out, you not only don't have to bring along the certificate cumbersomely, but I also should be able to put you on the mission given from the base.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-02.htm deleted file mode 100644 index 278ad61e94..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Dr. Helvetica:
-It's very simple.
-If you were not a spy sent by the Purified Ceremony Hall, you can do it easily win a flick of a hand. Of course, you can do it, right?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-03.html deleted file mode 100644 index f5ff187f70..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-03.html +++ /dev/null @@ -1,5 +0,0 @@ -Dr. Helvetica:
-Alright. If you go near the Purified Ceremony Hall, something called Purified Magic Square is raised everywhere.
-This Magic Square is almost like a symbol for that Purified Ceremony Hall. In addition, that Magic Square disillusions Mucrokians who are interfering in our project, and thus makes them fiercely violent.
-Please hurry and get rid of those awful Magic Squares. Bring me 10 broken Magic Square fragments as evidence. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-04.html deleted file mode 100644 index f964494140..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-04.html +++ /dev/null @@ -1,4 +0,0 @@ -Dr. Helvetica:
-What's the matter? You can't do it? Then, I cannot recognize you.
-If you want to receive the trust of our Reed Field Development Research, destroy the Purified Magic Square raised near the Purified Ceremony Hall. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-05.html deleted file mode 100644 index 406b4ef100..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Dr. Helvetica:
-Hm.... You completed the favor I asked you well. But....
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-06.html deleted file mode 100644 index 0225c52715..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-06.html +++ /dev/null @@ -1,5 +0,0 @@ -Dr. Helvetica:
-If i think about it, shouldn't this Magic Square be a lifeless organism even if it may be the symbol of that Purified Ceremony Hall? I think one can destroy something like this to be a spy.
-But if you're really a spy from the Purified Ceremony Hall, you won't be able to destroy the Guardian Spirit of the Magic Square and Evil Spirit close in the Magic Square, which are almost like their companions. Thus, I won't be able to doubt you anymore if you can destroy those and bring 20 broken fragments of the Guardian Spirit.
-Thus, please hurry and leave for the Purified Ceremony Hall! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-07.html deleted file mode 100644 index 1c129de11c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Dr. Helvetica:
-What's the matter? You can't do it? Then, I cannot recognize you.
-If you want to receive the trust from our Reed Field Research, hunt for either the Guardian Spirit of the Magic Square or the Evil Spirit close in the Magic Square and bring 20 broken fragments of the Guardian Spirit as evidence. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-08.html deleted file mode 100644 index 7cdfe247a2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-08.html +++ /dev/null @@ -1,5 +0,0 @@ -Dr. Helvetica:
-You did a great job! Please forgive me if I have doubted you too much.
-The certificate is not needed anymore. You have already successfully completed the missions twice.
-How should I forget you. You are now no different than a member of the Reed Field Development Reseach! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-09.html deleted file mode 100644 index 42ef0e2902..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-09.html +++ /dev/null @@ -1,4 +0,0 @@ -Dr. Helvetica:
-You have already completed this mission very well.
-(This quest has been already completed.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-10.html deleted file mode 100644 index 325014ad53..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/32641-10.html +++ /dev/null @@ -1,3 +0,0 @@ -Dr. Helvetica:
-I've issued the Reed Field Development Research Certificate to everyone who reveived the mission from Iason Heine. I cannot give you any mission if you do not hold the certificate. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/Q00238_SuccessFailureOfBusiness.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/Q00238_SuccessFailureOfBusiness.java deleted file mode 100644 index 8089a95879..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00238_SuccessFailureOfBusiness/Q00238_SuccessFailureOfBusiness.java +++ /dev/null @@ -1,214 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00238_SuccessFailureOfBusiness; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -import quests.Q00237_WindsOfChange.Q00237_WindsOfChange; -import quests.Q00239_WontYouJoinUs.Q00239_WontYouJoinUs; - -/** - * Success/Failure Of Business (238) - * @author Joxit - */ -public class Q00238_SuccessFailureOfBusiness extends Quest -{ - // NPCs - private static final int HELVETICA = 32641; - // Mobs - private static final int BRAZIER_OF_PURITY = 18806; - private static final int EVIL_SPIRITS = 22658; - private static final int GUARDIAN_SPIRITS = 22659; - // Items - private static final int VICINITY_OF_FOS = 14865; - private static final int BROKEN_PIECE_OF_MAGIC_FORCE = 14867; - private static final int GUARDIAN_SPIRIT_FRAGMENT = 14868; - // Misc - private static final int BROKEN_PIECE_OF_MAGIC_FORCE_NEEDED = 10; - private static final int GUARDIAN_SPIRIT_FRAGMENT_NEEDED = 20; - private static final int CHANCE_FOR_FRAGMENT = 80; - private static final int MIN_LEVEL = 82; - - public Q00238_SuccessFailureOfBusiness() - { - super(238); - addStartNpc(HELVETICA); - addTalkId(HELVETICA); - addKillId(BRAZIER_OF_PURITY, EVIL_SPIRITS, GUARDIAN_SPIRITS); - registerQuestItems(BROKEN_PIECE_OF_MAGIC_FORCE, GUARDIAN_SPIRIT_FRAGMENT); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState st = getQuestState(player, false); - if (st == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "32641-02.htm": - { - htmltext = event; - break; - } - case "32641-03.html": - { - st.startQuest(); - htmltext = event; - break; - } - case "32641-06.html": - { - if (st.isCond(2)) - { - st.setCond(3, true); - htmltext = event; - } - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - if (npc.getId() == BRAZIER_OF_PURITY) - { - final L2PcInstance partyMember = getRandomPartyMember(killer, 1); - if (partyMember != null) - { - final QuestState st = getQuestState(partyMember, false); - if (getQuestItemsCount(partyMember, BROKEN_PIECE_OF_MAGIC_FORCE) < BROKEN_PIECE_OF_MAGIC_FORCE_NEEDED) - { - giveItems(partyMember, BROKEN_PIECE_OF_MAGIC_FORCE, 1); - } - if (getQuestItemsCount(partyMember, BROKEN_PIECE_OF_MAGIC_FORCE) == BROKEN_PIECE_OF_MAGIC_FORCE_NEEDED) - { - st.setCond(2, true); - } - else - { - playSound(partyMember, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - } - } - else - { - final L2PcInstance partyMember = getRandomPartyMember(killer, 3); - if ((partyMember != null) && (getRandom(100) < CHANCE_FOR_FRAGMENT)) - { - final QuestState st = getQuestState(partyMember, false); - if (getQuestItemsCount(partyMember, GUARDIAN_SPIRIT_FRAGMENT) < GUARDIAN_SPIRIT_FRAGMENT_NEEDED) - { - giveItems(partyMember, GUARDIAN_SPIRIT_FRAGMENT, 1); - } - if (getQuestItemsCount(partyMember, GUARDIAN_SPIRIT_FRAGMENT) == GUARDIAN_SPIRIT_FRAGMENT_NEEDED) - { - st.setCond(4, true); - } - else - { - playSound(partyMember, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - } - } - return super.onKill(npc, killer, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance talker) - { - String htmltext = getNoQuestMsg(talker); - final QuestState st = getQuestState(talker, true); - - switch (st.getState()) - { - case State.COMPLETED: - { - htmltext = "32641-09.html"; - break; - } - case State.CREATED: - { - final QuestState q237 = st.getPlayer().getQuestState(Q00237_WindsOfChange.class.getSimpleName()); - final QuestState q239 = st.getPlayer().getQuestState(Q00239_WontYouJoinUs.class.getSimpleName()); - if ((q239 != null) && q239.isCompleted()) - { - htmltext = "32641-10.html"; - } - else if ((q237 != null) && q237.isCompleted() && (talker.getLevel() >= MIN_LEVEL) && hasQuestItems(talker, VICINITY_OF_FOS)) - { - htmltext = "32641-01.htm"; - } - else - { - htmltext = "32641-00.html"; - } - break; - } - case State.STARTED: - { - switch (st.getCond()) - { - case 1: - { - htmltext = "32641-04.html"; - break; - } - case 2: - { - if (getQuestItemsCount(talker, BROKEN_PIECE_OF_MAGIC_FORCE) == BROKEN_PIECE_OF_MAGIC_FORCE_NEEDED) - { - htmltext = "32641-05.html"; - takeItems(talker, BROKEN_PIECE_OF_MAGIC_FORCE, -1); - } - break; - } - case 3: - { - htmltext = "32641-07.html"; - break; - } - case 4: - { - if (getQuestItemsCount(talker, GUARDIAN_SPIRIT_FRAGMENT) == GUARDIAN_SPIRIT_FRAGMENT_NEEDED) - { - htmltext = "32641-08.html"; - giveAdena(talker, 283346, true); - takeItems(talker, VICINITY_OF_FOS, 1); - addExpAndSp(talker, 1319736, 103553); - st.exitQuest(false, true); - } - break; - } - } - break; - } - } - return htmltext; - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-00.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-00.html deleted file mode 100644 index 6d3f887740..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-00.html +++ /dev/null @@ -1,4 +0,0 @@ -Priestess Athenia:
-I applaud you for your determination, but I fear you don't have all the necessary skills to undertake this task. Come back and see me once you have a bit more experience under your belt.
-(You must be level 82 or above and have completed the Winds of Change quest in order to take this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-01.htm deleted file mode 100644 index 6d3dfd36b3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Priestess Athenia:
-If you think that by completing some menial task for Iason Heine makes us lifelong pals, then you are sadly mistaken.
-If you are to help us, then we must be assured of your dedication to our cause. If you are willing to prove your trustworthiness to us, then I shall give you a test.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-02.htm deleted file mode 100644 index a70216604b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-02.htm +++ /dev/null @@ -1,4 +0,0 @@ -Priestess Athenia:
-Forgive me for being so harsh. Its just that I don't care for mercenaries who are out to make a quick buck. This cause requires your passion and desire to make a difference in the world around you.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-03.html deleted file mode 100644 index 179ffccc10..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-03.html +++ /dev/null @@ -1,5 +0,0 @@ -Priestess Athenia:
-To the north of us lies the Helvetica Development Base. Surrounding this you'll find Waste Landfill Machines.
-Besides being detrimental to the environment, these machines also have something to do with the Mucrokians. However, at this point, we are unsure about the correlation between the two. All we know is that these machines stand in the way or our purpose. We can't possibly hope to restore this wonderous land until they have been destroyed.
-Please do your part and destroy 10 Waste Landfill Machines. Bring back 10 pieces from these contraptions as proof of the deed. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-04.html deleted file mode 100644 index 2ae37cbf94..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-04.html +++ /dev/null @@ -1,4 +0,0 @@ -Priestess Athenia:
-Have you already forgotten what it is I asked of you?!
-Seek out the Waste Landfill Machines in the north and bring back 10 pieces to prove your worth. Now hurry! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-05.html deleted file mode 100644 index fa04366131..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Priestess Athenia:
-There aren't even 10 Landfill Machine Parts. It's a mistake for you to think that you can get the trust with this.
-In order to earn our trust, finish destroying Waste Landfill Machines near Reed Field Development Base. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-06.html deleted file mode 100644 index 120a98e244..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Priestess Athenia:
-Well done. But I wonder if this task was too easy.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-07.html deleted file mode 100644 index 68c1339bf5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Priestess Athenia:
-Hmm.... you've done better than I thought you would. But I'm not sure if I trust you yet. Do one more thing for me, and my confidence in you will never be in question again.
-Return to the Fields of Silence and defeat the Suppressors and Exterminators that you encounter there. Bring me back 20 Enchanted Golem Fragments and your place amongst us will be secured. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-08.html deleted file mode 100644 index 6882686bbe..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-08.html +++ /dev/null @@ -1,4 +0,0 @@ -Priestess Athenia:
-Didn't we explain about the purpose of this test?
-If you really want our trust, destroy Charging Enchanted Golem and Destroying Enchanted Golem near Reed Field Development Base, and retrieve 20 Enchanted Golem Part. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-09.html deleted file mode 100644 index 0bdd60329e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-09.html +++ /dev/null @@ -1,4 +0,0 @@ -Priestess Athenia:
-There aren't even 20Enchanted Golem Part. We can't trust you with this amount.
-Please destroy Charging Enchanted Golem or Destroying Enchanted Golem near Reed Field Development Base, and retrieve 20 Enchanted Golem Part as evidence. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-10.html deleted file mode 100644 index 071f859396..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-10.html +++ /dev/null @@ -1,4 +0,0 @@ -Priestess Athenia:
-I am impressed. You have faithfully accomplished the tasks I set before you without complaint. You have convinced me of your dedication to this cause.
-We are now comrades. Let us fight side-by-side for the preservation of this land! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-11.html deleted file mode 100644 index 3907554e0b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-11.html +++ /dev/null @@ -1,4 +0,0 @@ -Priestess Athenia:
-We can now trust you. We will be counting on you from now on.
-(This quest has been already completed.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-12.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-12.html deleted file mode 100644 index 5f87abc8b9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/32643-12.html +++ /dev/null @@ -1,3 +0,0 @@ -Priestess Athenia:
-You must have a Certificate of Support in order to take this quest. If you don't have the certificate, then you don't have the right to take this mission. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/Q00239_WontYouJoinUs.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/Q00239_WontYouJoinUs.java deleted file mode 100644 index 200b592da7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00239_WontYouJoinUs/Q00239_WontYouJoinUs.java +++ /dev/null @@ -1,214 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00239_WontYouJoinUs; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -import quests.Q00237_WindsOfChange.Q00237_WindsOfChange; -import quests.Q00238_SuccessFailureOfBusiness.Q00238_SuccessFailureOfBusiness; - -/** - * Won't You Join Us (239) - * @author Joxit - */ -public class Q00239_WontYouJoinUs extends Quest -{ - // NPC - private static final int ATHENIA = 32643; - // Mobs - private static final int WASTE_LANDFILL_MACHINE = 18805; - private static final int SUPPRESSOR = 22656; - private static final int EXTERMINATOR = 22657; - // Items - private static final int SUPPORT_CERTIFICATE = 14866; - private static final int DESTROYED_MACHINE_PIECE = 14869; - private static final int ENCHANTED_GOLEM_FRAGMENT = 14870; - // Misc - private static final int ENCHANTED_GOLEM_FRAGMENT_NEEDED = 20; - private static final int DESTROYED_MACHINE_PIECE_NEEDED = 10; - private static final int CHANCE_FOR_FRAGMENT = 80; - private static final int MIN_LEVEL = 82; - - public Q00239_WontYouJoinUs() - { - super(239); - addStartNpc(ATHENIA); - addTalkId(ATHENIA); - addKillId(WASTE_LANDFILL_MACHINE, SUPPRESSOR, EXTERMINATOR); - registerQuestItems(DESTROYED_MACHINE_PIECE, ENCHANTED_GOLEM_FRAGMENT); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "32643-02.htm": - { - htmltext = event; - break; - } - case "32643-03.html": - { - qs.startQuest(); - htmltext = event; - break; - } - case "32643-07.html": - { - if (qs.isCond(2)) - { - qs.setCond(3, true); - htmltext = event; - } - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - if (npc.getId() == WASTE_LANDFILL_MACHINE) - { - final L2PcInstance partyMember = getRandomPartyMember(killer, 1); - if (partyMember != null) - { - final QuestState qs = getQuestState(partyMember, false); - if (getQuestItemsCount(partyMember, DESTROYED_MACHINE_PIECE) < DESTROYED_MACHINE_PIECE_NEEDED) - { - giveItems(partyMember, DESTROYED_MACHINE_PIECE, 1); - } - if (getQuestItemsCount(partyMember, DESTROYED_MACHINE_PIECE) == DESTROYED_MACHINE_PIECE_NEEDED) - { - qs.setCond(2, true); - } - else - { - playSound(partyMember, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - } - } - else - { - final L2PcInstance partyMember = getRandomPartyMember(killer, 3); - if ((partyMember != null) && (getRandom(100) < CHANCE_FOR_FRAGMENT)) - { - final QuestState qs = getQuestState(partyMember, false); - if (getQuestItemsCount(partyMember, ENCHANTED_GOLEM_FRAGMENT) < ENCHANTED_GOLEM_FRAGMENT_NEEDED) - { - giveItems(partyMember, ENCHANTED_GOLEM_FRAGMENT, 1); - } - if (getQuestItemsCount(partyMember, ENCHANTED_GOLEM_FRAGMENT) == ENCHANTED_GOLEM_FRAGMENT_NEEDED) - { - qs.setCond(4, true); - } - else - { - playSound(partyMember, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - } - } - return super.onKill(npc, killer, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState qs = getQuestState(player, true); - - switch (qs.getState()) - { - case State.COMPLETED: - { - htmltext = "32643-11.html"; - break; - } - case State.CREATED: - { - final QuestState q237 = qs.getPlayer().getQuestState(Q00237_WindsOfChange.class.getSimpleName()); - final QuestState q238 = qs.getPlayer().getQuestState(Q00238_SuccessFailureOfBusiness.class.getSimpleName()); - if ((q238 != null) && q238.isCompleted()) - { - htmltext = "32643-12.html"; - } - else if ((q237 != null) && q237.isCompleted() && (player.getLevel() >= MIN_LEVEL) && hasQuestItems(player, SUPPORT_CERTIFICATE)) - { - htmltext = "32643-01.htm"; - } - else - { - htmltext = "32643-00.html"; - } - break; - } - case State.STARTED: - { - switch (qs.getCond()) - { - case 1: - { - htmltext = hasQuestItems(player, DESTROYED_MACHINE_PIECE) ? "32643-05.html" : "32643-04.html"; - break; - } - case 2: - { - if (getQuestItemsCount(player, DESTROYED_MACHINE_PIECE) == DESTROYED_MACHINE_PIECE_NEEDED) - { - htmltext = "32643-06.html"; - takeItems(player, DESTROYED_MACHINE_PIECE, -1); - } - break; - } - case 3: - { - htmltext = hasQuestItems(player, ENCHANTED_GOLEM_FRAGMENT) ? "32643-08.html" : "32643-09.html"; - break; - } - case 4: - { - if (getQuestItemsCount(player, ENCHANTED_GOLEM_FRAGMENT) == ENCHANTED_GOLEM_FRAGMENT_NEEDED) - { - htmltext = "32643-10.html"; - giveAdena(player, 283346, true); - takeItems(player, SUPPORT_CERTIFICATE, 1); - addExpAndSp(player, 1319736, 103553); - qs.exitQuest(false, true); - } - break; - } - } - break; - } - } - return htmltext; - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-0.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-0.htm deleted file mode 100644 index fd0f16d053..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-0.htm +++ /dev/null @@ -1,4 +0,0 @@ -Bounty Hunter Kintaijin:
-You can't just take harder missions without having proven yourself to me. Don't look around like that. I'm talking to you.
-(Only characters level 81 and above who haved completed the I'm the Only One You Can Trust quest can take this mission) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-1.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-1.htm deleted file mode 100644 index 6bea2b3d1d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-1.htm +++ /dev/null @@ -1,8 +0,0 @@ -Bounty Hunter Kintaijin:
-You adventurers are all alike ... just in it for the fortune and fame. I'll bet you could care less about who I am and what my story is.
-The only things you're probably interested in are what you have to do and what you will receive.
-Am I wrong?
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-10.html deleted file mode 100644 index 3dbdb69746..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-10.html +++ /dev/null @@ -1,5 +0,0 @@ -Bounty Hunter Kintaijin:
-Ah, you've returned!
-Did you bring me the fangs? Hmm, let's see... one, two, three... twenty-four, twenty-five! Excellent!
-You did better than I thought you would. You have earned my admiration and trust. And now you may use my teleport options to you heart's content. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-11.html deleted file mode 100644 index 8b6aee0c47..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-11.html +++ /dev/null @@ -1,5 +0,0 @@ -Bounty Hunter Kintaijin:
-Is your memory that bad? I've already paid you for completing this quest.
-Why don't you move on to my next mission instead of bothering me about things you've already done, eh.
-(You have already completed this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-2.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-2.htm deleted file mode 100644 index 725389c53e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-2.htm +++ /dev/null @@ -1,6 +0,0 @@ -Bounty Hunter Kintaijin:
-There are some things to do to clean up Billy Haari's mess. But this is quite dangerous, that's why I need to ask a person who is reliable. So, prove yourself if you want to get with the mission.
-I'll even give you the authority to teleport to Stakato Nest along with profitable missions if you can prove your skill. With the authority, you can teleport to major area of Stakato Nest anytime.
-Will it be enough for you to take the mission?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-3.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-3.htm deleted file mode 100644 index 827249d3c3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-3.htm +++ /dev/null @@ -1,4 +0,0 @@ -Bounty Hunter Kintaijin:
-Alright, then let's get to the point. I want you to hunt down and destroy the Spiked Stakatos and Cannibalistic Stakatos in the Stakato's Nest. If you manage to bring back 25 Stakato Fangs, I'll reward you well.
-A quick word of advice: don't try to do this on your own. This mission won't be nearly as rough if you find some fellow adventurers to assist you. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-4.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-4.htm deleted file mode 100644 index c7ef41ce8f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-4.htm +++ /dev/null @@ -1,6 +0,0 @@ -Bounty Hunter Kintaijin:
-Your answer does not shock me in the least.
-Let me just tell you from the start that if you complete this quest to my satisfaction, you will then gain access to my teleport options. Do not scoff at this gesture! It could come in very handy for you later.
-Should I go on?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-5.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-5.html deleted file mode 100644 index 8fbd46d68b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-5.html +++ /dev/null @@ -1,6 +0,0 @@ -Bounty Hunter Kintaijin:
-No need to feign interest in my background. Whether you are interested in me or not, I am still going to give you the quest.
-Should I go on?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-6.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-6.html deleted file mode 100644 index 378cdce879..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-6.html +++ /dev/null @@ -1,6 +0,0 @@ -Bounty Hunter Kintaijin:
-Billy Haari. He is the most despicable and loathsome being in existance.
-Extortion, treason, fraud. You name it and he is guilty of it. The village I came from was just a stepping stone for Haari. By the time he disappeared, there wasn't one life in the town he hadn't damaged.
-It was said that he sought refuge here in the Stakato's Nest. And although I've done much searching, I still don't know whether he is dead or alive. What I do know is that, the more monsters you kill, the easier it will be for me to get back in their and search for that criminal.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-7.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-7.html deleted file mode 100644 index aef576bfd0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-7.html +++ /dev/null @@ -1,6 +0,0 @@ -Bounty Hunter Kintaijin:
-As you can see, I'm a bounty hunter. And generally, I do what I do for the money. But this one is personal to me.
-I'm here to bring in Billy Haari for his crimes.
And I almost had him... until he ran into the Stakato's Nest. I'm good at what I do. But this place is a bit too much for even me.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-8.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-8.html deleted file mode 100644 index 3c8a24810a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-8.html +++ /dev/null @@ -1,5 +0,0 @@ -Bounty Hunter Kintaijin:
-Didn't you leave yet?
-Didn't I already tell you that I would trust your skill when you hunt down Stakatos such as Spiked Stakato series, Cannibalistic Stakato series in Stakato Nest and bring back 25 Stakato's Fangs as an evidence?
-The mission shouldn't be too tough. The problem is that the hunting will be overwhelming for yourself alone. Make sure to go with your fellows. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-9.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-9.html deleted file mode 100644 index 941bd8e653..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/32640-9.html +++ /dev/null @@ -1,3 +0,0 @@ -Bounty Hunter Kintaijin:
-You don't have enought Stakato's Fangs. No more or no less than 25 Stakato's Fangsneeds to be brought back or else I won't believe you. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/Q00240_ImTheOnlyOneYouCanTrust.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/Q00240_ImTheOnlyOneYouCanTrust.java deleted file mode 100644 index 9043339b2a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00240_ImTheOnlyOneYouCanTrust/Q00240_ImTheOnlyOneYouCanTrust.java +++ /dev/null @@ -1,150 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00240_ImTheOnlyOneYouCanTrust; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * I'm the Only One You Can Trust (240) - * @author malyelfik - */ -public class Q00240_ImTheOnlyOneYouCanTrust extends Quest -{ - // NPC - private static final int KINTAIJIN = 32640; - // Monster - private static final int[] MOBS = - { - 22617, - 22618, - 22619, - 22620, - 22621, - 22622, - 22623, - 22624, - 22625, - 22626, - 22627, - 22628, - 22629, - 22630, - 22631, - 22632, - 22633 - }; - // Item - private static final int STAKATO_FANG = 14879; - - public Q00240_ImTheOnlyOneYouCanTrust() - { - super(240); - addStartNpc(KINTAIJIN); - addTalkId(KINTAIJIN); - addKillId(MOBS); - registerQuestItems(STAKATO_FANG); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return getNoQuestMsg(player); - } - - if (event.equalsIgnoreCase("32640-3.htm")) - { - qs.startQuest(); - } - return event; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) - { - final L2PcInstance partyMember = getRandomPartyMember(player, 1); - if (partyMember == null) - { - return super.onKill(npc, player, isSummon); - } - - final QuestState qs = getQuestState(partyMember, false); - giveItems(partyMember, STAKATO_FANG, 1); - if (getQuestItemsCount(partyMember, STAKATO_FANG) >= 25) - { - qs.setCond(2, true); - } - else - { - playSound(partyMember, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - return super.onKill(npc, player, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState qs = getQuestState(player, true); - - switch (qs.getState()) - { - case State.CREATED: - { - htmltext = (player.getLevel() >= 81) ? "32640-1.htm" : "32640-0.htm"; - break; - } - case State.STARTED: - { - switch (qs.getCond()) - { - case 1: - { - htmltext = !hasQuestItems(player, STAKATO_FANG) ? "32640-8.html" : "32640-9.html"; - break; - } - case 2: - { - if (getQuestItemsCount(player, STAKATO_FANG) >= 25) - { - giveAdena(player, 147200, true); - takeItems(player, STAKATO_FANG, -1); - addExpAndSp(player, 589542, 36800); - qs.exitQuest(false, true); - htmltext = "32640-10.html"; - } - break; - } - } - break; - } - case State.COMPLETED: - { - htmltext = "32640-11.html"; - break; - } - } - return htmltext; - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-01.htm deleted file mode 100644 index 97e6d4dc7d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Priest Greymore:
-You again! I was just thinking until you started talking to me. What is it?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-02.htm deleted file mode 100644 index 77334f86ff..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Priest Greymore:
-Yes, fool, leave me to my craft... wait. Wait! Don't go yet, something just occurred to me.
-Brother Dominic assigned me a mission and I think you might be able to help me with this one. You see, I have a dream. In this dream, I am not stuck in this dreary Monastery surrounded by these dreary humorless monks. You can help make this dream a reality.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-03.html deleted file mode 100644 index 4245c9fe9b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Greymore:
-You! Can't you see I'm thinking? Thinking of these idiot monks... thinking of the unspeakable horrors that will befall them before I'm done here.
-(Only characters level 82 and above who have completed Secret Mission may take this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-04.html deleted file mode 100644 index fc1ca7f455..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-04.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Greymore:
-Finally, we'll be able to cleanse this place of these filthy monks. I can see it in your eyes, you want it as much as I do. And I can tell you, I REALLY do. These fools will know fear before the day is over. You must defeat them for me.
-All monks in the monastery, I am not picky about who. Seeker Solina, Savior Solina, Ascetic Solina, Divinity Judge, Divinity Manager, Divinity Worshipper, Divinity Protector, Divinity Fighter, Divinity Magus... any of them. Defeat as many as you can. As proof... hmm... bring me their Monk's rags. Yes, that will be perfect. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-05.html deleted file mode 100644 index a55a03f63a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Greymore:
-Alright, so how goes the hunt?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-06.html deleted file mode 100644 index 3590e7bc13..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Greymore:
-Then you need proof!
-You have shown the uncanny ability to startle me but I can read a lie in any man's eyes, especially now that I've been surrounded by these phony monks. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-07.html deleted file mode 100644 index 7baaae4e43..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-07.html +++ /dev/null @@ -1,3 +0,0 @@ -Priest Greymore:
-This is good, but I will only reward you once I have at least 100 of these monks' rags in front of me. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-08.html deleted file mode 100644 index 5b2e57a58e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-08.html +++ /dev/null @@ -1,9 +0,0 @@ -Priest Greymore:
-Ah... now doesn't that feel good? With every monk erased from this world, it feels a little better. Sometimes I don't even see the monk fall, I just get that feeling that the world is a better place and I know why.
-Anyway, how did we fare?
- - - - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-09.html deleted file mode 100644 index af5c9dd863..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-09.html +++ /dev/null @@ -1,6 +0,0 @@ -Priest Greymore:
-Nicely done, creature. Take care in your travels. What will you do now?
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-10.html deleted file mode 100644 index 79eee7e636..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-10.html +++ /dev/null @@ -1,3 +0,0 @@ -Priest Greymore:
-Hm... looks like you don't have that many rags. Pity, I wish you did. Very sincerely. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-12.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-12.html deleted file mode 100644 index 6d4dd42f97..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-12.html +++ /dev/null @@ -1,6 +0,0 @@ -Priest Greymore:
-Ahh... but you still have some of these monk's rags. If you quit now, we'll have to throw them away.
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-13.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-13.html deleted file mode 100644 index 4ae410d9be..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/32757-13.html +++ /dev/null @@ -1,3 +0,0 @@ -Priest Greymore:
-Ah well, felt good while it lasted. Good bye then. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/Q00270_TheOneWhoEndsSilence.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/Q00270_TheOneWhoEndsSilence.java deleted file mode 100644 index b1a74d1d5c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00270_TheOneWhoEndsSilence/Q00270_TheOneWhoEndsSilence.java +++ /dev/null @@ -1,458 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00270_TheOneWhoEndsSilence; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; -import com.l2jmobius.gameserver.util.Util; - -import quests.Q10288_SecretMission.Q10288_SecretMission; - -/** - * The One Who Ends Silence (270) - * @author Zoey76 - */ -public class Q00270_TheOneWhoEndsSilence extends Quest -{ - // NPC - private static final int FAKE_GREYMORE = 32757; - // Monsters - private static final int SEEKER_SOLINA = 22790; - private static final int SAVIOR_SOLINA = 22791; - private static final int ASCETIC_SOLINA = 22793; - private static final int DIVINITY_JUDGE = 22794; - private static final int DIVINITY_MANAGER = 22795; - private static final int DIVINITY_SUPERVISOR = 22796; - private static final int DIVINITY_WORSHIPPER = 22797; - private static final int DIVINITY_PROTECTOR = 22798; - private static final int DIVINITY_FIGHTER = 22799; - private static final int DIVINITY_MAGUS = 22800; - // Items - private static final int TATTERED_MONK_CLOTHES = 15526; - // Misc - private static final int MIN_LEVEL = 82; - - public Q00270_TheOneWhoEndsSilence() - { - super(270); - addStartNpc(FAKE_GREYMORE); - addTalkId(FAKE_GREYMORE); - addKillId(SEEKER_SOLINA, SAVIOR_SOLINA, ASCETIC_SOLINA, DIVINITY_JUDGE, DIVINITY_MANAGER, DIVINITY_SUPERVISOR, DIVINITY_WORSHIPPER, DIVINITY_PROTECTOR, DIVINITY_FIGHTER, DIVINITY_MAGUS); - registerQuestItems(TATTERED_MONK_CLOTHES); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - - String htmltext = null; - final long ragsCount = getQuestItemsCount(player, TATTERED_MONK_CLOTHES); - switch (event) - { - case "32757-02.htm": - { - final QuestState qst = player.getQuestState(Q10288_SecretMission.class.getSimpleName()); - if ((player.getLevel() >= MIN_LEVEL) && (qst != null) && qst.isCompleted()) - { - htmltext = event; - } - break; - } - case "32757-04.html": - { - final QuestState qst = player.getQuestState(Q10288_SecretMission.class.getSimpleName()); - if ((player.getLevel() >= MIN_LEVEL) && (qst != null) && qst.isCompleted()) - { - qs.startQuest(); - htmltext = event; - } - break; - } - case "32757-08.html": - { - if (qs.isCond(1)) - { - if (ragsCount == 0) - { - htmltext = "32757-06.html"; - } - else if (ragsCount < 100) - { - htmltext = "32757-07.html"; - } - else - { - htmltext = event; - } - } - break; - } - case "rags100": - { - if (ragsCount >= 100) - { - if (getRandom(10) < 5) - { - if (getRandom(1000) < 438) - { - giveItems(player, 10373 + getRandom(9), 1); - } - else - { - giveItems(player, 10397 + getRandom(9), 1); - } - } - else - { - rewardScroll(player, 1); - } - - takeItems(player, TATTERED_MONK_CLOTHES, 100); - playSound(player, QuestSound.ITEMSOUND_QUEST_MIDDLE); - htmltext = "32757-09.html"; - } - else - { - htmltext = "32757-10.html"; - } - break; - } - case "rags200": - { - if (ragsCount >= 200) - { - if (getRandom(1000) < 549) - { - giveItems(player, 10373 + getRandom(9), 1); - } - else - { - giveItems(player, 10397 + getRandom(9), 1); - } - rewardScroll(player, 2); - - takeItems(player, TATTERED_MONK_CLOTHES, 200); - playSound(player, QuestSound.ITEMSOUND_QUEST_MIDDLE); - htmltext = "32757-09.html"; - } - else - { - htmltext = "32757-10.html"; - } - break; - } - case "rags300": - { - if (ragsCount >= 300) - { - giveItems(player, 10373 + getRandom(9), 1); - giveItems(player, 10397 + getRandom(9), 1); - rewardScroll(player, 3); - - takeItems(player, TATTERED_MONK_CLOTHES, 300); - playSound(player, QuestSound.ITEMSOUND_QUEST_MIDDLE); - htmltext = "32757-09.html"; - } - else - { - htmltext = "32757-10.html"; - } - break; - } - case "rags400": - { - if (ragsCount >= 400) - { - giveItems(player, 10373 + getRandom(9), 1); - giveItems(player, 10397 + getRandom(9), 1); - rewardScroll(player, 3); - - if (getRandom(10) < 5) - { - if (getRandom(1000) < 438) - { - giveItems(player, 10373 + getRandom(9), 1); - } - else - { - giveItems(player, 10397 + getRandom(9), 1); - } - } - else - { - rewardScroll(player, 1); - } - - takeItems(player, TATTERED_MONK_CLOTHES, 400); - playSound(player, QuestSound.ITEMSOUND_QUEST_MIDDLE); - htmltext = "32757-09.html"; - } - else - { - htmltext = "32757-10.html"; - } - break; - } - case "rags500": - { - if (ragsCount >= 500) - { - giveItems(player, 10373 + getRandom(9), 1); - giveItems(player, 10397 + getRandom(9), 1); - rewardScroll(player, 3); - - if (getRandom(1000) < 549) - { - giveItems(player, 10373 + getRandom(9), 1); - } - else - { - giveItems(player, 10397 + getRandom(9), 1); - } - - rewardScroll(player, 2); - takeItems(player, TATTERED_MONK_CLOTHES, 500); - playSound(player, QuestSound.ITEMSOUND_QUEST_MIDDLE); - htmltext = "32757-09.html"; - } - else - { - htmltext = "32757-10.html"; - } - break; - } - case "exit1": - { - if (qs.isCond(1)) - { - if (ragsCount >= 1) - { - htmltext = "32757-12.html"; - } - else - { - qs.exitQuest(true, true); - htmltext = "32757-13.html"; - } - } - break; - } - case "exit2": - { - if (qs.isCond(1)) - { - qs.exitQuest(true, true); - htmltext = "32757-13.html"; - } - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - switch (npc.getId()) - { - case SEEKER_SOLINA: - { - giveItem(getRandomPartyMember(killer, 1), npc, 57, false); - break; - } - case SAVIOR_SOLINA: - { - giveItem(getRandomPartyMember(killer, 1), npc, 55, false); - break; - } - case ASCETIC_SOLINA: - { - giveItem(getRandomPartyMember(killer, 1), npc, 59, false); - break; - } - case DIVINITY_JUDGE: - { - giveItem(getRandomPartyMember(killer, 1), npc, 698, false); - break; - } - case DIVINITY_MANAGER: - { - giveItem(getRandomPartyMember(killer, 1), npc, 735, false); - break; - } - case DIVINITY_SUPERVISOR: - { - giveItem(getRandomPartyMember(killer, 1), npc, 903, false); - break; - } - case DIVINITY_WORSHIPPER: - { - giveItem(getRandomPartyMember(killer, 1), npc, 811, false); - break; - } - case DIVINITY_PROTECTOR: - { - giveItem(getRandomPartyMember(killer, 1), npc, 884, true); - break; - } - case DIVINITY_FIGHTER: - { - giveItem(getRandomPartyMember(killer, 1), npc, 893, true); - break; - } - case DIVINITY_MAGUS: - { - giveItem(getRandomPartyMember(killer, 1), npc, 953, true); - break; - } - } - return super.onKill(npc, killer, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - switch (qs.getState()) - { - case State.CREATED: - { - final QuestState qst = player.getQuestState(Q10288_SecretMission.class.getSimpleName()); - htmltext = ((player.getLevel() >= MIN_LEVEL) && (qst != null) && qst.isCompleted()) ? "32757-01.htm" : "32757-03.html"; - break; - } - case State.STARTED: - { - if (qs.isCond(1)) - { - htmltext = "32757-05.html"; - } - break; - } - } - return htmltext; - } - - /** - * Wrapper for this repetitive reward. - * @param player the player. - * @param type the type. - */ - private void rewardScroll(L2PcInstance player, int type) - { - int chance; - int scrollId = 5593; - switch (type) - { - case 1: - { - chance = getRandom(100); - if (chance < 1) - { - scrollId = 5593; - } - else if (chance < 28) - { - scrollId = 5594; - } - else if (chance < 61) - { - scrollId = 5595; - } - else - { - scrollId = 9898; - } - break; - } - case 2: - { - chance = getRandom(100); - if (chance < 20) - { - scrollId = 5593; - } - else if (chance < 40) - { - scrollId = 5594; - } - else if (chance < 70) - { - scrollId = 5595; - } - else - { - scrollId = 9898; - } - break; - } - case 3: - { - chance = getRandom(1000); - if (chance < 242) - { - scrollId = 5593; - } - else if (chance < 486) - { - scrollId = 5594; - } - else if (chance < 742) - { - scrollId = 5595; - } - else - { - scrollId = 9898; - } - break; - } - } - giveItems(player, scrollId, 1); - } - - /** - * Gives an item to one random party member with the proper condition, for the given parameters. - * @param player the random player to reward - * @param npc the killed npc - * @param chance the reward chance - * @param atLeastOne if {@code true} it will reward two items if the chance is meet and one if the chance is not meet, if {@code false} if the chance is not meet doesn't reward, otherwise reward one item - */ - private static void giveItem(L2PcInstance player, L2Npc npc, int chance, boolean atLeastOne) - { - if ((player != null) && Util.checkIfInRange(1500, npc, player, false)) - { - final int count = ((getRandom(1000) < chance) ? 1 : 0) + (atLeastOne ? 1 : 0); - if (count > 0) - { - giveItems(player, TATTERED_MONK_CLOTHES, count); - playSound(player, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - } - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-01.htm deleted file mode 100644 index 7f624315f6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Beast Herder Tunatun:
-There's nothing like a hard day's work that puts a man fast asleep at night. That is what I used to say. But I haven't been sleeping to well these past weeks.
-I worry about the future of this farm ever since those Sel Mahum started showing up.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-02.htm deleted file mode 100644 index 52e7d77bb5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Beast Herder Tunatun:
-Everyone knows that the best meat can only be found from the animals on this land. I've done all I can to keep them safe, but these Sel Mahum Farm Ravagers and Farm Bandits are starting to be too much for me. In fact, I would be overwhelmed if they all attacked at once. There wouldn't be anything I could do to protect my life's work.
-When everything a man knows is threatened... how can he find his peace?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-03.html deleted file mode 100644 index b596527490..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Beast Herder Tunatun:
-No. Never mind. I need a strong adventurer.
-(Only characters of level 82 and above are permitted to take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-04.htm deleted file mode 100644 index e81f91251e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-04.htm +++ /dev/null @@ -1,6 +0,0 @@ -Beast Herder Tunatun:
-Mighty kind of you. Tell you what... I'll pay you for killing those Sel Mahum Farm Ravagers or Farm Bandits on my farm.
-I wish I could take your word for it, but I'm gonna need to see some proof before I pay you. Collect 300 Sel Mahum Manes and bring them back as proof.
-A word of warning though... some Sel Mahum can't grow Manes, so it might take you some time before you find one that does.
-Best of luck, stranger. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-05.html deleted file mode 100644 index 607cc9887b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-05.html +++ /dev/null @@ -1,5 +0,0 @@ -Beast Herder Tunatun:
-How goes it, stranger? Looks like you have a fine collection of Sel Mahum Manes going there.
-I'm a man of my word and I'll pay you rightly for yer work.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-06.html deleted file mode 100644 index d3af73717d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-06.html +++ /dev/null @@ -1,3 +0,0 @@ -Beast Herder Tunatun:
-That's it? Uhm... I was hoping for more.. Can you do better? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-07.html deleted file mode 100644 index dae5c88b93..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/31537-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Beast Herder Tunatun:
-I thank ya, stranger. Your help has definitely made a difference in my life. I even got a good night's sleep while you were helping out.
-If you are ever in need of some work, I am always willing pay until the very last one of those things are dead. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/Q00278_HomeSecurity.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/Q00278_HomeSecurity.java deleted file mode 100644 index f8fe7565d1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00278_HomeSecurity/Q00278_HomeSecurity.java +++ /dev/null @@ -1,193 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00278_HomeSecurity; - -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; - -/** - * Home Security (278) - * @author malyelfik - */ -public class Q00278_HomeSecurity extends Quest -{ - // NPC - private static final int TUNATUN = 31537; - private static final int[] MONSTER = - { - 18905, - 18906, - 18907 - }; - // Item - private static final int SEL_MAHUM_MANE = 15531; - // Misc - private static final int SEL_MAHUM_MANE_COUNT = 300; - - public Q00278_HomeSecurity() - { - super(278); - addStartNpc(TUNATUN); - addTalkId(TUNATUN); - addKillId(MONSTER); - registerQuestItems(SEL_MAHUM_MANE); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - String htmltext = event; - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return htmltext; - } - - switch (event) - { - case "31537-02.htm": - { - htmltext = (player.getLevel() >= 82) ? "31537-02.htm" : "31537-03.html"; - break; - } - case "31537-04.htm": - { - qs.startQuest(); - break; - } - case "31537-07.html": - { - final int i0 = getRandom(100); - - if (i0 < 10) - { - giveItems(player, 960, 1); - } - else if (i0 < 19) - { - giveItems(player, 960, 2); - } - else if (i0 < 27) - { - giveItems(player, 960, 3); - } - else if (i0 < 34) - { - giveItems(player, 960, 4); - } - else if (i0 < 40) - { - giveItems(player, 960, 5); - } - else if (i0 < 45) - { - giveItems(player, 960, 6); - } - else if (i0 < 49) - { - giveItems(player, 960, 7); - } - else if (i0 < 52) - { - giveItems(player, 960, 8); - } - else if (i0 < 54) - { - giveItems(player, 960, 9); - } - else if (i0 < 55) - { - giveItems(player, 960, 10); - } - else if (i0 < 75) - { - giveItems(player, 9553, 1); - } - else if (i0 < 90) - { - giveItems(player, 9553, 2); - } - else - { - giveItems(player, 959, 1); - } - - qs.exitQuest(true, true); - htmltext = "31537-07.html"; - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) - { - final QuestState qs = getRandomPartyMemberState(player, 1, 3, npc); - if (qs != null) - { - switch (npc.getId()) - { - case 18905: // Farm Ravager (Crazy) - { - final int itemCount = (getRandom(1000) < 486) ? getRandom(6) + 1 : getRandom(5) + 1; - if (giveItemRandomly(qs.getPlayer(), npc, SEL_MAHUM_MANE, itemCount, SEL_MAHUM_MANE_COUNT, 1.0, true)) - { - qs.setCond(2, true); - } - break; - } - case 18906: // Farm Bandit - case 18907: // Beast Devourer - { - if (giveItemRandomly(qs.getPlayer(), npc, SEL_MAHUM_MANE, 1, SEL_MAHUM_MANE_COUNT, 0.85, true)) - { - qs.setCond(2, true); - } - break; - } - } - } - return null; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState qs = getQuestState(player, true); - - if (qs.isCreated()) - { - htmltext = "31537-01.htm"; - } - else if (qs.isStarted()) - { - if (qs.isCond(1) || (getQuestItemsCount(player, SEL_MAHUM_MANE) < SEL_MAHUM_MANE_COUNT)) - { - htmltext = "31537-06.html"; - } - else if (qs.isCond(2) && (getQuestItemsCount(player, SEL_MAHUM_MANE) >= SEL_MAHUM_MANE_COUNT)) - { - htmltext = "31537-05.html"; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-00.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-00.htm deleted file mode 100644 index 7c86511982..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-00.htm +++ /dev/null @@ -1,4 +0,0 @@ -Bounty Hunter Kintaijin:
-This mission is far too tough for the likes of you. You must take my other mission first before you can even think about taking this one.
-(Only characters level 81 and above who have completed the quest I'm the Only One You Can Trust can take this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-01.htm deleted file mode 100644 index 590503fbda..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Bounty Hunter Kintaijin:
-Amongst the collection of Stakato Fangs you brought, I found a Dirty Bead.
-You must have accidentally picked it up while you were collecting the fangs.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-02.htm deleted file mode 100644 index 3f08c4e0e0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-02.htm +++ /dev/null @@ -1,4 +0,0 @@ -Bounty Hunter Kintaijin:
-Ahh, but this is no ordinary bead. This bead belonged to Billy Haari. I told you that story, didn't I? I came here to track down Haari for his crimes.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-03.htm deleted file mode 100644 index 2d6178a775..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-03.htm +++ /dev/null @@ -1,7 +0,0 @@ -Bounty Hunter Kintaijin:
-My examination of the bead has led me to two conclusions.
-One is that the Dirty Bead had traces of Haari's blood on it, which leads me to believe he is dead. The second thing I concluded was that this bead is part of a necklace ... an artifact from my village, actually ... that Haari had stolen before disappearing.
-While I would have preferred to bring in Haari himself, if I were able to retrieve the pieces of this necklace, I might be able to restore a piece of my village's history.
-Would you help me find all the pieces?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-04.htm deleted file mode 100644 index 2e78745b13..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-04.htm +++ /dev/null @@ -1,5 +0,0 @@ -Bounty Hunter Kintaijin:
-Dirty Beads can be found on the corpses of the Spiked Stakato and Cannibal Stakato creatures found inside the Stakato's Nest. I'll need you to find 500 of these beads. Bring them back to me, and I will reward you for your hard work.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-05.html deleted file mode 100644 index e8836e04cd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-05.html +++ /dev/null @@ -1,3 +0,0 @@ -Bounty Hunter Kintaijin:
-Alright, take care. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-06.html deleted file mode 100644 index 08d1e95aaf..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-06.html +++ /dev/null @@ -1,5 +0,0 @@ -Bounty Hunter Kintaijin:
-I know what I ask is no small task. So the rewards you stand to gain are no joke either. First, I will give you a Multi-colored Jewel. This jewel will allow you to return to the entrance of the Stakato's Nest from just about anywhere in the world.
-Second, I'll give you one application of Growth AcceleratorThe Growth Accelerator is a secret compound whose existance is only known by a few. It is said that this chemical has the ability to incubate cocoons found in the Stakato's Nest.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-07.html deleted file mode 100644 index bbd4c09625..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Bounty Hunter Kintaijin:
-When used on a Bizarre Cocoon, the Growth Accelerator will spawn a Cannibalistic Stakato Chief. And killing a chief will give you a Stakato Cocoon. And as we all know, Stakato Cocoona can hold different kinds of goodies - from Forgotten Scrolls to Icarus recipes! Although sometimes you are bound to get one that contains nothing at all.
-But heed this advice - do not try to take down one of these Cannibalistic Stakato Chiefs by yourself. They are very strong and very deadly. And it will take a party of your friends or clanmates to defeat these termagants. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-08.html deleted file mode 100644 index 2c0a409216..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-08.html +++ /dev/null @@ -1,6 +0,0 @@ -Bounty Hunter Kintaijin:
-Dirty Beads can be found on the corpses of the Spiked Stakato and Cannibal Stakato creatures found inside the Stakato's Nest. I'll need you to find 500 of these beads. Bring them back to me, and I will reward you for your hard work.
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-09.html deleted file mode 100644 index 16860193af..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-09.html +++ /dev/null @@ -1,3 +0,0 @@ -Bounty Hunter Kintaijin:
-It's not enough. No more or no less of 500 Dirty Bead are needed. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-10.html deleted file mode 100644 index 7dd614a3f8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-10.html +++ /dev/null @@ -1,9 +0,0 @@ -Bounty Hunter Kintaijin:
-Well done. You brought the correct numbers? Let me confirm it.
-Hmm, they are surely 500 Dirty Bead. Here, take this Growth Accelerator.
-And let me give you some Multi-Colored Bright Ore. You can come near me from anywhere when you use it.
-...Do you have any other business?
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-quit.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-quit.html deleted file mode 100644 index 0c0e9966aa..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/32640-quit.html +++ /dev/null @@ -1,3 +0,0 @@ -Bounty Hunter Kintaijin:
-Hmm, is that so? Alright, that's up to you. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/Q00310_OnlyWhatRemains.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/Q00310_OnlyWhatRemains.java deleted file mode 100644 index 9528435120..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00310_OnlyWhatRemains/Q00310_OnlyWhatRemains.java +++ /dev/null @@ -1,169 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00310_OnlyWhatRemains; - -import java.util.HashMap; -import java.util.Map; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -import quests.Q00240_ImTheOnlyOneYouCanTrust.Q00240_ImTheOnlyOneYouCanTrust; - -/** - * Only What Remains (310) - * @author malyelfik - */ -public class Q00310_OnlyWhatRemains extends Quest -{ - // NPC - private static final int KINTAIJIN = 32640; - // Items - private static final int GROW_ACCELERATOR = 14832; - private static final int MULTI_COLORED_JEWEL = 14835; - private static final int DIRTY_BEAD = 14880; - // Monsters - private static final Map MOBS = new HashMap<>(); - static - { - MOBS.put(22617, 646); - MOBS.put(22618, 646); - MOBS.put(22619, 646); - MOBS.put(22620, 666); - MOBS.put(22621, 630); - MOBS.put(22622, 940); - MOBS.put(22623, 622); - MOBS.put(22624, 630); - MOBS.put(22625, 678); - MOBS.put(22626, 940); - MOBS.put(22627, 646); - MOBS.put(22628, 646); - MOBS.put(22629, 646); - MOBS.put(22630, 638); - MOBS.put(22631, 880); - MOBS.put(22632, 722); - MOBS.put(22633, 638); - } - - public Q00310_OnlyWhatRemains() - { - super(310); - addStartNpc(KINTAIJIN); - addTalkId(KINTAIJIN); - addKillId(MOBS.keySet()); - registerQuestItems(DIRTY_BEAD); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - - if (qs == null) - { - return null; - } - - String htmltext = event; - switch (event) - { - case "32640-04.htm": - { - qs.startQuest(); - break; - } - case "32640-quit.html": - { - qs.exitQuest(true, true); - break; - } - case "32640-02.htm": - case "32640-03.htm": - case "32640-05.html": - case "32640-06.html": - case "32640-07.html": - { - break; - } - default: - { - htmltext = null; - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) - { - final L2PcInstance partyMember = getRandomPartyMember(player, 1); - - if (partyMember == null) - { - return super.onKill(npc, player, isSummon); - } - - if (getRandom(1000) < MOBS.get(npc.getId())) - { - giveItems(partyMember, DIRTY_BEAD, 1); - playSound(partyMember, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - return super.onKill(npc, player, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState qs = getQuestState(player, true); - - switch (qs.getState()) - { - case State.CREATED: - { - final QuestState prev = player.getQuestState(Q00240_ImTheOnlyOneYouCanTrust.class.getSimpleName()); - htmltext = ((player.getLevel() >= 81) && (prev != null) && prev.isCompleted()) ? "32640-01.htm" : "32640-00.htm"; - break; - } - case State.STARTED: - { - if (!hasQuestItems(player, DIRTY_BEAD)) - { - htmltext = "32640-08.html"; - } - else if (getQuestItemsCount(player, DIRTY_BEAD) < 500) - { - htmltext = "32640-09.html"; - } - else - { - takeItems(player, DIRTY_BEAD, 500); - giveItems(player, GROW_ACCELERATOR, 1); - giveItems(player, MULTI_COLORED_JEWEL, 1); - htmltext = "32640-10.html"; - } - break; - } - } - return htmltext; - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-01.htm deleted file mode 100644 index 750d40c8f2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Treasure Hunter Gumiel:
-Ah, so my eyes do not deceive me! You are real, aren't you? And you don't look like one of those bloody monks, thank goodness. I've got a story to tell, if you'd listen. Thing is... I'm in disguise. I snuck into this Monastery because I heard there was a great treasure here but I'm so lost I was starting to fear I'd end up hunkered down in a corner and eventually end up a bag of bones for all time.
-You look like you still have your wits about you, you might be able to help me out. Could you show me the way? Please?!
- - diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-01a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-01a.html deleted file mode 100644 index b42701f22d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-01a.html +++ /dev/null @@ -1,3 +0,0 @@ -Treasure hunter Gumiel:
-Well this is a strange problem to have. Someone is actually helping me out of this labyrinth right now. And I don't know if they'll like me talking to anyone, so please don't. - diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-02.html deleted file mode 100644 index 619b533ecf..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Treasure Hunter Gumiel:
-Hm... could it be over here? I think I saw that column before. In fact I'm sure of it. Blast, how do I tell the difference between a real wall and a fake wall!
-Oh, sorry, you have that look of someone who needs help but I really can't. I mean, don't I look pretty busy right now? Sheez.
-(This is a quest that can be taken once a day. It resets at 6:30am.) - diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-03.html deleted file mode 100644 index e010bb79ad..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Treasure Hunter Gumiel:
-Guh, OK, I know I've been in this room before, because I've seen that ugly painting and smelled that stinky monk. Seriously, that one monk stinks so bad, he's become a landmark in this place for a treasure hunter like me. They say to follow your nose, but I never really took that saying seriously...
-(Only characters level 82 and above can take this quest.) - diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-04.html deleted file mode 100644 index 318e2e57ce..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-04.html +++ /dev/null @@ -1,5 +0,0 @@ -Treasure Hunter Gumiel:
-Oh thank you so much! I don't care which exit, west or east, just as long as I get out of here.
- - - diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-05.html deleted file mode 100644 index 08f2c106f9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-05.html +++ /dev/null @@ -1,5 +0,0 @@ -Treasure Hunter Gumiel:
-Seriously, I don't care which exit, I just want out of here. I NEED out of here. PLEASE.
- - - diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-06.html deleted file mode 100644 index ff4e4742de..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-06.html +++ /dev/null @@ -1,3 +0,0 @@ -Treasure Hunter Gumiel:
-Phew alright! Let's get going! - diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-07.html deleted file mode 100644 index e12be2d166..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-07.html +++ /dev/null @@ -1,3 +0,0 @@ -Treasure Hunter Gumiel:
-Alright alright, I'll wait. But just for you! - diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-08.html deleted file mode 100644 index da4e07c972..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-08.html +++ /dev/null @@ -1,3 +0,0 @@ -Treasure Hunter Gumiel:
-Oh man... how much longer 'til we get there? I'm getting seriously thirsty. Maybe we should ask for directions? Ugh, I hope there's a bathroom around here somewhere. - diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-09.html deleted file mode 100644 index 1584a7e648..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759-09.html +++ /dev/null @@ -1,3 +0,0 @@ -Treasure Hunter Gumiel:
-Wow, great! We finally got out of that place! If I never see a monk again, it'll be too soon. Following rumors can be dangerous, eh? Well anyway, I did find SOMETHING that seems valuable, but since you helped me out of there, I think you deserve it. - diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759.html deleted file mode 100644 index a9446717df..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/32759.html +++ /dev/null @@ -1,5 +0,0 @@ -Treasure Hunter Gumiel
-Oh crap... I think I took a wrong turn back there... ugh, no treasure's worth this! And these monks, they're all so terribly weird. I'm sure you've had problems here too. Without food and rest, you're liable to pass out.
-Maybe, I should leave this place... anyway, what brought you here?
- - diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/Q00457_LostAndFound.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/Q00457_LostAndFound.java deleted file mode 100644 index b1531f5a1f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00457_LostAndFound/Q00457_LostAndFound.java +++ /dev/null @@ -1,245 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00457_LostAndFound; - -import java.util.Set; - -import com.l2jmobius.gameserver.ai.CtrlIntention; -import com.l2jmobius.gameserver.datatables.SpawnTable; -import com.l2jmobius.gameserver.enums.ChatType; -import com.l2jmobius.gameserver.enums.QuestType; -import com.l2jmobius.gameserver.model.L2Spawn; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; -import com.l2jmobius.gameserver.network.NpcStringId; -import com.l2jmobius.gameserver.network.serverpackets.CreatureSay; -import com.l2jmobius.gameserver.network.serverpackets.NpcSay; - -/** - * Lost and Found (457) - * @author nonom - */ -public final class Q00457_LostAndFound extends Quest -{ - // NPCs - private static final int GUMIEL = 32759; - private static final int ESCORT_CHECKER = 32764; - private static final int[] SOLINA_CLAN = - { - 22789, // Guide Solina - 22790, // Seeker Solina - 22791, // Savior Solina - 22793, // Ascetic Solina - }; - // Misc - private static final int PACKAGED_BOOK = 15716; - private static final int CHANCE_SPAWN = 1; // 1% - private static final int MIN_LV = 82; - private static Set _escortCheckers; - - public Q00457_LostAndFound() - { - super(457); - addStartNpc(GUMIEL); - addSpawnId(ESCORT_CHECKER); - addFirstTalkId(GUMIEL); - addTalkId(GUMIEL); - addKillId(SOLINA_CLAN); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return getNoQuestMsg(player); - } - - String htmltext = null; - switch (event) - { - case "32759-06.html": - { - npc.setScriptValue(0); - qs.startQuest(); - npc.setTarget(player); - npc.setWalking(); - npc.getAI().setIntention(CtrlIntention.AI_INTENTION_FOLLOW, player); - startQuestTimer("CHECK", 1000, npc, player, true); - startQuestTimer("TIME_LIMIT", 600000, npc, player); - startQuestTimer("TALK_TIME", 120000, npc, player); - startQuestTimer("TALK_TIME2", 30000, npc, player); - break; - } - case "TALK_TIME": - { - broadcastNpcSay(npc, player, NpcStringId.AH_I_THINK_I_REMEMBER_THIS_PLACE, false); - break; - } - case "TALK_TIME2": - { - broadcastNpcSay(npc, player, NpcStringId.WHAT_WERE_YOU_DOING_HERE, false); - startQuestTimer("TALK_TIME3", 10 * 1000, npc, player); - break; - } - case "TALK_TIME3": - { - broadcastNpcSay(npc, player, NpcStringId.I_GUESS_YOU_RE_THE_SILENT_TYPE_THEN_ARE_YOU_LOOKING_FOR_TREASURE_LIKE_ME, false); - break; - } - case "TIME_LIMIT": - { - startQuestTimer("STOP", 2000, npc, player); - qs.exitQuest(QuestType.DAILY); - break; - } - case "CHECK": - { - final double distance = npc.calculateDistance3D(player); - if (distance > 1000) - { - if (distance > 5000) - { - startQuestTimer("STOP", 2000, npc, player); - qs.exitQuest(QuestType.DAILY); - } - else if (npc.isScriptValue(0)) - { - broadcastNpcSay(npc, player, NpcStringId.HEY_DON_T_GO_SO_FAST, true); - npc.setScriptValue(1); - } - else if (npc.isScriptValue(1)) - { - broadcastNpcSay(npc, player, NpcStringId.IT_S_HARD_TO_FOLLOW, true); - npc.setScriptValue(2); - } - else if (npc.isScriptValue(2)) - { - startQuestTimer("STOP", 2000, npc, player); - qs.exitQuest(QuestType.DAILY); - } - } - for (L2Spawn escortSpawn : _escortCheckers) - { - final L2Npc escort = escortSpawn.getLastSpawn(); - if ((escort != null) && npc.isInsideRadius2D(escort, 1000)) - { - startQuestTimer("STOP", 1000, npc, player); - startQuestTimer("BYE", 3000, npc, player); - cancelQuestTimer("CHECK", npc, player); - npc.broadcastPacket(new CreatureSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getName(), NpcStringId.AH_FRESH_AIR)); - broadcastNpcSay(npc, player, NpcStringId.AH_FRESH_AIR, false); - giveItems(player, PACKAGED_BOOK, 1); - qs.exitQuest(QuestType.DAILY, true); - break; - } - } - break; - } - case "STOP": - { - npc.setTarget(null); - npc.getAI().stopFollow(); - npc.getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE); - cancelQuestTimer("CHECK", npc, player); - cancelQuestTimer("TIME_LIMIT", npc, player); - cancelQuestTimer("TALK_TIME", npc, player); - cancelQuestTimer("TALK_TIME2", npc, player); - break; - } - case "BYE": - { - npc.deleteMe(); - break; - } - default: - { - htmltext = event; - break; - } - } - return htmltext; - } - - @Override - public String onFirstTalk(L2Npc npc, L2PcInstance player) - { - if (npc.getTarget() != null) - { - return npc.getTarget().equals(player) ? "32759-08.html" : "32759-01a.html"; - } - return "32759.html"; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) - { - final QuestState qs = getQuestState(player, true); - - if ((getRandom(100) < CHANCE_SPAWN) && qs.isNowAvailable() && (player.getLevel() >= MIN_LV)) - { - addSpawn(GUMIEL, npc); - } - return super.onKill(npc, player, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - QuestState qs = getQuestState(player, true); - - switch (qs.getState()) - { - case State.CREATED: - { - htmltext = (player.getLevel() >= MIN_LV) ? "32759-01.htm" : "32759-03.html"; - break; - } - case State.COMPLETED: - { - if (qs.isNowAvailable()) - { - qs.setState(State.CREATED); - htmltext = (player.getLevel() >= MIN_LV) ? "32759-01.htm" : "32759-03.html"; - } - else - { - htmltext = "32759-02.html"; - } - break; - } - } - return htmltext; - } - - @Override - public String onSpawn(L2Npc npc) - { - _escortCheckers = SpawnTable.getInstance().getSpawns(ESCORT_CHECKER); - return super.onSpawn(npc); - } - - private void broadcastNpcSay(L2Npc npc, L2PcInstance player, NpcStringId stringId, boolean whisper) - { - (whisper ? player : npc).sendPacket(new NpcSay(npc.getObjectId(), (whisper ? ChatType.NPC_WHISPER : ChatType.NPC_GENERAL), npc.getId(), stringId)); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-00.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-00.htm deleted file mode 100644 index 94f17270dd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-00.htm +++ /dev/null @@ -1,5 +0,0 @@ -Kelleyia:
-You will understand what I mean someday, adventurer.
-When that time comes, we can combine our skills. You with your sword, and me with my brain.
-(Only characters with levels 82 and above can play this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-01.htm deleted file mode 100644 index 09ab7c5396..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-01.htm +++ /dev/null @@ -1,7 +0,0 @@ -Kelleyia:
-By the looks of you, I can tell you aren't one of the locals... given the fact you can still stand up straight and don't look like you are about to pass out.
-I'm a talent scout and I'm looking for the best of the best in Aden. Apparently, I made a mistake coming here first.
-You look like you know your way around a weapon. Want to test your skills?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-02.html deleted file mode 100644 index b920f03946..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Kelleyia:
-Yes... someone who searches for someone who has talent. Not too bright are you. My boss, who wishes to remain nameless, has asked me to find adventurers who can demonstrate excellent combat skills. Those who are great are rewarded with greatness. Those who are horrible are rewarded with shame.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-03.html deleted file mode 100644 index 5f0d42e3d0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-03.html +++ /dev/null @@ -1,5 +0,0 @@ -Kelleyia:
-Oh nothing much. We take a look at the area to see what can be done and then ask would-be-adventure-seekers such as you to do it.
-For instance, the Beast Farm. There are a lot of animals that can be temperamental if raised incorrectly. So, we use that as inspiration when creating a challenge. But it can't be as easy as "kill X of Y". That is just so boring. No, you have to add in a little flare to it.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-04.html deleted file mode 100644 index 9be6aa3d11..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-04.html +++ /dev/null @@ -1,6 +0,0 @@ -Kelleyia:
-Right. Down to business.
-As you can see, there are Alpine Buffalo, Grendel, Cougar, and Kookaburra all over the place. Cute in their infant state, but vicious if they are raised incorrectly.
-There are 3 parts to the challenge. Part 1: Raise an Alpine animal to their adult state. Part 2: Slaughter the beast. Part 3...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-05.html deleted file mode 100644 index d9d228b399..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-05.html +++ /dev/null @@ -1,6 +0,0 @@ -Kelleyia:
-No, you do NOT get it you amateur. Part 3 is the most important part of the challenge. It separates the no talent wannabes from the pros.
-You must score Over-hits on fully grown Alpine animals. A kill is a kill and that is all fine and dandy, but we are looking for perfection here. Bonus points are scored for performing Critical Over-hits.
-Do you understand the challenge?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-06.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-06.htm deleted file mode 100644 index 4bb1aea390..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-06.htm +++ /dev/null @@ -1,8 +0,0 @@ -Kelleyia:
-Really... you really want me to go over this again? It is simple. Find an Alpine Kookaburra, Alpine Cougar, Alpine Buffalo, or Alpine Grendel and feed it on spice until it grows into an adult. Speak to my associate over here to purchase spice.
-Once it is an adult, kill it trying to score as many Over-hits and Critical Over-hits as possible.
-The limit is 10 of each type of animal. That's a total of 40 if you can't add. If you can't score an Over-hit before killing an animal, you'll have to wait until tomorrow to try again.
-Do you think you can follow these directions?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-07.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-07.htm deleted file mode 100644 index 661fd8abd8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-07.htm +++ /dev/null @@ -1,5 +0,0 @@ -Kelleyia:
-Am I wasting my time here or what? Do you want to see if you got what it takes, or am I going to have to go speak to some other adventurer who can stop annoying me?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-08.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-08.htm deleted file mode 100644 index 26bcb7a655..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-08.htm +++ /dev/null @@ -1,6 +0,0 @@ -Kelleyia:
-No, no, no, I will not be drawn into this ridiculous game.
-Either accept the challenge or walk away.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-09.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-09.htm deleted file mode 100644 index 200ac073b4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-09.htm +++ /dev/null @@ -1,5 +0,0 @@ -Kelleyia:
-Ah, seriously, there isn't anything further if you keep annoying me. Go ahead and accept the challenge.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-10.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-10.htm deleted file mode 100644 index 2d54a9fd4a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-10.htm +++ /dev/null @@ -1,5 +0,0 @@ -Kelleyia:
-We have set up spotters all around the area to watch you so you can't cheat.
-We will keep track and let you know how well you have done.
-Break a leg! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-11.html deleted file mode 100644 index 30f0e2a6ed..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-11.html +++ /dev/null @@ -1,4 +0,0 @@ -Kelleyia:
-Remember, we will be judging you based on skill, technique, and consistency. We are looking for total perfection.
-Fully grown Alpine Kookaburra, Alpine Cougar, Alpine Buffalo, Alpine Grendel and Over-hits count. Anything else is worthless. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-12.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-12.html deleted file mode 100644 index bd46802a17..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-12.html +++ /dev/null @@ -1,4 +0,0 @@ -Kelleyia:
-Our spotters have reported you aren't quite finished yet.
-Get back in the field and show us what you got. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-13.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-13.html deleted file mode 100644 index 7191ad2917..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-13.html +++ /dev/null @@ -1,5 +0,0 @@ -Kelleyia:
-And done... you look a little winded. Are you sure that wasn't too much for you?
-Are you ready to hear your results?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-14a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-14a.html deleted file mode 100644 index 5023e51c90..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-14a.html +++ /dev/null @@ -1,4 +0,0 @@ -Kelleyia:
-First, I'd like to discuss your skill level. Out of the 40 kills, you had Over-hits. Wow, a perfect number! I almost never see that!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-14b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-14b.html deleted file mode 100644 index b81cb2b4f6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-14b.html +++ /dev/null @@ -1,4 +0,0 @@ -Kelleyia:
-First, I'd like to discuss your skill level. Out of the 40 kills, you had Over-hits. It's okay... but not great. We have seen better.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-14c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-14c.html deleted file mode 100644 index 775a1d0f6d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-14c.html +++ /dev/null @@ -1,4 +0,0 @@ -Kelleyia:
-First, I'd like to discuss your skill level. Out of the 40 kills, you had Over-hits. Hmm... seems like you didn't quite understand the challenge. Or is it that you just don't have what it takes to be a pro.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-15a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-15a.html deleted file mode 100644 index a406c88cfd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-15a.html +++ /dev/null @@ -1,4 +0,0 @@ -Kelleyia:
-Second, I'd like to discuss your technique. It also appears that you like to use a lot of flash in your moves. Of the 40 kills, you managed to get Critical Over-hits. That is impressive. I don't think we have ever encountered someone who has managed that.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-15b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-15b.html deleted file mode 100644 index 48fdc7988c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-15b.html +++ /dev/null @@ -1,4 +0,0 @@ -Kelleyia:
-Second, I'd like to discuss your technique. Not a lot of zest in your moves. Of the 40 kills, you managed to get Critical Over-hits. Not that exciting to watch. With someone of your talents, I would have expected more.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-15c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-15c.html deleted file mode 100644 index 45ccd0359c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-15c.html +++ /dev/null @@ -1,4 +0,0 @@ -Kelleyia:
-Second, I'd like to discuss your technique. Wow. You managed to have Critical Over-hits. Well, I've seen worse... no not really. You are really that bad.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-16a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-16a.html deleted file mode 100644 index 1066f707f6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-16a.html +++ /dev/null @@ -1,5 +0,0 @@ -Kelleyia:
-Lastly, I want to discuss your consistency. You managed consecutive Over-hit(s). You've demonstrated all the traits of a perfect killing machine.
-I don't have anything else to go over. Here is your reward.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-16b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-16b.html deleted file mode 100644 index f2b979aa5a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-16b.html +++ /dev/null @@ -1,5 +0,0 @@ -Kelleyia:
-Lastly, I want to discuss your consistency. You managed consecutive Over-hit(s). It's about average. You could do better.
-I don't have anything else to go over. Here is your reward.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-16c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-16c.html deleted file mode 100644 index e56cf9ca27..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-16c.html +++ /dev/null @@ -1,5 +0,0 @@ -Kelleyia:
-Lastly I want to discuss your consistency. Of the 40 kills, you managed consecutive Over-hit(s). Yes, you consistently demonstrated how bad at this you really are.
-Now that I have finished crushing your spirit, here is your reward for your work.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-17.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-17.html deleted file mode 100644 index c1aa2f3010..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-17.html +++ /dev/null @@ -1,3 +0,0 @@ -Kelleyia:
-If you want to give it a shot again, let me know. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-18.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-18.htm deleted file mode 100644 index 5a79ff6665..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/32768-18.htm +++ /dev/null @@ -1,5 +0,0 @@ -Kelleyia:
-Sorry. But it's time to go back home...
-Please tell me all about it tomorrow.
-(This is a quest that can be played only once a day. This quest resets everyday at 6:30 am.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/Q00458_PerfectForm.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/Q00458_PerfectForm.java deleted file mode 100644 index 41202e23cd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00458_PerfectForm/Q00458_PerfectForm.java +++ /dev/null @@ -1,336 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00458_PerfectForm; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.enums.QuestType; -import com.l2jmobius.gameserver.model.actor.L2Attackable; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; -import com.l2jmobius.gameserver.network.serverpackets.ExQuestNpcLogList; - -/** - * Perfect Form (458) - * @author jurchiks - */ -public class Q00458_PerfectForm extends Quest -{ - // NPCs - private static final int KELLEYIA = 32768; - // Monsters - // Level 4 (full grown) feedable beasts - private static final int[] KOOKABURRAS = - { - 18878, - 18879 - }; - private static final int[] COUGARS = - { - 18885, - 18886 - }; - private static final int[] BUFFALOS = - { - 18892, - 18893 - }; - private static final int[] GRENDELS = - { - 18899, - 18900 - }; - - // Rewards - // 60% Icarus weapon recipes (except kamael weapons) - // @formatter:off - private static final int[] ICARUS_WEAPON_RECIPES = - { - 10373, 10374, 10375, 10376, 10377, 10378, 10379, 10380, 10381 - }; - - private static final int[] ICARUS_WEAPON_PIECES = - { - 10397, 10398, 10399, 10400, 10401, 10402, 10403, 10404, 10405 - }; - // @formatter:on - - public Q00458_PerfectForm() - { - super(458); - addStartNpc(KELLEYIA); - addTalkId(KELLEYIA); - addKillId(KOOKABURRAS); - addKillId(COUGARS); - addKillId(BUFFALOS); - addKillId(GRENDELS); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final String noQuest = getNoQuestMsg(player); - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return noQuest; - } - - String htmltext = event; - int overHits = 0; - boolean overHitHtml = false; - - switch (event) - { - case "32768-10.htm": - { - qs.startQuest(); - break; - } - case "results1": - { - if (qs.isCond(2)) - { - final int overhitsTotal = qs.getInt("overhitsTotal"); - if (overhitsTotal >= 35) - { - htmltext = "32768-14a.html"; - } - else if (overhitsTotal >= 10) - { - htmltext = "32768-14b.html"; - } - else - { - htmltext = "32768-14c.html"; - } - overHits = overhitsTotal; - overHitHtml = true; - } - else - { - htmltext = noQuest; - } - break; - } - case "results2": - { - if (qs.isCond(2)) - { - final int overhitsCritical = qs.getInt("overhitsCritical"); - if (overhitsCritical >= 30) - { - htmltext = "32768-15a.html"; - } - else if (overhitsCritical >= 5) - { - htmltext = "32768-15b.html"; - } - else - { - htmltext = "32768-15c.html"; - } - overHits = overhitsCritical; - overHitHtml = true; - } - else - { - htmltext = noQuest; - } - break; - } - case "results3": - { - if (qs.isCond(2)) - { - final int overhitsConsecutive = qs.getInt("overhitsConsecutive"); - if (overhitsConsecutive >= 20) - { - htmltext = "32768-16a.html"; - } - else if (overhitsConsecutive >= 7) - { - htmltext = "32768-16b.html"; - } - else - { - htmltext = "32768-16c.html"; - } - overHits = overhitsConsecutive; - overHitHtml = true; - } - else - { - htmltext = noQuest; - } - break; - } - case "32768-17.html": - { - if (qs.isCond(2)) - { - final int overhitsConsecutive = qs.getInt("overhitsConsecutive"); - if (overhitsConsecutive >= 20) - { - rewardItems(player, ICARUS_WEAPON_RECIPES[getRandom(ICARUS_WEAPON_RECIPES.length)], 1); - } - else if (overhitsConsecutive >= 7) - { - rewardItems(player, ICARUS_WEAPON_PIECES[getRandom(ICARUS_WEAPON_PIECES.length)], 5); - } - else - { - final int rnd = getRandom(ICARUS_WEAPON_PIECES.length); - rewardItems(player, ICARUS_WEAPON_PIECES[rnd], 2); - // not sure if this should use rewardItems - giveItems(player, 15482, 10); // Golden Spice Crate - giveItems(player, 15483, 10); // Crystal Spice Crate - } - qs.exitQuest(QuestType.DAILY, true); - } - else - { - htmltext = noQuest; - } - break; - } - } - - if (overHitHtml) - { - htmltext = getHtm(player, htmltext); - htmltext = htmltext.replace("", String.valueOf(overHits)); - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) - { - final QuestState qs = getQuestState(player, false); - if ((qs != null) && qs.isCond(1)) - { - int npcId = npc.getId(); - if ((npcId == KOOKABURRAS[0]) || (npcId == COUGARS[0]) || (npcId == BUFFALOS[0]) || (npcId == GRENDELS[0])) - { - npcId++; - } - - final String variable = String.valueOf(npcId); // i3 - final int currentValue = qs.getInt(variable); - if (currentValue < 10) - { - qs.set(variable, String.valueOf(currentValue + 1)); // IncreaseNPCLogByID - - final L2Attackable mob = (L2Attackable) npc; - if (mob.isOverhit()) - { - qs.set("overhitsTotal", String.valueOf(qs.getInt("overhitsTotal") + 1)); // memoStateEx 1 - final int maxHp = mob.getMaxHp(); - // L2Attackable#calculateOverhitExp() way of calculating overhit % seems illogical - final double overhitPercentage = (maxHp + mob.getOverhitDamage()) / maxHp; - if (overhitPercentage >= 1.2) - { - qs.set("overhitsCritical", String.valueOf(qs.getInt("overhitsCritical") + 1)); // memoStateEx 2 - } - qs.set("overhitsConsecutive", String.valueOf(qs.getInt("overhitsConsecutive") + 1)); // memoStateEx 3 - /* - * Retail logic (makes for a long/messy string in database): int i0 = overhitsConsecutive % 100; int i1 = overhitsConsecutive - (i0 * 100); if (i0 < i1) { st.set("overhitsConsecutive", String.valueOf((i1 * 100) + i1)); } - */ - } - // st.set("overhitsConsecutive", String.valueOf((st.getInt("overhitsConsecutive") % 100) * 100)); - else if (qs.getInt("overhitsConsecutive") > 0) - { - // avoid writing to database if variable is already zero - qs.set("overhitsConsecutive", "0"); - } - - if ((qs.getInt("18879") == 10) && (qs.getInt("18886") == 10) && (qs.getInt("18893") == 10) && (qs.getInt("18900") == 10)) - { - qs.setCond(2, true); - // st.set("overhitsConsecutive", String.valueOf(st.getInt("overhitsConsecutive") % 100)); - } - else - { - playSound(player, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - - final ExQuestNpcLogList log = new ExQuestNpcLogList(getId()); - log.addNpc(18879, qs.getInt("18879")); - log.addNpc(18886, qs.getInt("18886")); - log.addNpc(18893, qs.getInt("18893")); - log.addNpc(18900, qs.getInt("18900")); - - player.sendPacket(log); - } - } - return super.onKill(npc, player, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState qs = getQuestState(player, true); - - switch (qs.getState()) - { - case State.COMPLETED: - { - if (!qs.isNowAvailable()) - { - htmltext = "32768-18.htm"; - break; - } - qs.setState(State.CREATED); - //$FALL-THROUGH$ - } - case State.CREATED: - { - htmltext = (player.getLevel() > 81) ? "32768-01.htm" : "32768-00.htm"; - break; - } - case State.STARTED: - { - switch (qs.getCond()) - { - case 1: - { - if ((qs.getInt("18879") == 0) && (qs.getInt("18886") == 0) && (qs.getInt("18893") == 0) && (qs.getInt("18900") == 0)) - { - htmltext = "32768-11.html"; - } - else - { - htmltext = "32768-12.html"; - } - break; - } - case 2: - { - htmltext = "32768-13.html"; - break; - } - } - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30297-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30297-01.html deleted file mode 100644 index 378888c4c3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30297-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Grand Master Tobias:
-What brought you here?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30297-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30297-02.html deleted file mode 100644 index 35ad3f731e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30297-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Grand Master Tobias:
-Hm... I lost this book a LONG time ago! Thank you, brother!
-Funny... This is a kid's book, I remember taking it so seriously! Ah, to be young. Anyhow, thank you for this unexpected gift. I thank you again. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30539-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30539-01.html deleted file mode 100644 index f9a5dcb71b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30539-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Priestess of the Earth Chichirin:
-What can I do for you?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30539-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30539-02.html deleted file mode 100644 index af84cce91f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30539-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Earth Priestess Chichirin:
-Oh, this book is...?! ...Where did you find this? I thought I lost it a long time ago. How did you find this book? Wow, you have an amazing talent.
-This book reminds me of the days in my youth. Thank you so much!! May blessing of Earth Goddess be upon you!! Karna Mapra!! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30657-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30657-01.html deleted file mode 100644 index 7cd9034201..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30657-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Cardinal Seresin:
-What can I do for you?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30657-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30657-02.html deleted file mode 100644 index 8332d3bed2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30657-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Cardinal Seresin:
-Huh? I've seen this book...?! ...Where did you find this? I thought I lost it... Thank you so much.
-I remember spending countless hours with my nose in this book, studying religion and daydreaming when I was young. Now.. I'm too busy for such things. Anyway, this book is sentimental. I appreciate you bringing it to me. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30839-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30839-01.html deleted file mode 100644 index 731e0ce233..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30839-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Trader Holly:
-What is it?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30839-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30839-02.html deleted file mode 100644 index a0f957c447..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30839-02.html +++ /dev/null @@ -1,3 +0,0 @@ -Trader Holly:
-Thank you SO much!! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30899-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30899-01.html deleted file mode 100644 index 47872cedaa..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30899-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Gatekeeper Flauen:
-Greetings, traveler. Can I help you...?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30899-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30899-02.html deleted file mode 100644 index 738e85a0b4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/30899-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Gatekeeper Flauen:
-Hey, I know this book...?! ...Where did you find this?? Incredible! Man... this thing brings back some memories eh? Well, like most things I guess you had to have been there. This was very nice of you.
-Dear Sophia... I wonder what she's up to anymore. Probably looks more like her mom now... Where does the time go? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31350-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31350-01.html deleted file mode 100644 index 8e1227775c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31350-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Dominic:
-What would possess YOU to speak to me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31350-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31350-02.html deleted file mode 100644 index 86c5de3a1a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31350-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Priest Dominic:
-You aren't afraid to look me in the eye. That shows your inner bravery. Tell me, brave one, where did you find this book?
-Interesting. If you were one of my family, I would share a story with you about this book.
-If there is nothing else... - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31588-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31588-01.html deleted file mode 100644 index 5480da85c9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31588-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Saint of Light Agnes:
-Do you require the services of a saint? Weddings are down the hall...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31588-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31588-02.html deleted file mode 100644 index 9ae2a687a1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31588-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Saint of Light Agnes:
-I discovered my dream of sainthood with this book. I here I thought I lost it... or gave it away? I don't remember.. And now you brought it to me! Thank you!
-Because of you I am inspired to pray! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31960-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31960-01.html deleted file mode 100644 index 4ff89ded9f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31960-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Blacksmith Buryun:
-Hey, how did you know I collect books? It is for me, right?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31960-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31960-02.html deleted file mode 100644 index 04c2a85c39..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/31960-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Blacksmith Buryun:
-Oh, this book is...?! ...Where did you find this? I thought I lost it a long time ago, now you've found it for me... Thank you very much.
-This book reminds me of old days. Oh, I can see it's changed during all these years. I guess it needs some repair. Anyway, thank you so much!! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-01.html deleted file mode 100644 index 0359f04e0d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Library of Sages Director Sophia:
-Is there something I can help you with? You have that look... Whatever it is I will help if I can...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-02.html deleted file mode 100644 index 7cb47a09d0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Library of Sages Director Sophia:
-This book is an antique. But I don't think it belongs to this library...
-Why do you think it is one of ours...?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-03.html deleted file mode 100644 index 38fa8efd1b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-03.html +++ /dev/null @@ -1,5 +0,0 @@ -Library of Sages Director Sophia:
-Really? May I take a look? Hmm... It is familiar... I remember something...
-I'm thinking... thinking... thinking... AHA!! I just remembered!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04.html deleted file mode 100644 index 5b2bb2f55f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04.html +++ /dev/null @@ -1,4 +0,0 @@ -Library of Sages Director Sophia:
-This book was a gift from Seresin who is now a Cardinal. He gave it to me but I lost it during a fit of spring cleaning. How strange that you have it now... are these pages bunny eared?!
-...Listen. You probably didn't know this, but I don't believe in coincidence. You found this book for a reason. Maybe that reason was to return it to Cardinal Seresin in Oren Town? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04a.html deleted file mode 100644 index 213adbb8b4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04a.html +++ /dev/null @@ -1,4 +0,0 @@ -Library of Sages Director Sophia:
-This book? Well Holly, who is now a grocer in Aden Castle, gave this book to me. And I lost it... for a library director I sure lose a lot of books.. Anyway let me tell you a secret... ready? I don't believe in coincidence.
-...That being said, perhaps fate wants you to take this book back to Holly, the grocer in Aden Castle? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04b.html deleted file mode 100644 index a5b73fcc96..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04b.html +++ /dev/null @@ -1,4 +0,0 @@ -Library of Sages Director Sophia:
-This book is actually quite familiar to me. Hmm... smell those pages! Decades ago I gave this book to Flauen who is now the Gatekeeper in Heine. She and I were close friends growing up. But our paths separated and I've lost touch with her. I wonder what she's up to these days...?
-...Let me say this; I don't believe in coincidences. Perhaps you could do something for me... would you take this book to Flauen the Gatekeeper in Heine? And tell my old friend that I said hello? If you do, I can take care of any late fees at the library for you... - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04c.html deleted file mode 100644 index 76ffee9514..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04c.html +++ /dev/null @@ -1,4 +0,0 @@ -Library of Sages Director Sophia:
-Ahh yes. I remember this book, Dominic who is now a priest in Rune Town lost this book to me in a staring contest. But then I misplaced it and I haven't seen it since...
-...It sounds like coincidence, but it isn't. This book wants to go home. You found it, you should be the one to take it to Priest Dominic in Rune Town Temple dont you think? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04d.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04d.html deleted file mode 100644 index 6bb94adf38..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04d.html +++ /dev/null @@ -1,4 +0,0 @@ -Library of Sages Director Sophia:
-I remember this book. The Priest of the Earth, Chichirin who is now in Dwarven Village gave this book to me after putting gum in my hair. And though it is unlike me, I lost it and my hairbrush one sunny afternoon....
-...Hey, do you believe in coincidence? Cause' I don't! I think you should return this book to Priest of the Earth, Chichirin in Dwarven Village for me. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04e.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04e.html deleted file mode 100644 index 2ec2d7b965..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04e.html +++ /dev/null @@ -1,3 +0,0 @@ -Library of Sages Director Sophia:
-This book hasn't aged a day... It was long ago and just after lunch. We were playing outside when Grand Master Tobias who is now in Gludio Town used this book to squash a bee. We were both so terrified that the bee wasn't dead that we left it there. I meant to pick it up in a day or so, but somehow we both forgot. But now it is here, as if some cosmic fate is trying to tell us something. Listen..., hear that? I think it's saying 'hey, why not take me back to' Grand Master Tobias of Dark Elves Guild in Gludio Town? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04f.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04f.html deleted file mode 100644 index fbdc5113c0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04f.html +++ /dev/null @@ -1,4 +0,0 @@ -Library of Sages Director Sophia:
-This book is... hey I remember this book! You see, many winters ago Buryun who is now a blacksmith in Schuttgart Town was using this book to sled down a snowy hill. I thought it looked fun and asked if I could try. I was going too fast though, and the book slipped out from under me as I went over a bank of snow. We never did find it...,
-...This is not just a coincidence. I think this book wants to return home, and I think because you found it that you should be the one to do it. Can you take it to the Blacksmith Buryun in Schuttgart Town? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04g.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04g.html deleted file mode 100644 index e220ac4cfe..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-04g.html +++ /dev/null @@ -1,4 +0,0 @@ -Library of Sages Director Sophia:
-I never thought I'd see this book again. No seriously, a long time ago Agnes, who is now called Saint of Light, and myself went camping. We realized we forgot the kindling needed to start the campfire, but she did have this book. Look, I'm a librarian, I can't really say what happened next... anyway... somehow it is back as if fate had its own plans for the book.
-...I think you should take it back to Agnes, Saint of Light in Goddard Town. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05.html deleted file mode 100644 index d3790e9908..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05.html +++ /dev/null @@ -1,3 +0,0 @@ -Library of Sages Director Sophia:
-You should return the book to Cardinal Seresin in Oren Town before he dies of old age. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05a.html deleted file mode 100644 index 4def01aebd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05a.html +++ /dev/null @@ -1,3 +0,0 @@ -Library of Sages Director Sophia:
-Still here? You should get that book back to Merchant Holly in Aden Town. I know she'll really appreciate it. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05b.html deleted file mode 100644 index 551c534fbe..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05b.html +++ /dev/null @@ -1,3 +0,0 @@ -Library of Sages Director Sophia:
-What are you waiting for? Find Flauen the Gatekeeper in Heine. I know he'll love seeing that book again. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05c.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05c.html deleted file mode 100644 index c12f8a0ba2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05c.html +++ /dev/null @@ -1,3 +0,0 @@ -Library of Sages Director Sophia:
-No time like the present! Return the book to Priest Dominic in Rune. He'll really get a kick out of seeing it again. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05d.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05d.html deleted file mode 100644 index 3d2f32c7a2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05d.html +++ /dev/null @@ -1,3 +0,0 @@ -Library of Sages Director Sophia:
-Need a bathroom break first? Get this book to Priest of the Earth, Chichirin in Dwarven Village. That way it can complete its destiny. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05e.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05e.html deleted file mode 100644 index e339480933..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05e.html +++ /dev/null @@ -1,3 +0,0 @@ -Library of Sages Director Sophia:
-I'm not sure what you are waiting for. But Grand Master Tobias in Gludio Town would love to get that book back after all these years. Chop chop! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05f.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05f.html deleted file mode 100644 index fbd398566b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05f.html +++ /dev/null @@ -1,3 +0,0 @@ -Library of Sages Director Sophia:
-Still here? Once again the owner of the book is Blacksmith Buryun in Schuttgart. He'll really enjoy seeing that book again. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05g.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05g.html deleted file mode 100644 index 2536c96feb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/32596-05g.html +++ /dev/null @@ -1,3 +0,0 @@ -Library of Sages Director Sophia:
-Tic toc, we aren't getting any younger. Find Agnes, the Saint of Light in Goddard and give her that book. Then tell her I said hi, and she still has some late fees at the library. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/Q00464_Oath.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/Q00464_Oath.java deleted file mode 100644 index ee841bfc68..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/Q00464_Oath.java +++ /dev/null @@ -1,316 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00464_Oath; - -import java.util.HashMap; -import java.util.Map; - -import com.l2jmobius.gameserver.enums.QuestType; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.items.instance.L2ItemInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * Oath (464) - * @author malyelfik - */ -public class Q00464_Oath extends Quest -{ - // NPCs @formatter:off - private static final int[][] NPC = - { - // NPC id, EXP, SP, Adena - {32596, 0, 0, 0}, - {30657, 15449, 17696, 42910}, - {30839, 189377, 21692, 52599}, - {30899, 249180, 28542, 69210}, - {31350, 249180, 28542, 69210}, - {30539, 19408, 47062, 169442}, - {30297, 24146, 58551, 210806}, - {31960, 15449, 17696, 42910}, - {31588, 15449, 17696, 42910} - }; - // @formatter:on - - // Items - private static final int STRONGBOX = 15537; - private static final int BOOK = 15538; - private static final int BOOK2 = 15539; - // Misc - private static final int MIN_LEVEL = 82; - - // Monsters - private static final Map MOBS = new HashMap<>(); - static - { - MOBS.put(22799, 9); - MOBS.put(22794, 6); - MOBS.put(22800, 10); - MOBS.put(22796, 9); - MOBS.put(22798, 9); - MOBS.put(22795, 8); - MOBS.put(22797, 7); - MOBS.put(22789, 5); - MOBS.put(22791, 4); - MOBS.put(22790, 5); - MOBS.put(22792, 4); - MOBS.put(22793, 5); - } - - public Q00464_Oath() - { - super(464); - for (int[] npc : NPC) - { - addTalkId(npc[0]); - } - addKillId(MOBS.keySet()); - addItemTalkId(STRONGBOX); - registerQuestItems(BOOK, BOOK2); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - - String htmltext = event; - switch (event) - { - case "32596-04.html": - { - if (!hasQuestItems(player, BOOK)) - { - return getNoQuestMsg(player); - } - - final int cond = getRandom(2, 9); - qs.set("npc", String.valueOf(NPC[cond - 1][0])); - qs.setCond(cond, true); - takeItems(player, BOOK, 1); - giveItems(player, BOOK2, 1); - switch (cond) - { - case 2: - { - htmltext = "32596-04.html"; - break; - } - case 3: - { - htmltext = "32596-04a.html"; - break; - } - case 4: - { - htmltext = "32596-04b.html"; - break; - } - case 5: - { - htmltext = "32596-04c.html"; - break; - } - case 6: - { - htmltext = "32596-04d.html"; - break; - } - case 7: - { - htmltext = "32596-04e.html"; - break; - } - case 8: - { - htmltext = "32596-04f.html"; - break; - } - case 9: - { - htmltext = "32596-04g.html"; - break; - } - } - break; - } - case "end_quest": - { - if (!hasQuestItems(player, BOOK2)) - { - return getNoQuestMsg(player); - } - - final int i = qs.getCond() - 1; - addExpAndSp(player, NPC[i][1], NPC[i][2]); - giveAdena(player, NPC[i][3], true); - qs.exitQuest(QuestType.DAILY, true); - htmltext = npc.getId() + "-02.html"; - break; - } - case "32596-02.html": - case "32596-03.html": - { - break; - } - default: - { - htmltext = null; - break; - } - } - return htmltext; - } - - @Override - public String onItemTalk(L2ItemInstance item, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState qs = getQuestState(player, true); - - boolean startQuest = false; - switch (qs.getState()) - { - case State.CREATED: - { - startQuest = true; - break; - } - case State.STARTED: - { - htmltext = "strongbox-02.html"; - break; - } - case State.COMPLETED: - { - if (qs.isNowAvailable()) - { - qs.setState(State.CREATED); - startQuest = true; - } - else - { - htmltext = "strongbox-03.html"; - } - break; - } - } - - if (startQuest) - { - if (player.getLevel() >= MIN_LEVEL) - { - qs.startQuest(); - takeItems(player, STRONGBOX, 1); - giveItems(player, BOOK, 1); - htmltext = "strongbox-01.htm"; - } - else - { - htmltext = "strongbox-00.htm"; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - if (getRandom(1000) < MOBS.get(npc.getId())) - { - npc.dropItem(killer, STRONGBOX, 1); - } - - return super.onKill(npc, killer, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState qs = getQuestState(player, true); - - if ((qs != null) && qs.isStarted()) - { - final int npcId = npc.getId(); - - if (npcId == NPC[0][0]) - { - switch (qs.getCond()) - { - case 1: - { - htmltext = "32596-01.html"; - break; - } - case 2: - { - htmltext = "32596-05.html"; - break; - } - case 3: - { - htmltext = "32596-05a.html"; - break; - } - case 4: - { - htmltext = "32596-05b.html"; - break; - } - case 5: - { - htmltext = "32596-05c.html"; - break; - } - case 6: - { - htmltext = "32596-05d.html"; - break; - } - case 7: - { - htmltext = "32596-05e.html"; - break; - } - case 8: - { - htmltext = "32596-05f.html"; - break; - } - case 9: - { - htmltext = "32596-05g.html"; - break; - } - } - } - else if ((qs.getCond() > 1) && (qs.getInt("npc") == npcId)) - { - htmltext = npcId + "-01.html"; - } - } - return htmltext; - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/strongbox-00.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/strongbox-00.htm deleted file mode 100644 index 7ec2f50b60..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/strongbox-00.htm +++ /dev/null @@ -1,4 +0,0 @@ -Strongbox of Promise:
-No matter how much you try to open it, the strongbox does not appear to budge.
-(Only characters level 82 and above can take this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/strongbox-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/strongbox-01.htm deleted file mode 100644 index 2db2f7bf67..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/strongbox-01.htm +++ /dev/null @@ -1,5 +0,0 @@ - -You find an old book inside.
-You open it and turn to the first page, and see a picture that obviously harkens back to ancient times. This book is old, that is for sure.
-You read a note scrawled in perfect penmanship: To Sophia of the Library of Sages. Perhaps she will know what to do with the book. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/strongbox-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/strongbox-02.html deleted file mode 100644 index 5996ce7173..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/strongbox-02.html +++ /dev/null @@ -1,3 +0,0 @@ - -You already performing that quest. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/strongbox-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/strongbox-03.html deleted file mode 100644 index b0426282c6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00464_Oath/strongbox-03.html +++ /dev/null @@ -1,3 +0,0 @@ - -This quest can be completed only once a day. This quest resets everyday at 6:30 am. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-01.htm deleted file mode 100644 index 0736f35932..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-01.htm +++ /dev/null @@ -1,6 +0,0 @@ -Adventurers' Guide:
-Calling all adventurers!
-Dolphren is looking for brave warriors to help collect research materials! Listen in for details.
-Research on the Giant relics is progressing at a slower than expected pace. Our efforts are hampered by both monsters and ongoing wars. Dolphren suggests concentrating forces on the Silent Valley and is offering significant compensation for all those who agree to help! Are you interested?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-02.htm deleted file mode 100644 index 9fb5639027..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Adventurers' Guide:
-Certainly! -Chimera Pieces, Soldiers of Ancient Times, Mutated Creations, Warriors of Ancient Times, Shamans of Ancient Times, Creatures of the Past, Forgotten Ancient People, Forgotten Faces, and Giant's Shadows are raiding our digs, and have carried away 50 Relic Boxes. We need those research materials!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-03.htm deleted file mode 100644 index 8dcf0458d5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -Adventurers' Guide:
-The usual remnants of ancient civilizations. But this dig is the only one in Silent Valley we've found worth exploiting. When you're done, return to Aden and give them to Recipe Merchant Dolphren. He's willing to pay well for intact relics.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-04.htm deleted file mode 100644 index 2f9cdd6470..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-04.htm +++ /dev/null @@ -1,4 +0,0 @@ -Adventurers' Guide:
-I know you've got the particulars down, but I like to review sometimes.
-Hunt Chimera Pieces, Soldiers of Ancient Times, Mutated Creations, Warriors of Ancient Times, Shamans of Ancient Times, Creatures of the Past, Forgotten Ancient People, Forgotten Faces and Giant's Shadows. Collect 50 Relic Boxes and take them to Recipe Merchant Dolphren. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-05.html deleted file mode 100644 index c2dce8f711..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Adventurers' Guide:
-Just so you don't forget...
-Hunt Chimera Pieces, Soldiers of Ancient Times, Mutated Creations, Warriors of Ancient Times, Shamans of Ancient Times, Creatures of the Past, Forgotten Ancient People, Forgotten Faces and Giant's Shadows. Collect 50 Relic Boxes and take them to Recipe Merchant Dolphren. He has a good eye for antiquities, so don't try to pass off junk! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-06.html deleted file mode 100644 index 00a82dda51..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32327-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Adventurers' Guide:
-The hero returns!
-Thank you for hunting Chimera Pieces, Soldiers of Ancient Times, Mutated Creations, Warriors of Ancient Times, Shamans of Ancient Times, Creatures of the Past, Forgotten Ancient People, Forgotten Faces and Giant's Shadows. Take the 50 Relic Boxes you collected to Recipe Merchant Dolphren! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32880-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32880-01.html deleted file mode 100644 index ba14be4772..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32880-01.html +++ /dev/null @@ -1,3 +0,0 @@ -Recipe Merchant Dolphren:
-You are here. You don't have 50 Boxes of Relics though... - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32880-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32880-02.html deleted file mode 100644 index 48b1613cc6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32880-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Recipe Merchant Dolphren:
-You're here! Oh! These are the Relic Boxes? Good! And here is your compensation!
-You helped us and I compensated for it. Now, we can be friends. Thank you. Goodbye, friend! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32880-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32880-03.html deleted file mode 100644 index 60d3ee6942..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/32880-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Recipe Merchant Dolphren:
-Today has been busy!
-(This quest can be fulfilled only once a day. This quest resets at 6:30 a.m. everyday.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/Q00488_WondersOfCaring.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/Q00488_WondersOfCaring.java deleted file mode 100644 index 812d260724..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00488_WondersOfCaring/Q00488_WondersOfCaring.java +++ /dev/null @@ -1,164 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00488_WondersOfCaring; - -import com.l2jmobius.gameserver.enums.QuestType; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * Wonders of Caring (488) - * @author St3eT - */ -public final class Q00488_WondersOfCaring extends Quest -{ - // NPCs - private static final int ADVENTURER = 32327; - private static final int DOLPHREN = 32880; - private static final int[] MONSTERS = - { - 20965, // Chimera Piece - 20970, // Soldier of Ancient Times - 20966, // Mutated Creation - 20971, // Warrior of Ancient Times - 20972, // Shaman of Ancient Times - 20967, // Creature of the Past - 20973, // Forgotten Ancient People - 20968, // Forgotten Face - 20969, // Giant's Shadow - }; - // Items - private static final int BOX = 19500; // Relic Box - // Misc - private static final int MIN_LEVEL = 75; - private static final int MAX_LEVEL = 79; - - public Q00488_WondersOfCaring() - { - super(488); - addStartNpc(ADVENTURER); - addTalkId(ADVENTURER, DOLPHREN); - addKillId(MONSTERS); - addCondLevel(MIN_LEVEL, MAX_LEVEL, ""); - registerQuestItems(BOX); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState st = getQuestState(player, false); - - if (st == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "32327-02.htm": - case "32327-03.htm": - { - htmltext = event; - break; - } - case "32327-04.htm": - { - st.startQuest(); - htmltext = event; - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState st = getQuestState(player, true); - - switch (st.getState()) - { - case State.CREATED: - { - if (npc.getId() == ADVENTURER) - { - htmltext = "32327-01.htm"; - } - break; - } - case State.STARTED: - { - if (st.isCond(1)) - { - htmltext = npc.getId() == ADVENTURER ? "32327-05.html" : "32880-01.html"; - } - else if (st.isCond(2)) - { - if (npc.getId() == ADVENTURER) - { - htmltext = "32327-05.html"; - } - else if (npc.getId() == DOLPHREN) - { - st.exitQuest(QuestType.DAILY, true); - giveAdena(player, 490_545, true); - if (player.getLevel() >= MIN_LEVEL) - { - addExpAndSp(player, 22_901_550, 5_496); - } - htmltext = "32880-02.html"; - } - } - break; - } - case State.COMPLETED: - { - if ((npc.getId() == ADVENTURER) && st.isNowAvailable()) - { - st.setState(State.CREATED); - htmltext = "32327-01.htm"; - } - else if ((npc.getId() == DOLPHREN) && st.isCompleted() && !st.isNowAvailable()) - { - htmltext = "32880-03.html"; - } - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState st = getQuestState(killer, false); - - if ((st != null) && st.isCond(1)) - { - if (giveItemRandomly(killer, BOX, 1, 50, 0.4, true)) - { - st.setCond(2, true); - } - } - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/31280-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/31280-01.html deleted file mode 100644 index 50cf078c53..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/31280-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Bastian:
-I only need 77, not 700... Is that really difficult? I can't give you the reward for this few.
-If you want the reward, please bring me 77 pieces of Traces of Evil as announced by the Adventurer Helper. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32180-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32180-02.html deleted file mode 100644 index 2f4a4fdaab..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32180-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Bastian:
-Welcome! You brought the exact amount that was requested. Thanks to you, the peace in this place can be maintained.
-Here is the reward that I mentioned. Goodbye. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32180-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32180-03.html deleted file mode 100644 index c9aea3cbdb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32180-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Bastian:
-I guess 77 pieces were too little for you?
-(This quest can be fulfilled only once a day. This quest resets daily, at 6:30 a.m.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-01.htm deleted file mode 100644 index 91b1276c8d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-01.htm +++ /dev/null @@ -1,6 +0,0 @@ -Adventurers' Guide:
-Hear ye! Hear ye!
-All adventurers planning to visit the Shrine of Loyalty should listen to this important information. Though it was once widely visited by Aden's warriors and mages, increased monster activity has drastically reduced the number of visitors. This situation is something that Priest Bastian wishes remedied as soon as possible.
-Any persons willing to help should see me for further details.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-02.htm deleted file mode 100644 index 0a65be320d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Adventurers' Guide:
-Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Royal Guards have infested the Shrine of Loyalty.
-But it's never that simple, right? Some of them are infused with Traces of Evil Spirit, possibly as many as 700! But no one would agree to kill that many, so if you can collect 77 of them for now, I'm authorized to give a reward.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-03.htm deleted file mode 100644 index e0065bee86..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -Adventurers' Guide:
-Me? Nothing. I'm not that kind of guide. Priest Bastian in the Town of Goddard is the knowledgeable one. He will take the samples and pay you for your time. Will you take the mission?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-04.htm deleted file mode 100644 index 5ffe17cb64..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-04.htm +++ /dev/null @@ -1,4 +0,0 @@ -Adventurers' Guide:
-Excellent. Now to review the mission...
-Kill Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Royal Guards and collect 77 Traces of Evil Spirit. Then take them to Priest Bastian in the Town of Goddard. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-05.html deleted file mode 100644 index 54a90d03c2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Adventurers' Guide:
-One more time:
-Go to the Shrine of Loyalty and kill Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Royal Guards. Bring 77 Traces of Evil Spirit to Priest Bastian in the Town of Goddard, who will pay you for your time. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-06.html deleted file mode 100644 index c31f9a81b8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/32327-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Adventurers' Guide:
-The hero returns!
-Thank you for hunting Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Royal Guards. Take the 77 Traces of Evil Spirit you collected to Priest Bastian in the Town of Goddard! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/Q00489_InThisQuietPlace.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/Q00489_InThisQuietPlace.java deleted file mode 100644 index 663212139c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00489_InThisQuietPlace/Q00489_InThisQuietPlace.java +++ /dev/null @@ -1,161 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00489_InThisQuietPlace; - -import com.l2jmobius.gameserver.enums.QuestType; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * In This Quiet Place (489) - * @author St3eT - */ -public final class Q00489_InThisQuietPlace extends Quest -{ - // NPCs - private static final int ADVENTURER = 32327; - private static final int BESTIAN = 31280; - private static final int[] MONSTERS = - { - 21646, // Grave Scarab - 21647, // Scavenger Scarab - 21648, // Grave Ant - 21649, // Scavenger Ant - 21650, // Shrine Knight - 21651, // Shrine Guard - }; - // Items - private static final int EVIL_SPIRIT = 19501; // Trace of Evil Spirit - // Misc - private static final int MIN_LEVEL = 75; - private static final int MAX_LEVEL = 79; - - public Q00489_InThisQuietPlace() - { - super(489); - addStartNpc(ADVENTURER); - addTalkId(ADVENTURER, BESTIAN); - addKillId(MONSTERS); - addCondLevel(MIN_LEVEL, MAX_LEVEL, ""); - registerQuestItems(EVIL_SPIRIT); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState st = getQuestState(player, false); - - if (st == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "32327-02.htm": - case "32327-03.htm": - { - htmltext = event; - break; - } - case "32327-04.htm": - { - st.startQuest(); - htmltext = event; - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState st = getQuestState(player, true); - - switch (st.getState()) - { - case State.CREATED: - { - if (npc.getId() == ADVENTURER) - { - htmltext = "32327-01.htm"; - } - break; - } - case State.STARTED: - { - if (st.isCond(1)) - { - htmltext = npc.getId() == ADVENTURER ? "32327-05.html" : "31280-01.html"; - } - else if (st.isCond(2)) - { - if (npc.getId() == ADVENTURER) - { - htmltext = "32327-06.html"; - } - else if (npc.getId() == BESTIAN) - { - st.exitQuest(QuestType.DAILY, true); - giveAdena(player, 426_045, true); - if (player.getLevel() >= MIN_LEVEL) - { - addExpAndSp(player, 19_890_000, 4_773); - } - htmltext = "32180-02.html"; - } - } - break; - } - case State.COMPLETED: - { - if ((npc.getId() == ADVENTURER) && st.isNowAvailable()) - { - st.setState(State.CREATED); - htmltext = "32327-01.htm"; - } - else if ((npc.getId() == BESTIAN) && st.isCompleted() && !st.isNowAvailable()) - { - htmltext = "32180-03.html"; - } - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState st = getQuestState(killer, false); - - if ((st != null) && st.isCond(1)) - { - if (giveItemRandomly(killer, EVIL_SPIRIT, 1, 77, 0.4, true)) - { - st.setCond(2, true); - } - } - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-00.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-00.html deleted file mode 100644 index 3b2b5db3ae..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-00.html +++ /dev/null @@ -1,3 +0,0 @@ -Goddard Vanguard Sirik:
-(3rd Class Transfer may take this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-01.htm deleted file mode 100644 index 3523773244..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Goddard Vanguard Sirik:
-You look like you are a seasoned veteran of slaying monsters, right? I have a small request if you're interested.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-02.htm deleted file mode 100644 index 880c60fd15..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-02.htm +++ /dev/null @@ -1,4 +0,0 @@ -Goddard Vanguard Sirik:
-You see this guy standing next to me? He's some sort of big shot from Elmore, sent here to investigate the new monsters near the Shrine of Loyalty. Now I'm stuck here babysitting him.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-03.htm deleted file mode 100644 index c4311801d7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-03.htm +++ /dev/null @@ -1,6 +0,0 @@ -Goddard Vanguard Sirik:
-Hahaha. No, babysitting this guy isn't the problem.
-These creatures all around us though, those are the problem. You see I'm not a very skilled Vanguard member. I'm much better at running away than fighting. But I can’t run with this guy around. If he dies, then my father is going to be super mad at me.
-I need someone to help protect me so I can protect him... which I guess is pretty much the same as protecting him.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-04.htm deleted file mode 100644 index 2621b13104..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-04.htm +++ /dev/null @@ -1,3 +0,0 @@ -Goddard Vanguard Sirik:
-No, I don't want you to do that, I just want you to eliminate some of these new monsters around here. If you do that, it pretty much makes my job significantly easier. I need you to hunt down and defeat the Succubus Soldiers, Succubus Warriors, Succubus Archers, and Succubus Shamans. They should drop Dimensional Fragments. Collect 50 of these as proof that you have eliminated these mobs and I'll reward you for doing this. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-05.html deleted file mode 100644 index 4ddf8e61e9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Goddard Vanguard Sirik:
-AGH! Not again! I thought you were a spooky ghost. Please don't sneak up on me like that.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-06.html deleted file mode 100644 index 6b3e6bbadc..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Goddard Vanguard Sirik:
-Let's see what you have here! Well, you have all 50 Dimensional Fragments here, but it doesn't really feel any safer around here. Damn...
-I don't mean to sound ungrateful, but maybe next time you can do a better job? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-07.html deleted file mode 100644 index c329da90af..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/33649-07.html +++ /dev/null @@ -1,3 +0,0 @@ -Goddard Vanguard Sirik:
-I need you to hunt down and defeat the Succubus Soldiers, Succubus Warriors, Succubus Archers, and Succubus Shamans. They should drop Dimensional Fragments. Collect 50 of these as proof that you have eliminated these mobs and I'll reward you for doing this. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/Q00491_InNominePatris.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/Q00491_InNominePatris.java deleted file mode 100644 index 1270a10dad..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/Q00491_InNominePatris.java +++ /dev/null @@ -1,157 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00491_InNominePatris; - -import com.l2jmobius.gameserver.enums.ChatType; -import com.l2jmobius.gameserver.enums.QuestType; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.base.ClassLevel; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; -import com.l2jmobius.gameserver.network.NpcStringId; -import com.l2jmobius.gameserver.network.serverpackets.NpcSay; - -/** - * In Nomine Patris (491) - * @URL https://l2wiki.com/In_Nomine_Patris - * @author Gigi - */ -public class Q00491_InNominePatris extends Quest -{ - // NPCs - private static final int SIRIK = 33649; - // Monster's - private static final int[] MONSTERS = - { - 23181, // Succubus Soldier - 23182, // Succubus Warrior - 23183, // Succubus Archer - 23184 // Succubus Shaman - }; - // Items - private static final int DIMENSIONAL_FRAGMENT = 34768; - // Others - private static final int MIN_LEVEL = 76; - private static final int MAX_LEVEL = 81; - // Reward - private static final int EXP_REWARD = 184210; - private static final int SP_REWARD = 45; - - public Q00491_InNominePatris() - { - super(491); - addStartNpc(SIRIK); - addTalkId(SIRIK); - addKillId(MONSTERS); - registerQuestItems(DIMENSIONAL_FRAGMENT); - addCondLevel(MIN_LEVEL, MAX_LEVEL, "no_level.html"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - String htmltext = null; - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return getNoQuestMsg(player); - } - switch (event) - { - case "33649-02.htm": - case "33649-03.htm": - { - htmltext = event; - break; - } - case "33649-04.htm": - { - qs.startQuest(); - npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, SIRIK, NpcStringId.HURRY_AND_DEFEAT_THOSE_MONSTERS)); - htmltext = event; - break; - } - case "33649-06.html": - { - npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, SIRIK, NpcStringId.HMM_THANK_YOU_SO_THEN_MAYBE_I_WON_T_HAVE_TO_GET_INVOLVED)); - addExpAndSp(player, (EXP_REWARD * player.getLevel()), (SP_REWARD * player.getLevel())); - qs.exitQuest(QuestType.DAILY, true); - htmltext = event; - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - if (npc.getId() == SIRIK) - { - switch (qs.getState()) - { - case State.COMPLETED: - { - if (!qs.isNowAvailable()) - { - htmltext = "complete.htm"; - break; - } - qs.setState(State.CREATED); - } - case State.CREATED: - { - htmltext = ((player.getClassId().level() == ClassLevel.FOURTH.ordinal()) ? "33649-01.htm" : "33649-00.html"); - break; - } - case State.STARTED: - { - if (qs.isCond(1)) - { - htmltext = "33649-07.html"; - } - else if (qs.isCond(2)) - { - htmltext = "33649-05.html"; - } - break; - } - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState qs = getQuestState(killer, false); - - if ((qs != null) && (qs.isCond(1))) - { - if (giveItemRandomly(killer, npc, DIMENSIONAL_FRAGMENT, 1, 50, 0.5, true)) - { - qs.setCond(2, true); - } - } - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/complete.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/complete.htm deleted file mode 100644 index 0400900c38..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/complete.htm +++ /dev/null @@ -1,4 +0,0 @@ -Goddard Vanguard Sirik:
-Yes, the number of Succubi in the area is down thanks to your efforts in thinning out their numbers. I feel safer already. Hopefully this scholar will finish his research fast so we can be done with area.
-(You can only do this quest once a day. This quest resets everyday at 6:30 AM.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/no_level.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/no_level.htm deleted file mode 100644 index b74f8db970..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00491_InNominePatris/no_level.htm +++ /dev/null @@ -1,3 +0,0 @@ -You don't meet level requirements
-(Quest available from level 76 to level 81) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-01.htm deleted file mode 100644 index 54a71a09db..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-01.htm +++ /dev/null @@ -1,6 +0,0 @@ -Beast Herder Tunatun:
-The meat here is famous, and I'm not bragging. A hint of Kookaburra, a savory note of Cougar, and the tender taste of Buffalo meat... I'd offer a sample of Grendel meat,
-IF we had a butcher!
-The problem is they get too big, we need a butcher to handle them when they're full grown.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-02.html deleted file mode 100644 index a36606b856..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Beast Herder Tunatun:
-Wow, you really ARE ready for anything! Ha!
-Alright, let's talk business. We need the best meat, if the beasts aren't big enough then the meat isn't ready. The young ones taste okay, but if we don't provide the best someone else will.
-For a good harvest we'll need about 120 units... That would turn a nice profit. Vladimir will decide if the meat is good enough. Ahh.. I love a good beast hunt. Let's get it done! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-03.html deleted file mode 100644 index 836da343e9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-03.html +++ /dev/null @@ -1,5 +0,0 @@ -Beast Herder Tunatun:
-Wow, ready for anything aren't you? Haha!
-Listen, you can't take these beasts lightly. The moment you do.. well.. there are no kind words for it. Even an adventurer with your skills could fall prey to a big one..
-(Only characters with level 82 and above are permitted to take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-04.html deleted file mode 100644 index e5d747bcc3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Beast Herder Tunatun:
-We need 120 units of meat. One unit serves one person. My customer feeds 120 people, really it's not hard to understand.. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-05.html deleted file mode 100644 index 6ff7f123fd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Beast Herder Tunatun:
-You make it look so easy! Too bad I can't convince you to stay.. skills like yours are always welcome!
Here's the deal. Cash is thin right now, and we won't receive payment until we ship. For now, how about an item instead?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-06.html deleted file mode 100644 index d43890f667..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/31537-06.html +++ /dev/null @@ -1,3 +0,0 @@ -Beast Herder Tunatun:
-Great, you've really been working hard. We'll have to do it again sometime! I could ship this daily, so the work is always here if you want it. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/Q00631_DeliciousTopChoiceMeat.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/Q00631_DeliciousTopChoiceMeat.java deleted file mode 100644 index 196f5cfb3c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00631_DeliciousTopChoiceMeat/Q00631_DeliciousTopChoiceMeat.java +++ /dev/null @@ -1,218 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00631_DeliciousTopChoiceMeat; - -import java.util.HashMap; -import java.util.Map; - -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; - -/** - * Delicious Top Choice Meat (631) - * @author Adry_85 - */ -public class Q00631_DeliciousTopChoiceMeat extends Quest -{ - // NPC - private static final int TUNATUN = 31537; - // Items - private static final int TOP_QUALITY_MEAT = 7546; - private static final int PRIME_MEAT = 15534; - // Misc - private static final int MIN_LEVEL = 82; - private static final int PRIME_MEAT_COUNT = 120; - // Rewards - private static final int[] RECIPE = - { - 10373, // Recipe - Icarus Sawsword (60%) - 10374, // Recipe - Icarus Disperser (60%) - 10375, // Recipe - Icarus Spirit (60%) - 10376, // Recipe - Icarus Heavy Arms (60%) - 10377, // Recipe - Icarus Trident (60%) - 10378, // Recipe - Icarus Hammer (60%) - 10379, // Recipe - Icarus Hand (60%) - 10380, // Recipe - Icarus Hall (60%) - 10381, // Recipe - Icarus Spitter (60%) - }; - private static final int[] PIECE = - { - 10397, // Icarus Sawsword Piece - 10398, // Icarus Disperser Piece - 10399, // Icarus Spirit Piece - 10400, // Icarus Heavy Arms Piece - 10401, // Icarus Trident Piece - 10402, // Icarus Hammer Piece - 10403, // Icarus Hand Piece - 10404, // Icarus Hall Piece - 10405, // Icarus Spitter Piece - }; - private static final int GOLDEN_SPICE_CRATE = 15482; - private static final int CRYSTAL_SPICE_COMPRESSED_PACK = 15483; - private static final Map MOBS_MEAT = new HashMap<>(); - static - { - MOBS_MEAT.put(18878, 0.172); // Full Grown Kookaburra - MOBS_MEAT.put(18879, 0.334); // Full Grown Kookaburra - MOBS_MEAT.put(18885, 0.172); // Full Grown Cougar - MOBS_MEAT.put(18886, 0.334); // Full Grown Cougar - MOBS_MEAT.put(18892, 0.182); // Full Grown Buffalo - MOBS_MEAT.put(18893, 0.349); // Full Grown Buffalo - MOBS_MEAT.put(18899, 0.182); // Full Grown Grendel - MOBS_MEAT.put(18900, 0.349); // Full Grown Grendel - } - - public Q00631_DeliciousTopChoiceMeat() - { - super(631); - addStartNpc(TUNATUN); - addTalkId(TUNATUN); - addKillId(MOBS_MEAT.keySet()); - registerQuestItems(TOP_QUALITY_MEAT, PRIME_MEAT); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "quest_accept": - { - if (player.getLevel() >= MIN_LEVEL) - { - qs.startQuest(); - htmltext = "31537-02.html"; - } - else - { - htmltext = "31537-03.html"; - } - break; - } - case "31537-06.html": - { - if (qs.isCond(2) && (getQuestItemsCount(player, PRIME_MEAT) >= PRIME_MEAT_COUNT)) - { - switch (getRandom(10)) - { - case 0: - { - rewardItems(player, RECIPE[getRandom(RECIPE.length)], 1); - break; - } - case 1: - { - rewardItems(player, PIECE[getRandom(PIECE.length)], 1); - break; - } - case 2: - { - rewardItems(player, PIECE[getRandom(PIECE.length)], 2); - break; - } - case 3: - { - rewardItems(player, PIECE[getRandom(PIECE.length)], 3); - break; - } - case 4: - { - rewardItems(player, PIECE[getRandom(PIECE.length)], getRandom(5) + 2); - break; - } - case 5: - { - rewardItems(player, PIECE[getRandom(PIECE.length)], getRandom(7) + 2); - break; - } - case 6: - { - rewardItems(player, GOLDEN_SPICE_CRATE, 1); - break; - } - case 7: - { - rewardItems(player, GOLDEN_SPICE_CRATE, 2); - break; - } - case 8: - { - rewardItems(player, CRYSTAL_SPICE_COMPRESSED_PACK, 1); - break; - } - case 9: - { - rewardItems(player, CRYSTAL_SPICE_COMPRESSED_PACK, 2); - break; - } - } - qs.exitQuest(true, true); - htmltext = event; - } - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) - { - final QuestState qs = getRandomPartyMemberState(player, 1, 3, npc); - if ((qs != null) && giveItemRandomly(qs.getPlayer(), npc, PRIME_MEAT, 1, PRIME_MEAT_COUNT, MOBS_MEAT.get(npc.getId()), true)) - { - qs.setCond(2, true); - } - return super.onKill(npc, player, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - if (qs.isCreated()) - { - htmltext = "31537-01.htm"; - } - else if (qs.isStarted()) - { - if (qs.isCond(1)) - { - if (getQuestItemsCount(player, PRIME_MEAT) < PRIME_MEAT_COUNT) - { - htmltext = "31537-04.html"; - } - } - else if (qs.isCond(2) && (getQuestItemsCount(player, PRIME_MEAT) >= PRIME_MEAT_COUNT)) - { - htmltext = "31537-05.html"; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-0.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-0.htm deleted file mode 100644 index 6b96cda9d7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-0.htm +++ /dev/null @@ -1,7 +0,0 @@ -Shilen's Stone Statue:
-I am Shilen's avatar.
-Shilen commanded me to watch over this island and protect it from evil beings.
-The duty is growing increasingly difficult. But I have prayed to Shilen and she has decreed that she would send a warrior who can defeat the threat we face.
-Are you the one? No... You are too weak to be the warrior mother Shilen spoke of.
-(Only characters level 77 and above are permitted to take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-0a.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-0a.htm deleted file mode 100644 index 37657d6313..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-0a.htm +++ /dev/null @@ -1,4 +0,0 @@ -Shilen's Stone Statue:
-You are the one with the Elrokian warrior's spirit! Did you discover the whereabouts of Gazkh's fragments?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-0b.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-0b.htm deleted file mode 100644 index b55e2ee137..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-0b.htm +++ /dev/null @@ -1,4 +0,0 @@ -Shilen's Stone Statue:
-Infidel! To even touch sacred Shilen's statue, much less seek to awaken Shilen's avatar! For this insult, you deserve eternal punishment!
-But I see that you are an ignorant fool, so I will forgive your error. Now begone! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-0c.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-0c.htm deleted file mode 100644 index 896a6983c8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-0c.htm +++ /dev/null @@ -1,8 +0,0 @@ -Shilen's Stone Statue:
-Ah? So, the dinosaurs themselves contain some fragments of Gazkh?
-I suppose that it is possible...if the ax was broken and the fragments were scattered by the force Shilen used to seal Sailren.
-The predator dinosaurs here have skin harder than iron -- I doubt they would ever feel the fragments embedded in their hides. In fact, the very power of Gazkh has probably greatly extended their lifespans.
-You who contain an ancient Elrokian spirit, you are the only one who can hunt those dinosaurs and bring back the Gazkh fragments.
-Choose now. Will you attempt to recover the fragments?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-1.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-1.html deleted file mode 100644 index 4fb3f1cc14..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-1.html +++ /dev/null @@ -1,5 +0,0 @@ -Shilen's Stone Statue:
-Very well. Yes, you are truly the one sent by mother Shilen... Listen carefully as I tell you about the dinosaurs that may contain Gazkh fragments.
-You will encounter predatory dinosaurs such as Velociraptor and Pterosaur. They are not as strong as Sailren, but vicious nevertheless. These are the most likely to contain the fragments. Go and hunt them -- find the fragments! Remember, you must return with at least 30 fragments. If you bring me 30 fragments or more, I will reforge them into an intact axe head. Ah, could our deliverance finally be at hand?
-May Shilen help you strike true! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-1a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-1a.html deleted file mode 100644 index f013eb8e17..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-1a.html +++ /dev/null @@ -1,4 +0,0 @@ -Shilen's Stone Statue:
-As I told you before, I need more than 30 Gazkh fragments in order to restore this powerful weapon back to its original form...
-Hunt Velociraptor and Pterosaur in this area and bring back more than 30 fragments. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-2.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-2.html deleted file mode 100644 index 6519304391..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-2.html +++ /dev/null @@ -1,7 +0,0 @@ -Shilen's Stone Statue:
-You have brought all the Gazkh fragments!
-Shilen be praised! The power of the seal stones to guard that dangerous Sailren will be increased now that an Elrokian warrior again wields Gazkh.
-You are indeed the chosen of Shilen!
-The task is now yours. Are you ready to face the monsters within?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-2a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-2a.html deleted file mode 100644 index 4660a53a63..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/32109-2a.html +++ /dev/null @@ -1,7 +0,0 @@ -Shilen's Stone Statue:
-Very well. By the power of Shilen, Gazkh has been restored.
-It possesses the powers that can defeat Sailren.
-You are now the true master of Gazkh.
-Shilen has decreed that the one who can wield Gazkh can defeat Sailren. Go now and defeat that evil dinosaur! Save this island and its people.
-Let me aid you one final time by giving you some additional guidance. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/Q00641_AttackSailren.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/Q00641_AttackSailren.java deleted file mode 100644 index 7a78b8b4f7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00641_AttackSailren/Q00641_AttackSailren.java +++ /dev/null @@ -1,140 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00641_AttackSailren; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -import quests.Q00126_TheNameOfEvil2.Q00126_TheNameOfEvil2; - -/** - * Attack Sailren! (641) - * @author Adry_85 - */ -public class Q00641_AttackSailren extends Quest -{ - // NPC - private static final int SHILENS_STONE_STATUE = 32109; - // Items - private static final int GAZKH_FRAGMENT = 8782; - private static final int GAZKH = 8784; - // Monsters - private static int[] MOBS = - { - 22196, // Velociraptor - 22197, // Velociraptor - 22198, // Velociraptor - 22218, // Velociraptor - 22223, // Velociraptor - 22199, // Pterosaur - }; - - public Q00641_AttackSailren() - { - super(641); - addStartNpc(SHILENS_STONE_STATUE); - addTalkId(SHILENS_STONE_STATUE); - addKillId(MOBS); - registerQuestItems(GAZKH_FRAGMENT); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return getNoQuestMsg(player); - } - - switch (event) - { - case "32109-1.html": - { - qs.startQuest(); - break; - } - case "32109-2a.html": - { - if (getQuestItemsCount(player, GAZKH_FRAGMENT) >= 30) - { - giveItems(player, GAZKH, 1); - qs.exitQuest(true, true); - } - break; - } - } - return event; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) - { - final L2PcInstance partyMember = getRandomPartyMember(player, 1); - if (partyMember != null) - { - final QuestState qs = getQuestState(partyMember, false); - if (qs != null) - { - giveItems(partyMember, GAZKH_FRAGMENT, 1); - if (getQuestItemsCount(partyMember, GAZKH_FRAGMENT) < 30) - { - playSound(partyMember, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - else - { - qs.setCond(2, true); - } - } - } - return super.onKill(npc, player, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - QuestState qs = getQuestState(player, true); - - switch (qs.getState()) - { - case State.CREATED: - { - if (player.getLevel() < 77) - { - htmltext = "32109-0.htm"; - } - else - { - qs = player.getQuestState(Q00126_TheNameOfEvil2.class.getSimpleName()); - htmltext = ((qs != null) && qs.isCompleted()) ? "32109-0a.htm" : "32109-0b.htm"; - } - break; - } - case State.STARTED: - { - htmltext = qs.isCond(1) ? "32109-1a.html" : "32109-2.html"; - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-01.htm deleted file mode 100644 index 3b03281122..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Dinn:
-Oh, a dangerous island like this is no place for someone like you! If you value your life, leave at once!
-(Only characters who are level 75 or above may undertake this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-02.htm deleted file mode 100644 index b8004b72be..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-02.htm +++ /dev/null @@ -1,4 +0,0 @@ -Dinn:
-Oh, I haven't seen an outsider on this dangerous and remote island in ages. You've come to find the truth behind all the rumors, haven't you?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-03.htm deleted file mode 100644 index 62a83ff014..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-03.htm +++ /dev/null @@ -1,5 +0,0 @@ -Dinn:
-This island was only just discovered, and it's already clear that it's unlike anywhere else. There are enormous, vicious creatures who live here.
-Of course, there are people who are curious to find out more...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-04.htm deleted file mode 100644 index dfbf7a4c02..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-04.htm +++ /dev/null @@ -1,7 +0,0 @@ -Dinn:
-Some of the Wizards call those creatures "dinosaurs." They weren't created by any of the known gods of Aden.
-The Wizards are curious about where they came from.
-Also, artisans from all over are very interested in using these powerful creatures as the basis for new weaponry and machines.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-05.html deleted file mode 100644 index 7ed2d28ddc..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-05.html +++ /dev/null @@ -1,7 +0,0 @@ -Dinn:
-Good! I know that both the Wizards and Dwarven artisans will welcome your help. This place is far too dangerous for ordinary researchers!
-On to business, then. We need eggs and tissue samples from Pterosaurs, Tyrannosauruses and Velociraptors.
-Just so you know, 1 Dinosaur Egg and 150 Dinosaur Tissues can be processed as a set.
-You can find dinosaur eggs by searching near a dinosaur's lair. But once you touch one, any dinosaurs nearby will rush back to protect the egg!
-We will reward you for whatever you bring back. If you'd like to see a list of reward options, just say "I want to look at other items." Good luck! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-06.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-06.htm deleted file mode 100644 index 987b3ea33c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-06.htm +++ /dev/null @@ -1,3 +0,0 @@ -Dinn:
-What, did I say something? Forgive me -- you seem preoccupied with your own affairs. Please go on about your own business. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-07.html deleted file mode 100644 index 7cf4c36117..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-07.html +++ /dev/null @@ -1,7 +0,0 @@ -Dinn:
-Many people are depending on you!
-We need eggs and tissue samples from Pterosaurs, Tyrannosauruses and Velociraptors.
-Just so you know, 1 Dinosaur Egg and 150 Dinosaur Tissues can be processed as a set.
-You can find dinosaur eggs by searching near a dinosaur's lair. But once you touch one, any dinosaurs nearby will rush back to protect the egg!
-We will reward you for whatever you bring back. If you'd like to see a list of reward options, just say "I want to look at other items." Go out and get as much as you can! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-08.html deleted file mode 100644 index 861a9562d9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-08.html +++ /dev/null @@ -1,6 +0,0 @@ -Dinn:
-Oh! you have gathered them. Everyone will be pleased.
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-09.html deleted file mode 100644 index d41083ddc4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-09.html +++ /dev/null @@ -1,5 +0,0 @@ -Dinn:
-Thank you. Your efforts have greatly aided our research, and I hope our efforts will allow many others to visit this island. Please accept this small token of our appreciation. Could I convince you to continue working on our behalf?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-10.html deleted file mode 100644 index 039de2bf4b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-10.html +++ /dev/null @@ -1,3 +0,0 @@ -Dinn:
-Adventurer, choose wisely how you will use what you have earned... - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-11.html deleted file mode 100644 index 0449e79a13..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-11.html +++ /dev/null @@ -1,7 +0,0 @@ -Dinn:
-Thanks you!
-Then keep hunting Pterosaurs, Tyrannosauruses and Velociraptors and collect samples of their tissues.
-Just so you know, 1 Dinosaur Egg and 150 Dinosaur Tissues can be processed as a set.
-You can find dinosaur eggs by searching near a dinosaur's lair. But once you touch one, any dinosaurs nearby will rush back to protect the egg!
-Good luck! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-12.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-12.html deleted file mode 100644 index 672e481d52..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-12.html +++ /dev/null @@ -1,3 +0,0 @@ -Dinn:
-Ah, I see you are off to another adventure! Thank you so much for helping us. We can handle the rest, I think. I wish you safe travel and good fortune! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-13.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-13.html deleted file mode 100644 index 711a8fa091..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-13.html +++ /dev/null @@ -1,3 +0,0 @@ -Dinn:
-Ah, ready for other adventures, eh? Well, thank you very much for your help. I wish you a safe and prosperous journey! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-14.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-14.html deleted file mode 100644 index 0047b52f78..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/32105-14.html +++ /dev/null @@ -1,3 +0,0 @@ -Dinn:
-You don't have any dinosaur tissue here! Hunt Pterosaurs, Tyrannosauruses and Velociraptors and gather samples of their tissue. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/Q00642_APowerfulPrimevalCreature.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/Q00642_APowerfulPrimevalCreature.java deleted file mode 100644 index 761ad294a7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00642_APowerfulPrimevalCreature/Q00642_APowerfulPrimevalCreature.java +++ /dev/null @@ -1,161 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00642_APowerfulPrimevalCreature; - -import java.util.HashMap; -import java.util.Map; - -import com.l2jmobius.gameserver.enums.QuestType; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; - -/** - * A Powerful Primeval Creature (642) - * @author Adry_85 - */ -public class Q00642_APowerfulPrimevalCreature extends Quest -{ - // NPC - private static final int DINN = 32105; - // Items - private static final int DINOSAUR_TISSUE = 8774; - private static final int DINOSAUR_EGG = 8775; - // Misc - private static final int MIN_LEVEL = 75; - // Mobs - private static final int ANCIENT_EGG = 18344; - - private static final Map MOBS_TISSUE = new HashMap<>(); - static - { - MOBS_TISSUE.put(22196, 0.309); // Velociraptor - MOBS_TISSUE.put(22197, 0.309); // Velociraptor - MOBS_TISSUE.put(22198, 0.309); // Velociraptor - MOBS_TISSUE.put(22199, 0.309); // Pterosaur - MOBS_TISSUE.put(22215, 0.988); // Tyrannosaurus - MOBS_TISSUE.put(22216, 0.988); // Tyrannosaurus - MOBS_TISSUE.put(22217, 0.988); // Tyrannosaurus - MOBS_TISSUE.put(22218, 0.309); // Velociraptor - MOBS_TISSUE.put(22223, 0.309); // Velociraptor - } - - public Q00642_APowerfulPrimevalCreature() - { - super(642); - addStartNpc(DINN); - addTalkId(DINN); - addKillId(ANCIENT_EGG); - addKillId(MOBS_TISSUE.keySet()); - registerQuestItems(DINOSAUR_TISSUE, DINOSAUR_EGG); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - - String htmltext = event; - switch (event) - { - case "32105-05.html": - { - qs.startQuest(); - break; - } - case "32105-06.htm": - { - qs.exitQuest(QuestType.REPEATABLE); - break; - } - case "32105-09.html": - { - if (hasQuestItems(player, DINOSAUR_TISSUE)) - { - giveAdena(player, 5000 * getQuestItemsCount(player, DINOSAUR_TISSUE), true); - takeItems(player, DINOSAUR_TISSUE, -1); - } - else - { - htmltext = "32105-14.html"; - } - break; - } - case "exit": - { - if (hasQuestItems(player, DINOSAUR_TISSUE)) - { - giveAdena(player, 5000 * getQuestItemsCount(player, DINOSAUR_TISSUE), true); - qs.exitQuest(true, true); - htmltext = "32105-12.html"; - } - else - { - qs.exitQuest(true, true); - htmltext = "32105-13.html"; - } - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState qs = getRandomPartyMemberState(killer, -1, 3, npc); - - if (qs == null) - { - return null; - } - - final int npcId = npc.getId(); - - if (MOBS_TISSUE.containsKey(npcId)) - { - giveItemRandomly(qs.getPlayer(), npc, DINOSAUR_TISSUE, 1, 0, MOBS_TISSUE.get(npcId), true); - } - else - { - giveItemRandomly(qs.getPlayer(), npc, DINOSAUR_EGG, 1, 0, 1.0, true); - } - return super.onKill(npc, killer, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - if (qs.isCreated()) - { - htmltext = player.getLevel() < MIN_LEVEL ? "32105-01.htm" : "32105-02.htm"; - } - else if (qs.isStarted()) - { - htmltext = hasAtLeastOneQuestItem(player, DINOSAUR_TISSUE, DINOSAUR_EGG) ? "32105-08.html" : "32105-07.html"; - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-01.htm deleted file mode 100644 index edcc5894df..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-01.htm +++ /dev/null @@ -1,8 +0,0 @@ -Singsing:
-Ah, an adventurer! Are you looking for a job? Since the discovery of this Primeval Isle, Aden port has added a wharf for those interested in seeing the strange new island for themselves.
-In fact, we're getting flooded with adventurers and wizards eager to uncover the island's mysteries or test their mettle against the terrible creatures there.
-We handle tickets here for the ship bound for the island as well as offering accommodations for those who wish to trade with the natives.
-Now we have expanded our service to connect adventurers with those in need of their services.
-Ah, but there is one request I have...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-02.htm deleted file mode 100644 index ab4f00b4bd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-02.htm +++ /dev/null @@ -1,7 +0,0 @@ -Singsing:
-On this Primeval Isle you'll find primitive creatures called dinosaurs -- you'll never see anything like them in Aden, believe me! According to wise wizards, even the gods and Giants were afraid of the dinosaurs. They cannot be found in Aden -- thankfully -- but are still plentiful on that strange island.
-Around the wharf, you'll find only relatively weak ones, but they are still a challenge for even the hardiest adventurer.
-The wizard Karakawei has been pestering me to acquire some of those creatures' bone for study. If you defeat them and bring back their bones, I will purchase them from you on his behalf. What do you say?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-03.html deleted file mode 100644 index c84d9de316..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-03.html +++ /dev/null @@ -1,5 +0,0 @@ -Singsing:
-Ah, you are a true adventurer! Go and hunt Pachycephalosaurus and wild striders and bring back the bones of dinosaurs from the plains. I will purchase them from you on Karakawei's behalf.
-Just as a favor to you, I heard from a friend of mine who trades with the island natives that the native shaman is also in the market for dinosaur bones. While you're at it, you may want to try to contact him as well.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-04.htm deleted file mode 100644 index 188cf496d0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-04.htm +++ /dev/null @@ -1,3 +0,0 @@ -Singsing:
-Sure, I understand. I don't think this island is the place for you, though, if you're afraid of reptiles. (So much for being an adventurer!) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-05.html deleted file mode 100644 index 82cdff5a1d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-05.html +++ /dev/null @@ -1,3 +0,0 @@ -Singsing:
-The shaman lives on the island's southern Primeval Plains. He doesn't like to have contact with outsiders, though, so you'll need someone he trusts to vouch for you before he'll likely talk to you. There is a native warrior, Orahochin, who lives at the foot of the mountain between the southern shore of Primeval Plains and the Lost Nest. I've heard that he is more accepting of outsiders. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-06.html deleted file mode 100644 index 12c5465c1d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-06.html +++ /dev/null @@ -1,9 +0,0 @@ -Singsing:
-Ah, an adventurer! Are you looking for a job? Since the discovery of this Primeval Isle, Aden port has added a wharf for those interested in seeing the strange new island for themselves.
-In fact, we're getting flooded with adventurers and wizards eager to uncover the island's mysteries or test their mettle against the terrible creatures there.
-We handle tickets here for the ship bound for the island as well as offering accommodations for those who wish to trade with the natives.
-Now we have expanded our service to connect adventurers with those in need of their services.
-I have just one request, but hmmm...
-I don't think that you're suited for this particular task.
-(Only characters level 75 and above are permitted to take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-07.html deleted file mode 100644 index 4c0b5b17bc..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-07.html +++ /dev/null @@ -1,3 +0,0 @@ -Singsing:
-I don't think this task is suitable for you.
(Only characters level 75 and above are permitted to take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-08.html deleted file mode 100644 index 701976b669..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-08.html +++ /dev/null @@ -1,5 +0,0 @@ -Singsing:
-I see that you've returned! The bones of dinosaurs from the plains you've brought will certainly further Pillbug's research...and I'm sure he'll pay well for them.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-09.html deleted file mode 100644 index e7846328ce..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-09.html +++ /dev/null @@ -1,6 +0,0 @@ -Singsing:
-Well done! Karakawei will be very pleased.
Here's the fee we agreed upon; I trust it's sufficient.
-Say, since you've done such a good job, how about continuing this kind of work?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-10.html deleted file mode 100644 index 0b49c6db90..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-10.html +++ /dev/null @@ -1,3 +0,0 @@ -Singsing:
-Glad to hear it! I think you'll make us both rich men at this rate. Go and hunt Pachycephalosaurus and wild striders and bring back their bones. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-11.html deleted file mode 100644 index 2a8d461f2f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-11.html +++ /dev/null @@ -1,3 +0,0 @@ -Singsing:
-Well, thanks for your help. It was a pleasure doing business with you, and I wish you the best of luck during your stay on this Primeval Isle. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-12.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-12.html deleted file mode 100644 index 28bb00ef18..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-12.html +++ /dev/null @@ -1,3 +0,0 @@ -Singsing:
-Thanks for your help; it was a pleasure doing business with you. I know that Karakawei is going to be one happy wizard! Farewell, and I wish you the best of luck during your stay on this Primeval Isle. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-13.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-13.html deleted file mode 100644 index 30219ffe11..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-13.html +++ /dev/null @@ -1,4 +0,0 @@ -Singsing:
-Hey, that wasn't really what I had in mind... Ah, I suppose it is your decision how to dispose of the bones of dinosaurs from the plains. You did risk your own skin for them, after all. But are you sure that this is the most profitable thing for you to do?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-14.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-14.html deleted file mode 100644 index 6b929a94f2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32106-14.html +++ /dev/null @@ -1,7 +0,0 @@ -Singsing:
-Please go and collect those dinosaur bones as quickly as possible. Karakawei's been pressing me even harder these days.
-Without the bones, I think his research has ground to a halt.
-He's planning to present his findings to the Mizbody Magic Association very soon, and I know he's getting anxious.
-So get started!
-Hunt the Pachycephalosaurus and wild striders from the plains and bring back their bones. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-01.html deleted file mode 100644 index 57059df16c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Shaman Karakawei:
-Once our race was strong and wise, Shilen's chosen people to govern these powerful primitive creatures, dinosaurs, who struck fear into the hearts of the very gods themselves. But long ago, Shilen fell silent; our prayers to her now go unanswered.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-02.html deleted file mode 100644 index 058816b17d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-02.html +++ /dev/null @@ -1,8 +0,0 @@ -Karakawei:
-We know not... Perhaps we have been unfaithful. But we must win back Shilen's favor. Without it, we grow weaker with each passing season, sickening like a tree deprived of sunlight. Without her blessing, our race grows weaker and weaker... We become ill... Even the dinosaurs that we once commanded turn against us, tearing our people to pieces!
-Outsider, if you are willing to help us to earn back the favor of Shilen,
-please donate 300 bones from the dinosaurs of the plains.
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-03.html deleted file mode 100644 index 09e448c937..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-03.html +++ /dev/null @@ -1,7 +0,0 @@ -Karakawei:
-You are the adventurer from earlier... What business do you have with our tribe?
- - - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-04.html deleted file mode 100644 index b8cc7a7601..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-04.html +++ /dev/null @@ -1,4 +0,0 @@ -Karakawei:
-To undertake the necessary ritual, I need 300 bones of dinosaurs from the plains. Unless I do this, the curse cannot be lifted; Shilen's grace will be forever denied to us, I fear.
-Please make haste and hunt Pachycephalosaurus and wild striders and bring back 300 bones of dinosaurs from the plains. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-05.html deleted file mode 100644 index 2d33097179..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-05.html +++ /dev/null @@ -1,14 +0,0 @@ -Karakawei:
-Thank you, adventurer...
-I can now perform the ritual.
-(Karakawei softly chants and seems to lose consciousness.)
-....
-....
-....
-....
-(Suddenly, his eyes open!)
-Ah, I feel that Shilen is satisfied with the ritual!
-Thank you, adventurer...
-Please accept this as a token of our appreciation.

-I also ask that you bring back those bones of the dinosaurs from the plains so that we may continue with these rituals! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-06.html deleted file mode 100644 index 84ed42d1c0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Karakawei:
-Hmmmph! Arrogant, you are, like all outsiders. If my race still had the power of the old days, you would treat us with the respect that is our due!
-Ah, Shilen...forgive us!
You, leave now if you still refuse to help us in our time of need. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-07.html deleted file mode 100644 index 1c0d96bfe4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/32117-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Karakawei:
-Once our race was strong and wise, Shilen's chosen people to govern these powerful primitive creatures, dinosaurs, who struck fear into the hearts of the very gods themselves. But long ago, Shilen fell silent; our prayers to her now go unanswered.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/Q00643_RiseAndFallOfTheElrokiTribe.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/Q00643_RiseAndFallOfTheElrokiTribe.java deleted file mode 100644 index 5ef242a30f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00643_RiseAndFallOfTheElrokiTribe/Q00643_RiseAndFallOfTheElrokiTribe.java +++ /dev/null @@ -1,257 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00643_RiseAndFallOfTheElrokiTribe; - -import com.l2jmobius.Config; -import com.l2jmobius.commons.util.CommonUtil; -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * Rise and Fall of the Elroki Tribe (643) - * @author Adry_85 - */ -public class Q00643_RiseAndFallOfTheElrokiTribe extends Quest -{ - // NPCs - private static final int SINGSING = 32106; - private static final int KARAKAWEI = 32117; - // Item - private static final int BONES_OF_A_PLAINS_DINOSAUR = 8776; - // Misc - private static final int MIN_LEVEL = 75; - private static final int CHANCE_MOBS1 = 116; - private static final int CHANCE_MOBS2 = 360; - private static final int CHANCE_DEINO = 558; - private boolean isFirstTalk = true; - // Rewards - private static final int[] PIECE = - { - 8712, // Sirra's Blade Edge - 8713, // Sword of Ipos Blade - 8714, // Barakiel's Axe Piece - 8715, // Behemoth's Tuning Fork Piece - 8716, // Naga Storm Piece - 8717, // Tiphon's Spear Edge - 8718, // Shyeed's Bow Shaft - 8719, // Sobekk's Hurricane Edge - 8720, // Themis' Tongue Piece - 8721, // Cabrio's Hand Head - 8722, // Daimon Crystal Fragment - }; - // Mobs - private static final int[] MOBS1 = - { - 22200, // Ornithomimus - 22201, // Ornithomimus - 22202, // Ornithomimus - 22204, // Deinonychus - 22205, // Deinonychus - 22208, // Pachycephalosaurus - 22209, // Pachycephalosaurus - 22210, // Pachycephalosaurus - 22211, // Wild Strider - 22212, // Wild Strider - 22213, // Wild Strider - 22219, // Ornithomimus - 22220, // Deinonychus - 22221, // Pachycephalosaurus - 22222, // Wild Strider - 22224, // Ornithomimus - 22225, // Deinonychus - 22226, // Pachycephalosaurus - 22227, // Wild Strider - }; - - private static final int[] MOBS2 = - { - 22742, // Ornithomimus - 22743, // Deinonychus - 22744, // Ornithomimus - 22745, // Deinonychus - }; - - private static final int DEINONYCHUS = 22203; - - public Q00643_RiseAndFallOfTheElrokiTribe() - { - super(643); - addStartNpc(SINGSING); - addTalkId(SINGSING, KARAKAWEI); - addKillId(MOBS1); - addKillId(MOBS2); - addKillId(DEINONYCHUS); - registerQuestItems(BONES_OF_A_PLAINS_DINOSAUR); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "32106-02.htm": - case "32106-04.htm": - case "32106-05.html": - case "32106-10.html": - case "32106-13.html": - case "32117-02.html": - case "32117-06.html": - case "32117-07.html": - { - htmltext = event; - break; - } - case "quest_accept": - { - if (player.getLevel() >= MIN_LEVEL) - { - qs.startQuest(); - htmltext = "32106-03.html"; - } - else - { - htmltext = "32106-07.html"; - } - break; - } - case "32106-09.html": - { - giveAdena(player, 1374 * getQuestItemsCount(player, BONES_OF_A_PLAINS_DINOSAUR), true); - takeItems(player, BONES_OF_A_PLAINS_DINOSAUR, -1); - htmltext = event; - break; - } - case "exit": - { - if (!hasQuestItems(player, BONES_OF_A_PLAINS_DINOSAUR)) - { - htmltext = "32106-11.html"; - } - else - { - giveAdena(player, 1374 * getQuestItemsCount(player, BONES_OF_A_PLAINS_DINOSAUR), true); - htmltext = "32106-12.html"; - } - qs.exitQuest(true, true); - break; - } - case "exchange": - { - if (getQuestItemsCount(player, BONES_OF_A_PLAINS_DINOSAUR) < 300) - { - htmltext = "32117-04.html"; - } - else - { - rewardItems(player, PIECE[getRandom(PIECE.length)], 5); - takeItems(player, BONES_OF_A_PLAINS_DINOSAUR, 300); - playSound(player, QuestSound.ITEMSOUND_QUEST_MIDDLE); - htmltext = "32117-05.html"; - } - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) - { - final L2PcInstance partyMember = getRandomPartyMember(player, 1); - if (partyMember == null) - { - return super.onKill(npc, player, isSummon); - } - - final int npcId = npc.getId(); - - if (CommonUtil.contains(MOBS1, npcId)) - { - final float chance = CHANCE_MOBS1 * Config.RATE_QUEST_DROP; - if (getRandom(1000) < chance) - { - rewardItems(partyMember, BONES_OF_A_PLAINS_DINOSAUR, 2); - } - else - { - rewardItems(partyMember, BONES_OF_A_PLAINS_DINOSAUR, 1); - } - playSound(partyMember, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - - if (CommonUtil.contains(MOBS2, npcId) && (getRandom(1000) < (CHANCE_MOBS2 * Config.RATE_QUEST_DROP))) - { - rewardItems(partyMember, BONES_OF_A_PLAINS_DINOSAUR, 1); - playSound(partyMember, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - - if ((npcId == DEINONYCHUS) && (getRandom(1000) < (CHANCE_DEINO * Config.RATE_QUEST_DROP))) - { - rewardItems(partyMember, BONES_OF_A_PLAINS_DINOSAUR, 1); - playSound(partyMember, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - return super.onKill(npc, player, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - switch (qs.getState()) - { - case State.CREATED: - { - htmltext = (player.getLevel() >= MIN_LEVEL) ? "32106-01.htm" : "32106-06.html"; - break; - } - case State.STARTED: - { - if (npc.getId() == SINGSING) - { - htmltext = hasQuestItems(player, BONES_OF_A_PLAINS_DINOSAUR) ? "32106-08.html" : "32106-14.html"; - } - else if (npc.getId() == KARAKAWEI) - { - if (isFirstTalk) - { - isFirstTalk = false; - htmltext = "32117-01.html"; - } - else - { - htmltext = "32117-03.html"; - } - } - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-01.htm deleted file mode 100644 index 1fdd521f98..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Karuda:
-Ah, have you come here to help us? Vengeful spirits that we purged long ago have returned. Now, because of the evil spirit Kasha, they are stronger than ever.
-Unless we receive assistance from powerful adventurers, I fear for our people... Will you help us?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-02.html deleted file mode 100644 index d2960b1093..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Karuda:
-Vengeful spirits that we purged long ago have returned. Now, because of the evil spirit Kasha, they are stronger than ever.
-If only you were more experienced, perhaps you could help us...
-(Only characters who are level 80 or higher may undertake this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-03.htm deleted file mode 100644 index a4b82dd970..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-03.htm +++ /dev/null @@ -1,5 +0,0 @@ -Karuda:
-Go to the Crypts of Disgrace and defeat the Contaminated Batur Warriors and Contaminated Batur Commanders, as well as the Contaminated Morek Warriors. When you have defeated them, you will obtain Cursed Burial Items. Bring those to me and you will be richly rewarded!
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-04.html deleted file mode 100644 index f8403ba67f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-04.html +++ /dev/null @@ -1,6 +0,0 @@ -Karuda:
-Aha! I can tell that the number of vengeful spirits has greatly decreased, thanks to you. Now, what will you do?
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-05.html deleted file mode 100644 index 3cd2b1b54d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-05.html +++ /dev/null @@ -1,7 +0,0 @@ -Karuda:
-You haven't left yet?
-Why not?
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-06.html deleted file mode 100644 index 31407b206b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-06.html +++ /dev/null @@ -1,8 +0,0 @@ -Karuda:
-You can earn the following rewards:
-S80 weapon recipe - Requires 500 Cursed Grave Goods
-Leonard - Requires 8 Cursed Grave Goods
-Adamantine - Requires 15 Cursed Grave Goods
-Orichalcum - Requires 12 Cursed Grave Goods
-Remember, I'm counting on you! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-07.html deleted file mode 100644 index cbfa0ce916..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Karuda:
-Your mission was assigned prior to the changes in this place. I'm sorry, but that particular mission is no longer valid.
-Please accept this as some compensation for any inconvenience. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-08.html deleted file mode 100644 index 9eabb961a5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-08.html +++ /dev/null @@ -1,3 +0,0 @@ -Karuda:
-Please keep up the good work for the safety of this area. I'm counting on you! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-09.html deleted file mode 100644 index fe16dc9011..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/32017-09.html +++ /dev/null @@ -1,3 +0,0 @@ -Karuda:
-Well, if that's your decision, I won't try to force you. Goodbye! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/Q00645_GhostsOfBatur.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/Q00645_GhostsOfBatur.java deleted file mode 100644 index 6b6354ba4b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00645_GhostsOfBatur/Q00645_GhostsOfBatur.java +++ /dev/null @@ -1,150 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00645_GhostsOfBatur; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; -import com.l2jmobius.gameserver.util.Util; - -/** - * Ghosts of Batur (645) - * @author Zoey76 - */ -public class Q00645_GhostsOfBatur extends Quest -{ - // NPC - private static final int KARUDA = 32017; - // Monsters - private static final int CONTAMINATED_MOREK_WARRIOR = 22703; - private static final int CONTAMINATED_BATUR_WARRIOR = 22704; - private static final int CONTAMINATED_BATUR_COMMANDER = 22705; - // Items - private static final int CURSED_GRAVE_GOODS = 46433; // Old item - private static final int CURSED_BURIAL_ITEMS = 46434; // New item - // Misc - private static final int MIN_LEVEL = 80; - private static final int[] CHANCES = - { - 516, - 664, - 686 - }; - - public Q00645_GhostsOfBatur() - { - super(645); - addStartNpc(KARUDA); - addTalkId(KARUDA); - addKillId(CONTAMINATED_MOREK_WARRIOR, CONTAMINATED_BATUR_WARRIOR, CONTAMINATED_BATUR_COMMANDER); - registerQuestItems(CURSED_GRAVE_GOODS); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - - String htmltext = null; - if (player.getLevel() >= MIN_LEVEL) - { - switch (event) - { - case "32017-03.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "32017-06.html": - case "32017-08.html": - { - htmltext = event; - break; - } - case "32017-09.html": - { - qs.exitQuest(true, true); - htmltext = event; - break; - } - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final L2PcInstance player = getRandomPartyMember(killer, 1); - if ((player != null) && Util.checkIfInRange(1500, npc, player, false) && (getRandom(1000) < CHANCES[npc.getId() - CONTAMINATED_MOREK_WARRIOR])) - { - final QuestState qs = getQuestState(player, false); - giveItems(killer, CURSED_BURIAL_ITEMS, 1); - if (qs.isCond(1) && (getQuestItemsCount(killer, CURSED_BURIAL_ITEMS) >= 500)) - { - qs.setCond(2, true); - } - else - { - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - } - return super.onKill(npc, killer, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - switch (qs.getState()) - { - case State.CREATED: - { - htmltext = (player.getLevel() >= MIN_LEVEL) ? "32017-01.htm" : "32017-02.html"; - break; - } - case State.STARTED: - { - // Support for old quest reward. - final long count = getQuestItemsCount(player, CURSED_GRAVE_GOODS); - if ((count > 0) && (count < 180)) - { - giveAdena(player, 56000 + (count * 64), false); - addExpAndSp(player, 138000, 7997); - qs.exitQuest(true, true); - htmltext = "32017-07.html"; - } - else - { - htmltext = hasQuestItems(player, CURSED_BURIAL_ITEMS) ? "32017-04.html" : "32017-05.html"; - } - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-01.htm deleted file mode 100644 index 38778cdbff..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Dinn:
-Hey, you there -- Sir Adventurer! May I speak to you for a moment?
Have you heard of the Elrokian brigands hiding in the Primeval Plains? The wharf merchants and I are beset by them.
-Sales haven't been good, and since those thieves don't look like they'll go away any time soon on their own, it's been as bad a time around here as I can remember.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-02.htm deleted file mode 100644 index 9d7da69e08..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-02.htm +++ /dev/null @@ -1,6 +0,0 @@ -Dinn:
-At first, they stole only small items. But success has made them bold, and lately they have organized themselves into armed groups that raid even in broad daylight.
-The merchants on the wharf are understandably on edge. Despite standing constant watch over their wares, they have not the skill or weaponry to defend themselves against such formidable adversaries.
-But you, my fine young adventurer, you look like you might have a chance. Please, please help us. Eliminate these Elrokian brigands and we will reward you as richly as we can!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-03.html deleted file mode 100644 index c71662ec4f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-03.html +++ /dev/null @@ -1,3 +0,0 @@ -Dinn:
-Gods be praised! Now that I know that you are willing to help us, I finally feel like I'll be able to sleep soundly tonight.
According to a trustworthy source, the Elrokian thieves who raid our wharf all wear necklaces that contain a dinosaur fang pendant. Bring me those necklaces as proof that you have captured them; I'll reward you based on the number of necklaces you bring. If you bring back more than 100 necklaces, I can also give you the donations collected from the merchants here.
Please, whatever it takes, rid us of these troublesome thieves! As long as you bring me their necklaces, I'll make sure that you are well compensated for your time.
The Elrokian raiders have set up camp in the Primeval Plains. Travel south along this road, and I'm certain that you'll find them. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-04.html deleted file mode 100644 index 654af3e110..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Dinn:
-The weather is hot, and evil abounds... These are troubled days, I can assure you! Ah, I wish you could help us, my friend, but to my eye you are still too inexperienced for this kind of fight. Oh, that you were but a few seasons older! Well, we will simply have to persevere as best we know how...
(Only characters level 75 and above may take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-05.html deleted file mode 100644 index 6d02fcae4b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-05.html +++ /dev/null @@ -1,5 +0,0 @@ -Dinn:
-Eh? You caught them? Ah, it finally feels like a weight has been lifted! First of all, let me offer you a reward equal to the number of necklaces you've brought. If you have more than 100 necklaces, I can also give you a bounty collected by our local merchants.
Truth be told, I was prepared to offer the reward money myself, but when our merchants caught wind of your efforts, they insisted on contributing funds to the cause themselves. A noble act on their part, I dare say!
It is entirely your choice whether to collect the per necklace bounty or accept the merchant's donation.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-06.html deleted file mode 100644 index 45e1710442..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-06.html +++ /dev/null @@ -1,5 +0,0 @@ -Dinn:
-My utmost thanks! Since you've already made a good start of it, how about trying your hand at catching even more thieves? I assure you, we'll never forget such a great service!
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-07.html deleted file mode 100644 index 35ce615606..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-07.html +++ /dev/null @@ -1,3 +0,0 @@ -Dinn:
-Hmm... By my count, these necklaces are short of the 100 mark. Thanks for your efforts, but I have sworn that I would not accept any donation less than that total.
Even good intentions should be governed by some rules to prevent potential problems in the future. If you could acquire some more necklaces to bring the total to 100, we would truly be in your debt. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-08.html deleted file mode 100644 index bb16fca001..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-08.html +++ /dev/null @@ -1,7 +0,0 @@ -Dinn:
-You have done a fantastic job! I know how difficult it must have been to collect 100 necklaces, and here you are donating them with no strings attached. I can't tell you how grateful we are!
-Here, please take this reward. It's miniscule compared to all you've done for us, but this is the best we can do, and please know it comes from the bottom of our hearts.
-Word has reached me that there are still many Elrokian raiders in the Primeval Plains, and their numbers are increasing. What do you think? Now that you've gained some experience, would you like to keep catching the thieves?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-09.html deleted file mode 100644 index 324eec44d8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-09.html +++ /dev/null @@ -1,7 +0,0 @@ -Dinn:
-Please accept my apologies -- the amount of money we've managed to scrape together is far too small compared to what you've done for us. But we have few merchants, and many of them have been robbed by thieves. I blush to say it, but this is really the best we can do...
-I know you have no expectation of payment, but we wanted to do something to show our gratitude. Since the amount is miniscule, I added some to it myself. Please accept this.
-Were a hardy adventurer like yourself to keep capturing the raiders, I'm sure that our merchants' situation would dramatically improve... What do you say? Will you continue your efforts on our behalf?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-10.html deleted file mode 100644 index f05122ae1d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-10.html +++ /dev/null @@ -1,3 +0,0 @@ -Dinn:
-Then travel to the Primeval Plains and defeat the Elrokian assault force. Collect their necklaces as proof of your victory. Remember: the more necklaces you bring back to me, the better for all of us. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-11.html deleted file mode 100644 index 1a1a017e3b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-11.html +++ /dev/null @@ -1,3 +0,0 @@ -Dinn:
-Very well, then. I am saddened that you have chosen not to continue. If you change your mind, please don't hesitate to return! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-12.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-12.html deleted file mode 100644 index 8fca5e391d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/32105-12.html +++ /dev/null @@ -1,5 +0,0 @@ -Dinn:
-Did you happen to lose the necklaces on the way back here? Or did you fail to actually catch any thieves? No matter what happened, if you don't have a dinosaur fang pendant, I cannot justify rewarding you. Let me make a suggestion: travel south along this road to the Primeval Plains. I'm confident that you'll have no trouble encountering thieves that way!
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/Q00688_DefeatTheElrokianRaiders.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/Q00688_DefeatTheElrokianRaiders.java deleted file mode 100644 index 1b400a4fe2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00688_DefeatTheElrokianRaiders/Q00688_DefeatTheElrokianRaiders.java +++ /dev/null @@ -1,160 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00688_DefeatTheElrokianRaiders; - -import com.l2jmobius.Config; -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * Defeat the Elrokian Raiders! (688) - * @author Adry_85 - */ -public class Q00688_DefeatTheElrokianRaiders extends Quest -{ - // NPCs - private static final int ELROKI = 22214; - private static final int DINN = 32105; - // Item - private static final int DINOSAUR_FANG_NECKLACE = 8785; - // Misc - private static final int MIN_LEVEL = 75; - private static final int DROP_RATE = 448; - - public Q00688_DefeatTheElrokianRaiders() - { - super(688); - addStartNpc(DINN); - addTalkId(DINN); - addKillId(ELROKI); - registerQuestItems(DINOSAUR_FANG_NECKLACE); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "32105-02.htm": - case "32105-10.html": - { - htmltext = event; - break; - } - case "32105-03.html": - { - qs.startQuest(); - htmltext = event; - break; - } - case "32105-06.html": - { - if (hasQuestItems(player, DINOSAUR_FANG_NECKLACE)) - { - giveAdena(player, 3000 * getQuestItemsCount(player, DINOSAUR_FANG_NECKLACE), true); - takeItems(player, DINOSAUR_FANG_NECKLACE, -1); - htmltext = event; - } - break; - } - case "donation": - { - if (getQuestItemsCount(player, DINOSAUR_FANG_NECKLACE) < 100) - { - htmltext = "32105-07.html"; - } - else - { - if (getRandom(1000) < 500) - { - giveAdena(player, 450000, true); - htmltext = "32105-08.html"; - } - else - { - giveAdena(player, 150000, true); - htmltext = "32105-09.html"; - } - takeItems(player, DINOSAUR_FANG_NECKLACE, 100); - } - break; - } - case "32105-11.html": - { - if (hasQuestItems(player, DINOSAUR_FANG_NECKLACE)) - { - giveAdena(player, 3000 * getQuestItemsCount(player, DINOSAUR_FANG_NECKLACE), true); - } - qs.exitQuest(true, true); - htmltext = event; - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) - { - final L2PcInstance partyMember = getRandomPartyMember(player, 1); - if (partyMember == null) - { - return super.onKill(npc, player, isSummon); - } - - final float chance = DROP_RATE * Config.RATE_QUEST_DROP; - if (getRandom(1000) < chance) - { - rewardItems(partyMember, DINOSAUR_FANG_NECKLACE, 1); - playSound(partyMember, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - return super.onKill(npc, player, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - switch (qs.getState()) - { - case State.CREATED: - { - htmltext = (player.getLevel() >= MIN_LEVEL) ? "32105-01.htm" : "32105-04.html"; - break; - } - case State.STARTED: - { - htmltext = hasQuestItems(player, DINOSAUR_FANG_NECKLACE) ? "32105-05.html" : "32105-12.html"; - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-0.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-0.htm deleted file mode 100644 index d88568deb8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-0.htm +++ /dev/null @@ -1,3 +0,0 @@ -Quincy:
-(This job is available after you reach 99 level.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-1.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-1.htm deleted file mode 100644 index 0e249e172f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-1.htm +++ /dev/null @@ -1,4 +0,0 @@ -Quincy:
-Oh, anyone here I haven't met. As You can see, in this far away place is inhabited by some monsters.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-10.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-10.htm deleted file mode 100644 index 65adad409c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-10.htm +++ /dev/null @@ -1,4 +0,0 @@ -Investigator Quincy:
-Those unfortunate people! They left their homes just to survive… In the end, this land consumed so many lives... We cannot add yours to their number.
-(Only characters level 99 or above may undertake this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-2.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-2.htm deleted file mode 100644 index f504c66f69..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-2.htm +++ /dev/null @@ -1,5 +0,0 @@ -Quincy:
-I'm here to hear the voice of the Goddess. Eva said here I can hear her voice.
-But the wait dragged on, and I come up with weird thoughts. But I do not doubt her words.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-3.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-3.htm deleted file mode 100644 index 416a13c635..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-3.htm +++ /dev/null @@ -1,4 +0,0 @@ -Quincy:
-There are a lot of monsters. Their very existence is contrary to the divine laws. Maybe it's because of them I can't hear the voice of the Goddess? To stop this waiting, I wanted to ask You to destroy all the monsters in the area. You're gonna help me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-4.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-4.htm deleted file mode 100644 index 5527fb504c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-4.htm +++ /dev/null @@ -1,3 +0,0 @@ -Quincy:
-Kill the monsters in the surrounding area of Land of Chaos and collect the Spirit of Darkness (50 pieces) If possible, bring more Spirit to the Weak Light. The more You bring, the greater Your reward. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-5.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-5.html deleted file mode 100644 index 32b218dfc0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-5.html +++ /dev/null @@ -1,3 +0,0 @@ -Quincy:
-I will repeat once again. Kill the monsters in the surrounding area of Land of Chaos and collect the Spirit of Darkness (50 pieces) If possible, bring more Spirit to the Weak Light. The more You bring, the greater Your reward. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-6.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-6.html deleted file mode 100644 index 0873129abc..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-6.html +++ /dev/null @@ -1,6 +0,0 @@ -Quincy:
-You brought the Spirit of Darkness. Here is all you need. But the Spirit is Weak Light You got. -Then I'll give You a reward just for the Spirit of Darkness. What do you think?
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-7.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-7.html deleted file mode 100644 index e7e90fbc2f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-7.html +++ /dev/null @@ -1,3 +0,0 @@ -Quincy:
-Then destroy all the monsters. For the collected Ghost Weak Light relies additional reward depending on its quantity. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-8.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-8.html deleted file mode 100644 index 4a70cd3671..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-8.html +++ /dev/null @@ -1,6 +0,0 @@ -Quincy:
-If You want to get the reward, then I have another task for today. -If You still collect the Weak Spirit of Light, you get extra reward.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-9.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-9.html deleted file mode 100644 index 66e374f0a0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/33838-9.html +++ /dev/null @@ -1,3 +0,0 @@ -Quincy:
-Well. Here is Your reward. I'll wait until you hear the voice of the Goddess. I hope Your efforts were not in vain. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/Q00772_PurifyingSouls.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/Q00772_PurifyingSouls.java deleted file mode 100644 index 8018de3482..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q00772_PurifyingSouls/Q00772_PurifyingSouls.java +++ /dev/null @@ -1,182 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q00772_PurifyingSouls; - -import com.l2jmobius.gameserver.enums.QuestType; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * Purifying Souls (772) - * @URL https://l2wiki.com/Purifying_Souls - * @author Gigi - */ -public class Q00772_PurifyingSouls extends Quest -{ - // NPC - private static final int QUINCY = 33838; - // Monsters - private static final int[] MONSTERS = - { - 23330, // Rubble - 23337, // Large Rubble - 23332, // One-armed Zombie - 23333, // Putrefied Zombie - 23334, // Shelop - 25927, // Krogel - 23335, // Poras - 23336 // Death Worm - }; - // Items - private static final int SOUL_OF_DARKNESS = 36680; - private static final int FAINT_SOUL_OF_LIGHT = 36696; - // Reward - private static final int ELEXIR_OF_LIFE = 30357; - private static final int ELEXIR_OF_MIND = 30358; - private static final int ELEXIR_OF_BLESSING = 32316; - private static final int SOE_LEND_OF_CHAOS = 37018; - private static final int ELMORES_MYSTERIUS_BOX = 37021; - private static final int ELMORES_NOBLE_BOX = 37022; - private static final int ENERGY_OF_DESTRUCTION = 35562; - // Misc - private static final int MIN_LEVEL = 99; - - public Q00772_PurifyingSouls() - { - super(772); - addStartNpc(QUINCY); - addTalkId(QUINCY); - addKillId(MONSTERS); - registerQuestItems(SOUL_OF_DARKNESS, FAINT_SOUL_OF_LIGHT); - addCondMinLevel(MIN_LEVEL, "33838-0.htm"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - String htmltext = null; - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return getNoQuestMsg(player); - } - - switch (event) - { - case "33838-2.htm": - case "33838-3.htm": - case "33838-7.html": - case "33838-8.html": - { - htmltext = event; - break; - } - case "33838-4.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "33838-9.html": - { - if (qs.isCond(2) && (getQuestItemsCount(player, SOUL_OF_DARKNESS) >= 50)) - { - if ((getQuestItemsCount(player, FAINT_SOUL_OF_LIGHT) >= 1000) && (getQuestItemsCount(player, FAINT_SOUL_OF_LIGHT) <= 1999)) - { - giveItems(player, ELMORES_MYSTERIUS_BOX, 1); - } - else if (getQuestItemsCount(player, FAINT_SOUL_OF_LIGHT) >= 2000) - { - giveItems(player, ELMORES_NOBLE_BOX, 1); - giveItems(player, ENERGY_OF_DESTRUCTION, 1); - } - giveItems(player, ELEXIR_OF_LIFE, 5); - giveItems(player, ELEXIR_OF_MIND, 5); - giveItems(player, ELEXIR_OF_BLESSING, 5); - giveItems(player, SOE_LEND_OF_CHAOS, 1); - qs.exitQuest(QuestType.DAILY, true); - htmltext = event; - break; - } - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - if (npc.getId() == QUINCY) - { - switch (qs.getState()) - { - case State.COMPLETED: - { - if (!qs.isNowAvailable()) - { - htmltext = "33838-10.htm"; - break; - } - qs.setState(State.CREATED); - } - case State.CREATED: - { - htmltext = "33838-1.htm"; - break; - } - case State.STARTED: - { - if (qs.isCond(1)) - { - htmltext = "33838-5.html"; - } - else if (qs.isStarted() && qs.isCond(2)) - { - htmltext = "33838-6.html"; - } - break; - } - } - } - else if (qs.isCompleted() && !qs.isNowAvailable()) - { - htmltext = "33838-10.htm"; - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState qs = getRandomPartyMemberState(killer, -1, 3, npc); - - if ((qs != null) && qs.isCond(1) && (giveItemRandomly(killer, npc, SOUL_OF_DARKNESS, 1, 50, 0.1, true))) - { - qs.setCond(2, true); - } - if ((qs != null) && (qs.getCond() > 0) && (getRandom(100) < 40)) - { - giveItems(killer, FAINT_SOUL_OF_LIGHT, 1); - } - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-00.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-00.html deleted file mode 100644 index 4a91f9dbb3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-00.html +++ /dev/null @@ -1,5 +0,0 @@ -Engineer Lekon:
-Even at my busiest, I see the sky now and again -- it's so beautiful!
-Look at it! Not a cloud to be seen, a gentle breeze... Don't you agree that it's a perfect day to fly? You don't have any idea what I'm talking about, do you? Well, with some more experience I'm sure you will understand.
-(Only characters who are level 75 or higher may undertake this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-01.htm deleted file mode 100644 index db89302af3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Engineer Lekon:
-Even at my busiest, I see the sky now and again -- it's so beautiful!
-Look at it! Not a cloud to be seen, a gentle breeze... Don't you agree that it's a perfect day to fly?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-02.htm deleted file mode 100644 index b8589381de..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Engineer Lecon:
-A skilled adventurer like you doesn't know about this? You don't know about the flying creature named Aurabird? Hmm. Well, listen carefully.
-Long, long ago the Aurabirds were the pet birds of the Giants. They were believed extinct until very recently. But it appears that at least a few survived in the high mountains.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-03.htm deleted file mode 100644 index 4dbff227c8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-03.htm +++ /dev/null @@ -1,6 +0,0 @@ -Engineer Lekon:
-When the Seed suddenly appeared in Gracia, the Aurabirds' spirit protected them from the contamination that affected the other creatures. They flew here to the Keucereus Alliance Base, where the power of the Seed is weakest. I guess they wanted to survive.
-A few of us were interested in the origins and biology of the Aurabirds. But more wanted to find a way to use them in the war effort.
-An Aurabird is big enough for even a young Orc to ride, after all! Several of us thought they held the key to avoiding dependence on Airships.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-04.htm deleted file mode 100644 index 6ee04aa590..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-04.htm +++ /dev/null @@ -1,5 +0,0 @@ -Engineer Lekon:
-If the method was easy, we would have certainly have used it before now. We did find some ancient historical documents, but until recently we were unable to successfully duplicate the process. Only through the efforts of several Necromancers, the Wizards of the Ivory Tower and Dwarven technology were we finally able to do it.
Our process magically transforms a person to provide Aurabird activity without changing the person's original shape.
-For it to be effective, the user must have transformation capability and possess certain magical items.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-05.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-05.htm deleted file mode 100644 index eb5caed216..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-05.htm +++ /dev/null @@ -1,5 +0,0 @@ -Engineer Lekon:
-Any skilled adventurer in Gracia is permitted to fly. Hunting and collecting are possible up there too.

-Of course, you will need to pass a simple test to prove that you're a match for any of the monsters you might encounter. I'm not worried about you, though! So how about it? Would you like to take the test?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-06.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-06.htm deleted file mode 100644 index 1591fdbe3b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-06.htm +++ /dev/null @@ -1,9 +0,0 @@ -Engineer Lekon:
-You must select a type of Aurabird. There are two types to choose from.
-When the Aurabird was first created during the Age of the Giants, it is said they altered several species. However, only two types survived after the fall of the Giants.
-One is called the Aurabird Falcon, which has a penchant for melee type attacks and flies very fast. The other is called the Aurabird Owl, which leans more towards magic type attacks.The Aurabird Owl flies more slowly, but has easier maneuverability.
-Which type do you want to be transformed into?
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-07.html deleted file mode 100644 index 0cf8a72635..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-07.html +++ /dev/null @@ -1,7 +0,0 @@ -Engineer Lekon:
-In order to prove yourself, you need to bring 5 Rider Marks as proof that you defeated the Vulture Riders.
-So, should I transform you into an Aurabird Falcon or an Aurabird Owl?
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-08.html deleted file mode 100644 index dacccf630a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-08.html +++ /dev/null @@ -1,4 +0,0 @@ -Engineer Lekon:
-Hmm... Can't make a decision, eh? Indecision won't help you up there, that's for sure. Are you sure you're ready for this?
-Well, make up your mind and talk to me when you've decided. Hurry up, though. I don't have all day! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-09.html deleted file mode 100644 index 245b27c4c9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-09.html +++ /dev/null @@ -1,4 +0,0 @@ -Engineer Lekon:
-You chose an Aurabird Falcon, eh? A good choice... The sight of it streaking across the sky, closing in on its prey, is a beautiful thing.
-Good hunting! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-0a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-0a.html deleted file mode 100644 index 989dd57104..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-0a.html +++ /dev/null @@ -1,4 +0,0 @@ -Engineer Lekon:
-Say, didn't you already earn the qualification? You don't need my permission to fly anymore -- you're free to do so whenever you want. Now go!
-(You have already completed this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-10.html deleted file mode 100644 index 0884fc6bb2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-10.html +++ /dev/null @@ -1,4 +0,0 @@ -Engineer Lekon:
-You chose an Aurabird Owl, eh? A good choice... The sight of it silently sneaking up on its enemy is a beautiful thing.
-Good hunting! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-11.html deleted file mode 100644 index 2d1694c80b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-11.html +++ /dev/null @@ -1,5 +0,0 @@ -Engineer Lekon:
-Eh? The transformation has ended? Then I will transform you again into your choice of Aurabird.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-12.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-12.html deleted file mode 100644 index 65a8de1b5e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-12.html +++ /dev/null @@ -1,3 +0,0 @@ -Engineer Lekon:
-You're just wasting my time. Get ready or get out! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-13.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-13.html deleted file mode 100644 index 61e73dd2c0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-13.html +++ /dev/null @@ -1,3 +0,0 @@ -Engineer Lekon:
-You're all set -- good hunting! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-14.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-14.html deleted file mode 100644 index dd732cc1bb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/32557-14.html +++ /dev/null @@ -1,8 +0,0 @@ -Engineer Lekon:
-How did it go? Ah, I was right about you. I knew you would succeed! (Ah, this one will be very useful to us...)
-Huh? What's that? Oh, it's nothing -- just talking to myself. Very well, let me write out your certificate.
-(He writes something on a paper.)
-With this, nobody will question your right to fly.
-I will also give you a spellbook that describes how to transform into your choice of Aurabird. Use it and I think you'll be able to fly in the Gracian skies without any help from me.
-Good luck! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/Q10273_GoodDayToFly.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/Q10273_GoodDayToFly.java deleted file mode 100644 index 11501a86b8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10273_GoodDayToFly/Q10273_GoodDayToFly.java +++ /dev/null @@ -1,179 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10273_GoodDayToFly; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.holders.SkillHolder; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * Good Day to Fly (10273) - * @author nonom - */ -public class Q10273_GoodDayToFly extends Quest -{ - // NPC - private static final int LEKON = 32557; - // Monsters - private static final int[] MOBS = - { - 22614, // Vulture Rider - 22615, // Vulture Rider - }; - // Item - private static final int MARK = 13856; - // Skills - private static final SkillHolder AURA_BIRD_FALCON = new SkillHolder(5982, 1); - private static final SkillHolder AURA_BIRD_OWL = new SkillHolder(5983, 1); - - public Q10273_GoodDayToFly() - { - super(10273); - addStartNpc(LEKON); - addTalkId(LEKON); - addKillId(MOBS); - registerQuestItems(MARK); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return getNoQuestMsg(player); - } - - switch (event) - { - case "32557-06.htm": - { - qs.startQuest(); - break; - } - case "32557-09.html": - { - qs.set("transform", "1"); - AURA_BIRD_FALCON.getSkill().applyEffects(player, player); - break; - } - case "32557-10.html": - { - qs.set("transform", "2"); - AURA_BIRD_OWL.getSkill().applyEffects(player, player); - break; - } - case "32557-13.html": - { - switch (qs.getInt("transform")) - { - case 1: - { - AURA_BIRD_FALCON.getSkill().applyEffects(player, player); - break; - } - case 2: - { - AURA_BIRD_OWL.getSkill().applyEffects(player, player); - break; - } - } - break; - } - } - return event; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState qs = getQuestState(killer, false); - if ((qs == null) || !qs.isStarted()) - { - return null; - } - - final long count = getQuestItemsCount(killer, MARK); - if (qs.isCond(1) && (count < 5)) - { - giveItems(killer, MARK, 1); - if (count == 4) - { - qs.setCond(2, true); - } - else - { - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - } - return null; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState qs = getQuestState(player, true); - - final int transform = qs.getInt("transform"); - switch (qs.getState()) - { - case State.COMPLETED: - { - htmltext = "32557-0a.html"; - break; - } - case State.CREATED: - { - htmltext = (player.getLevel() < 75) ? "32557-00.html" : "32557-01.htm"; - break; - } - default: - { - if (getQuestItemsCount(player, MARK) >= 5) - { - htmltext = "32557-14.html"; - if (transform == 1) - { - giveItems(player, 13553, 1); - } - else if (transform == 2) - { - giveItems(player, 13554, 1); - } - giveItems(player, 13857, 1); - addExpAndSp(player, 25160, 2525); - qs.exitQuest(false, true); - } - else if (transform == 0) - { - htmltext = "32557-07.html"; - } - else - { - htmltext = "32557-11.html"; - } - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-00.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-00.html deleted file mode 100644 index bca28d47e8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-00.html +++ /dev/null @@ -1,4 +0,0 @@ -Engineer Lekon:
-Hmm... I'm afraid I can't share the information with someone so inexperienced. Come back when you're more seasoned.
-(Only characters who are level 75 or above and have completed the "Good Day To Fly" quest may undertake this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-01.htm deleted file mode 100644 index 932483ca3b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Engineer Lekon:
-Now that you are authorized to fly, there's something you should know...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-02.htm deleted file mode 100644 index f1cb8a527d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Engineer Lekon:
-Do you know what powers the Airships? It's ancient Giant technology. But you need Star Stones to power, maintain and repair a Airship. They can only be found in the skies of Gracia. It's not easy to collect these stones, especially since they tend to attract some rather nasty monsters. But don't you think they're worth the risk, given their rarity and value?
-I think you've got all the makings of a fine Star Stone collector, actually. What do you say? Will you do it?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-03.html deleted file mode 100644 index 583bfa744a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-03.html +++ /dev/null @@ -1,5 +0,0 @@ -Engineer Lekon:
-It would be easier if I went with you, but unfortunately I'm far too busy. I've prepared this Star Stone Collection Scroll to help beginners like you. Use it near a target and you'll do fine. It's not cheap, though, so I hope you'll learn the collection skill while using it.
-Your task is to bring me 8 of the following Extracted Star Stones- either 8 Extracted Coarse Red Star Stones, 8 Extracted Coarse Blue Star Stones, or 8 Extracted Coarse Green Star Stones using the Star Stone Collection Scrolls.
-These star stones can be found in the skies around the Keucereus Alliance Base and on the paths to the Seeds and the Aerial Cleft. Good luck! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-04.html deleted file mode 100644 index cf372c32e8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Engineer Lekon:
-You haven't left yet? Hurry and collect 8 Crude Red Star Stone Extraction Stones, Crude Blue Star Stone Extraction Stones or Crude Green Star Stone Extraction Stones using the Star Stone Collection Scroll I gave you. Go on! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-05.html deleted file mode 100644 index dbb111e8dd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-05.html +++ /dev/null @@ -1,3 +0,0 @@ -Engineer Lekon:
-Excellent! For a beginner, you've done very well. I guess this proves that you learned the collection skill after all. Congratulations! These are very valuable, so collect as many as possible. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-0a.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-0a.html deleted file mode 100644 index dec3ee3130..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/32557-0a.html +++ /dev/null @@ -1,4 +0,0 @@ -Engineer Lekon:
-You've already finished this mission. Collect Star Stones in the sky and they will be useful to our cause.
-(You have already completed this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/Q10274_CollectingInTheAir.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/Q10274_CollectingInTheAir.java deleted file mode 100644 index c656aadbf4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10274_CollectingInTheAir/Q10274_CollectingInTheAir.java +++ /dev/null @@ -1,168 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10274_CollectingInTheAir; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.L2Object; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; -import com.l2jmobius.gameserver.model.skills.Skill; - -import quests.Q10273_GoodDayToFly.Q10273_GoodDayToFly; - -/** - * Collecting in the Air (10274) - * @author nonom - */ -public class Q10274_CollectingInTheAir extends Quest -{ - // NPC - private static final int LEKON = 32557; - // Items - private static final int SCROLL = 13844; - private static final int RED = 13858; - private static final int BLUE = 13859; - private static final int GREEN = 13860; - // Monsters - private static final int MOBS[] = - { - 18684, // Red Star Stone - 18685, // Red Star Stone - 18686, // Red Star Stone - 18687, // Blue Star Stone - 18688, // Blue Star Stone - 18689, // Blue Star Stone - 18690, // Green Star Stone - 18691, // Green Star Stone - 18692, // Green Star Stone - }; - - public Q10274_CollectingInTheAir() - { - super(10274); - addStartNpc(LEKON); - addTalkId(LEKON); - addSkillSeeId(MOBS); - registerQuestItems(SCROLL, RED, BLUE, GREEN); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return getNoQuestMsg(player); - } - - if (event.equals("32557-03.html")) - { - qs.startQuest(); - giveItems(player, SCROLL, 8); - } - return event; - } - - @Override - public String onSkillSee(L2Npc npc, L2PcInstance caster, Skill skill, L2Object[] targets, boolean isSummon) - { - final QuestState qs = getQuestState(caster, false); - if ((qs == null) || !qs.isStarted()) - { - return null; - } - - if (qs.isCond(1) && (skill.getId() == 2630)) - { - switch (npc.getId()) - { - case 18684: - case 18685: - case 18686: - { - giveItems(caster, RED, 1); - break; - } - case 18687: - case 18688: - case 18689: - { - giveItems(caster, BLUE, 1); - break; - } - case 18690: - case 18691: - case 18692: - { - giveItems(caster, GREEN, 1); - break; - } - } - playSound(caster, QuestSound.ITEMSOUND_QUEST_ITEMGET); - npc.doDie(caster); - } - return super.onSkillSee(npc, caster, skill, targets, isSummon); - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - QuestState qs = getQuestState(player, true); - - switch (qs.getState()) - { - case State.COMPLETED: - { - htmltext = "32557-0a.html"; - break; - } - case State.CREATED: - { - qs = player.getQuestState(Q10273_GoodDayToFly.class.getSimpleName()); - if (qs != null) - { - htmltext = ((player.getLevel() >= 75) && qs.isCompleted()) ? "32557-01.htm" : "32557-00.html"; - } - else - { - htmltext = "32557-00.html"; - } - break; - } - case State.STARTED: - { - if ((getQuestItemsCount(player, RED) + getQuestItemsCount(player, BLUE) + getQuestItemsCount(player, GREEN)) >= 8) - { - htmltext = "32557-05.html"; - giveItems(player, 13728, 1); - addExpAndSp(player, 25160, 2525); - qs.exitQuest(false, true); - } - else - { - htmltext = "32557-04.html"; - } - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-01.htm deleted file mode 100644 index c53f3fdfb6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Priest Dominic:
-It's time plans were put into motion... yes... it's time those silent sycophants saw the truth of things... time for you to finally earn the right to be in my presence as well. I've got a task for you... yes if you're willing, there's something that needs being done and you will be rewarded with more than my mere respect.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-02.html deleted file mode 100644 index 56e1603707..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-02.html +++ /dev/null @@ -1,3 +0,0 @@ -Priest Dominic:
-Why are you here? Stop testing my patience and perform the simple tasks to which I have turned to you. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-02b.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-02b.html deleted file mode 100644 index e006ee16bb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-02b.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Dominic:
-No. You lack strength.
-(Only characters of level 82 and above are permitted to take on this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-03.html deleted file mode 100644 index 35da19e0c9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Dominic:
-As a matter of business, I find simplicity in things to be... ideal. Beautiful even. Your task is to deliver a message to someone, nothing more and nothing less. Someone named Greymore. The task is simple, but as important as what the letter says...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-04.htm deleted file mode 100644 index b4a601376d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-04.htm +++ /dev/null @@ -1,6 +0,0 @@ -Priest Dominic:
-None of your business. Your role in task is simply delivery. To find Greymore, talk to Aquilani.
-He stands outside the western entrance of the Monastery of Silence. He knows precisely where you'll find Greymore.
-Yes... simply shoulder this epistle. A task so simple someone such as yourself could not slip up.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-05.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-05.htm deleted file mode 100644 index 8680b1b4fa..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-05.htm +++ /dev/null @@ -1,4 +0,0 @@ -Priest Dominic:
-Here is the letter. This task makes you one of my own, which means that should you lose this letter or fail this task, you will be mine to punish. It also means Aquilani will recognize my presence in you when you seek him out.
-Do not deter from the path. Seek Aquilani and he will show you the way to Greymore in the Monastery of Silence. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-06.html deleted file mode 100644 index 0f59969265..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Dominic:
-You are on the path I have laid out for you. Do not dilly-dally, do not be distracted.
-And don't forget, first talk to Aquilani at the entrance to the Monastery of Silence and he shall show you the way to Greymore. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-07.html deleted file mode 100644 index dcdbc6f59b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/31350-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Dominic:
-Aquilani tells me I was right to trust you with that task. I am not easily impressed, but you have indeed proven yourself worthy of my presence. I suspect Greymore may require help if you wish to assist us further.
-(You have already completed this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32757-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32757-01.html deleted file mode 100644 index 8489dee7ee..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32757-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Greymore:
-Blast! You startled me, fool. Who are you?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32757-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32757-02.html deleted file mode 100644 index e14043260c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32757-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Greymore:
-What?! You followed me here? Fool!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32757-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32757-03.html deleted file mode 100644 index 7bcc2db792..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32757-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Greymore:
-Ah, now that, that is different. You must travel as silently as a feline, for you startled me and I am usually quite perceptive.
-Well, I must read this letter and it is not for the eyes of the uninitiated. So unless you have something else to tell me, you can be on your way now, wanderer. Ah, here for your troubles. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-01.html deleted file mode 100644 index 47aba7b10b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Aquilani:
-Halt your approach, wanderer. I wish not to be bothered. Your ignorance will not be forgiven should you trespass.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-02.html deleted file mode 100644 index 1ee0dcbfb4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Aquilani:
-Ah, so you are Brother Dominic's creature. Welcome. But this letter is not for me, it is for Brother Greymore. Are you ready to see him?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-03.html deleted file mode 100644 index 0fafd4f129..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Aquilani:
-Good. To find Greymore, you must enter the Monastery of Silence. Greymore studies his craft in a room in-between the 1st and 2nd floor there.
-Bring him this letter, and then perhaps you will take part in the next step. I will also be able to teleport you directly to his location, once I am able to sense his presence in you. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-04.html deleted file mode 100644 index 455a8cc395..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-04.html +++ /dev/null @@ -1,4 +0,0 @@ -Aquilani:
-Sorry creature, I am not able to teleport you now. Do not test me on this, it is merely the way of things. Bring Brother Dominic's letter to Greymore in the Monastery. He will be between the 1st and 2nd floor.
-As I told you before, once you have completed that task, I shall henceforth be able to teleport you directly to his location. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-05.html deleted file mode 100644 index f3833fce85..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Aquilani:
-Your presence is known. No one would lie about working for the temple. I am your family now. What do you need?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-06.html deleted file mode 100644 index 4d0bb8002c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Aquilani:
-Let me confirm once more. You want to meet Greymore?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780.html deleted file mode 100644 index afe67718e8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/32780.html +++ /dev/null @@ -1,5 +0,0 @@ -Aquilani:
-Be cautious of your every thought here. Those who desecrate these sacred grounds never forget.. ever. And when you leave this place, don't ever reflect back on it. Some things are best forgotten.
-Our brothers and sisters find a comfort here that the rest of the world would deny them. Remember that.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/Q10288_SecretMission.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/Q10288_SecretMission.java deleted file mode 100644 index 3082724a61..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10288_SecretMission/Q10288_SecretMission.java +++ /dev/null @@ -1,179 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10288_SecretMission; - -import com.l2jmobius.gameserver.model.Location; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * Secret Mission (10288) - * @author Gnacik - */ -public class Q10288_SecretMission extends Quest -{ - // NPCs - private static final int DOMINIC = 31350; - private static final int AQUILANI = 32780; - private static final int GREYMORE = 32757; - // Item - private static final int LETTER = 15529; - // Location - private static final Location TELEPORT = new Location(118833, -80589, -2688); - - public Q10288_SecretMission() - { - super(10288); - addStartNpc(AQUILANI, DOMINIC); - addFirstTalkId(AQUILANI); - addTalkId(DOMINIC, GREYMORE, AQUILANI); - registerQuestItems(LETTER); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - - if (qs == null) - { - return getNoQuestMsg(player); - } - String htmltext = event; - - switch (event) - { - case "31350-03.html": - { - if (player.getLevel() < 82) - { - htmltext = "31350-02b.html"; - } - break; - } - case "31350-05.htm": - { - qs.startQuest(); - giveItems(player, LETTER, 1); - break; - } - case "32780-03.html": - { - if (qs.isCond(1) && hasQuestItems(player, LETTER)) - { - qs.setCond(2, true); - } - break; - } - case "32757-03.html": - { - if (qs.isCond(2) && hasQuestItems(player, LETTER)) - { - giveAdena(player, 106583, true); - addExpAndSp(player, 417788, 46320); - qs.exitQuest(false, true); - } - break; - } - case "teleport": - { - if ((npc.getId() == AQUILANI) && qs.isCompleted()) - { - player.teleToLocation(TELEPORT); - return null; - } - break; - } - } - return htmltext; - } - - @Override - public String onFirstTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - // dialog only changes when you talk to Aquilani after quest completion - if ((qs != null) && qs.isCompleted()) - { - return "32780-05.html"; - } - return "32780.html"; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState qs = getQuestState(player, true); - - switch (npc.getId()) - { - case DOMINIC: - { - switch (qs.getState()) - { - case State.CREATED: - { - htmltext = "31350-01.htm"; - break; - } - case State.STARTED: - { - if (qs.isCond(1)) - { - htmltext = "31350-06.html"; - } - break; - } - case State.COMPLETED: - { - htmltext = "31350-07.html"; - break; - } - } - break; - } - case AQUILANI: - { - if (qs.isStarted()) - { - if (qs.isCond(1) && hasQuestItems(player, LETTER)) - { - htmltext = "32780-01.html"; - } - else if (qs.isCond(2)) - { - htmltext = "32780-04.html"; - } - } - break; - } - case GREYMORE: - { - if (qs.isStarted() && qs.isCond(2) && hasQuestItems(player, LETTER)) - { - return "32757-01.html"; - } - break; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-00.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-00.htm deleted file mode 100644 index a4448841b4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-00.htm +++ /dev/null @@ -1,4 +0,0 @@ -Priest Greymore:
-By the gods! Stop sneaking up on me! Anyway, I'm busy just now and while you seem pleasant enough, that doesn't free up my busy afternoon.
-(Only characters level 82 and up who have completed Secret Mission can take this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-01.htm deleted file mode 100644 index 2fb7c82f75..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Priest Greymore:
-WAH! You again, why do you keep scaring me? You must truly possess the acumen of the rodent, treading so silently. Anyway, I am not to be bothered, I am reading that letter you delivered from Brother Dominic.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-02.htm deleted file mode 100644 index cef30617d9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Priest Greymore:
-Hm... now that I think about it, might I tempt you with a mission from Dominic? It is not that I am incapable of doing it, but my face is too well known. Not like yours, at least not around here.
-Besides, you're already here, and if Dominic saw fit to trust you with this parcel, I see no reason not to trust you myself.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-03.htm deleted file mode 100644 index 976084b875..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -Priest Greymore:
-Alright. I've been here studying these confounding monks and their secrets, but so far I've been unable to find anything or any information of value. Bloody quiet lot, these. I suspect we must capture someone higher up the chain of command, as it were.
-Master of Splendor Annays is who I have in mind. Capture him and bring me his mark, what these monks call the Mark of Splendor. Only he will have it, none of the others. They carry a Mark of Darkness, and should you bring me back that, the only reward you will receive is my cackle. The Mark of Splendor is what earns the reward. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-04.html deleted file mode 100644 index 980548c382..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Priest Greymore:
-As I told you already, you are to capture the Master of Splendor Annays and bring me his Mark of Splendor. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-05.html deleted file mode 100644 index 5600f374b8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Greymore:
-Seriously! So you're good at scaring people. Then what? Want a prize?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-06.html deleted file mode 100644 index f8ecd0529f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Greymore:
-You captured him already? Alright, show me the proof, I must see his Mark of Splendor.
-Hmm... it would seem that other than startling me, you are skilled at nothing because you are not even a good liar. Bring me proof! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-07.html deleted file mode 100644 index fbd7208000..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-07.html +++ /dev/null @@ -1,5 +0,0 @@ -Priest Greymore:
-Ah, you captured him? I need to see the proof!
-... No, that's just the Mark of Darkness. All it proves is that you are unlucky.
-Like I told you, I must have the Mark of Splendor! That is the proof I require. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-08.html deleted file mode 100644 index 980b4e4640..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-08.html +++ /dev/null @@ -1,24 +0,0 @@ -Priest Greymore:
-Ah, you captured him? Let's see... ah, finally that fool saw his end. What a pleasant surprise! I would have done him myself if I didn't have a serious fear of heights.
-A great deed such as this deserves a great reward. You can choose one of the following items:
- - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-09.html deleted file mode 100644 index 3269a735c2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-09.html +++ /dev/null @@ -1,4 +0,0 @@ -Priest Greymore:
-Good job. You proved yourself able to do more than just startle me on a consistent basis. The timing couldn't be better, I've grown weary of this Monastery and these idiotic mute monks. Perhaps Dominic will give me a position back in the Town of Rune.
-Thanks again. Hopefully I will see you in Rune next time. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-10.html deleted file mode 100644 index a18f2db08a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/32757-10.html +++ /dev/null @@ -1,5 +0,0 @@ -Priest Greymore:
-What? Are you here to relive your glory? Are you going to buy us all a round of drinks?
-I already thanked you, now you're just showing off.
-(This quest is already complete.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/Q10289_FadeToBlack.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/Q10289_FadeToBlack.java deleted file mode 100644 index afa81b1257..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10289_FadeToBlack/Q10289_FadeToBlack.java +++ /dev/null @@ -1,335 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10289_FadeToBlack; - -import com.l2jmobius.gameserver.model.L2Party; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; - -import quests.Q10288_SecretMission.Q10288_SecretMission; - -/** - * Fade to Black (10289) - * @author Plim - */ -public class Q10289_FadeToBlack extends Quest -{ - // NPC - private static final int GREYMORE = 32757; - // Items - private static final int MARK_OF_SPLENDOR = 15527; - private static final int MARK_OF_DARKNESS = 15528; - // Monster - private static final int ANAYS = 25701; - - public Q10289_FadeToBlack() - { - super(10289); - addStartNpc(GREYMORE); - addTalkId(GREYMORE); - addKillId(ANAYS); - registerQuestItems(MARK_OF_SPLENDOR, MARK_OF_DARKNESS); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - String htmltext = null; - if (qs == null) - { - return htmltext; - } - - switch (event) - { - case "32757-02.htm": - { - htmltext = event; - break; - } - case "32757-03.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "32757-06.html": - { - if (qs.isCond(2) && hasQuestItems(player, MARK_OF_DARKNESS)) - { - htmltext = "32757-07.html"; - } - else if (qs.isCond(3) && hasQuestItems(player, MARK_OF_SPLENDOR)) - { - htmltext = "32757-08.html"; - } - else - { - htmltext = event; - } - break; - } - case "11": - case "12": - case "13": - case "14": - case "15": - case "16": - case "17": - case "18": - case "19": - case "20": - case "21": - case "22": - case "23": - case "24": - case "25": - case "26": - case "27": - case "28": - case "29": - case "30": - { - if (qs.isCond(3) && hasQuestItems(player, MARK_OF_SPLENDOR)) - { - // see 32757-08.html for recipe list (all moirai armor 60%) - switch (event) - { - case "11": - { - rewardItems(player, 15775, 1); - giveAdena(player, 420920, true); - break; - } - case "12": - { - rewardItems(player, 15776, 1); - giveAdena(player, 420920, true); - break; - } - case "13": - { - rewardItems(player, 15777, 1); - giveAdena(player, 420920, true); - break; - } - case "14": - { - rewardItems(player, 15778, 1); - break; - } - case "15": - { - rewardItems(player, 15779, 1); - giveAdena(player, 168360, true); - break; - } - case "16": - { - rewardItems(player, 15780, 1); - giveAdena(player, 168360, true); - break; - } - case "17": - { - rewardItems(player, 15781, 1); - giveAdena(player, 252540, true); - break; - } - case "18": - { - rewardItems(player, 15782, 1); - giveAdena(player, 357780, true); - break; - } - case "19": - { - rewardItems(player, 15783, 1); - giveAdena(player, 357780, true); - break; - } - case "20": - { - rewardItems(player, 15784, 1); - giveAdena(player, 505100, true); - break; - } - case "21": - { - rewardItems(player, 15785, 1); - giveAdena(player, 505100, true); - break; - } - case "22": - { - rewardItems(player, 15786, 1); - giveAdena(player, 505100, true); - break; - } - case "23": - { - rewardItems(player, 15787, 1); - giveAdena(player, 505100, true); - break; - } - case "24": - { - rewardItems(player, 15787, 1); - giveAdena(player, 505100, true); - break; - } - case "25": - { - rewardItems(player, 15789, 1); - giveAdena(player, 505100, true); - break; - } - case "26": - { - rewardItems(player, 15790, 1); - giveAdena(player, 496680, true); - break; - } - case "27": - { - rewardItems(player, 15791, 1); - giveAdena(player, 496680, true); - break; - } - case "28": - { - rewardItems(player, 15792, 1); - giveAdena(player, 563860, true); - break; - } - case "29": - { - rewardItems(player, 15793, 1); - giveAdena(player, 509040, true); - break; - } - case "30": - { - rewardItems(player, 15794, 1); - giveAdena(player, 454240, true); - break; - } - } - - final long marksOfDarkness = getQuestItemsCount(player, MARK_OF_DARKNESS); - if (marksOfDarkness > 0) - { - addExpAndSp(player, 55983 * marksOfDarkness, 136500 * (int) marksOfDarkness); - } - qs.exitQuest(false, true); - htmltext = "32757-09.html"; - } - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc anays, L2PcInstance killer, boolean isSummon) - { - final QuestState qs = getRandomPartyMemberState(killer, -1, 3, anays); - if (qs != null) - { - if (qs.getPlayer().isInParty()) - { - // if player is in party, reward all members - final L2Party party = qs.getPlayer().getParty(); - final int rnd = getRandom(party.getMemberCount()); - int idx = 0; - - for (L2PcInstance member : party.getMembers()) - { - // only one lucky player will get the good item, the rest will get the bad one - rewardPlayer(getQuestState(member, false), idx == rnd); - idx++; - } - } - else - { - // if no party, the winner gets it all - rewardPlayer(qs, true); - } - } - return super.onKill(anays, killer, isSummon); - } - - @Override - public boolean checkPartyMember(QuestState qs, L2Npc npc) - { - return qs.getCond() < 3; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - if (qs.isCreated()) - { - final QuestState q10288 = player.getQuestState(Q10288_SecretMission.class.getSimpleName()); - if ((player.getLevel() < 82) || (q10288 == null) || !q10288.isCompleted()) - { - htmltext = "32757-00.htm"; - } - else - { - htmltext = "32757-01.htm"; - } - } - else if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - { - htmltext = "32757-04.html"; - break; - } - case 2: - case 3: - { - htmltext = "32757-05.html"; - break; - } - } - } - else - { - htmltext = "32757-10.html"; - } - return htmltext; - } - - private static void rewardPlayer(QuestState qs, boolean isLucky) - { - if ((qs != null) && qs.isCond(1)) - { - giveItems(qs.getPlayer(), isLucky ? MARK_OF_SPLENDOR : MARK_OF_DARKNESS, 1); - qs.setCond(isLucky ? 3 : 2, true); - } - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30847-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30847-01.htm deleted file mode 100644 index f1a527bdd0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30847-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Head Blacksmith Ferris:
-As you already know Shilen sent several of her creatures to destroy Aden Castle. With your help, you and the Aden Vanguard were able to stop this attack. Now our soldiers can come home and focus on protecting Aden.
-Although this has been victory, news from Aden Vanguard has me concerned. As much as I would like attend to these matters personally, I have work here that must be complete. Do you think you can help me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30847-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30847-02.htm deleted file mode 100644 index 2d21e1fd19..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30847-02.htm +++ /dev/null @@ -1,6 +0,0 @@ -Head Blacksmith Ferris:
-The Aden Vanguard reports they have spotted several of Shilen`s creatures entering Aden Territory from Goddard. They do not believe that there is another attack planed for Aden but more of an impending attack on Goddard.
-If this is correct, then we might be able to pinpoint the source of where and how Shilen is able to send her creatures in Aden. The first priority is to alert Goddard that Shilen`s creatures are preparing to attack Goddard.
-Will you go to Goddard and give them this information?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30847-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30847-03.htm deleted file mode 100644 index 4c3fbda7ff..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30847-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -Head Blacksmith Ferris:
-Deliver this message to Captain Andrei with urgent haste. He is a Guard Captain and can be found in the center of Goddard. He has always been trusted in handling such matters.
-Good luck. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30856-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30856-01.htm deleted file mode 100644 index a097f14b28..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30856-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Grand Magister Winonin:
-As you already know Shilen sent several of her creatures to destroy Aden Castle. With your help, you and the Aden Vanguard were able to stop this attack. Now our soldiers can come home and focus on protecting Aden.
-Although this has been victory, news from Aden Vanguard has me concerned. As much as I would like attend to these matters personally, I have work here that must be complete. Do you think you can help me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30856-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30856-02.htm deleted file mode 100644 index a01f5b122e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30856-02.htm +++ /dev/null @@ -1,6 +0,0 @@ -Grand Magister Winonin:
-The Aden Vanguard reports they have spotted several of Shilen`s creatures entering Aden Territory from Goddard. They do not believe that there is another attack planed for Aden but more of an impending attack on Goddard.
-If this is correct, then we might be able to pinpoint the source of where and how Shilen is able to send her creatures in Aden. The first priority is to alert Goddard that Shilen`s creatures are preparing to attack Goddard.
-Will you go to Goddard and give them this information?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30856-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30856-03.htm deleted file mode 100644 index f863d8a87b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30856-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -Grand Magister Winonin:
-Deliver this message to Captain Andrei with urgent haste. He is a Guard Captain and can be found in the center of Goddard. He has always been trusted in handling such matters.
-Good luck. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30857-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30857-01.htm deleted file mode 100644 index 1af2d56e63..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30857-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Orven High Priest:
-As you already know Shilen sent several of her creatures to destroy Aden Castle. With your help, you and the Aden Vanguard were able to stop this attack. Now our soldiers can come home and focus on protecting Aden.
-Although this has been victory, news from Aden Vanguard has me concerned. As much as I would like attend to these matters personally, I have work here that must be complete. Do you think you can help me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30857-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30857-02.htm deleted file mode 100644 index 11e96ebaa6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30857-02.htm +++ /dev/null @@ -1,6 +0,0 @@ -Orven High Priest:
-The Aden Vanguard reports they have spotted several of Shilen`s creatures entering Aden Territory from Goddard. They do not believe that there is another attack planed for Aden but more of an impending attack on Goddard.
-If this is correct, then we might be able to pinpoint the source of where and how Shilen is able to send her creatures in Aden. The first priority is to alert Goddard that Shilen`s creatures are preparing to attack Goddard.
-Will you go to Goddard and give them this information?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30857-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30857-03.htm deleted file mode 100644 index 2fd4841a62..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30857-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -Orven High Priest:
-Deliver this message to Captain Andrei with urgent haste. He is a Guard Captain and can be found in the center of Goddard. He has always been trusted in handling such matters.
-Good luck. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30862-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30862-01.htm deleted file mode 100644 index f2e2f8fdd5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30862-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Grand Master Oltran:
-As you already know Shilen sent several of her creatures to destroy Aden Castle. With your help, you and the Aden Vanguard were able to stop this attack. Now our soldiers can come home and focus on protecting Aden.
-Although this has been victory, news from Aden Vanguard has me concerned. As much as I would like attend to these matters personally, I have work here that must be complete. Do you think you can help me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30862-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30862-02.htm deleted file mode 100644 index 213ef75273..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30862-02.htm +++ /dev/null @@ -1,6 +0,0 @@ -Grand Master Oltran:
-The Aden Vanguard reports they have spotted several of Shilen`s creatures entering Aden Territory from Goddard. They do not believe that there is another attack planed for Aden but more of an impending attack on Goddard.
-If this is correct, then we might be able to pinpoint the source of where and how Shilen is able to send her creatures in Aden. The first priority is to alert Goddard that Shilen`s creatures are preparing to attack Goddard.
-Will you go to Goddard and give them this information?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30862-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30862-03.htm deleted file mode 100644 index eff06b1648..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30862-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -Grand Master Oltran:
-Deliver this message to Captain Andrei with urgent haste. He is a Guard Captain and can be found in the center of Goddard. He has always been trusted in handling such matters.
-Good luck. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30865-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30865-01.htm deleted file mode 100644 index c9339ab27f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30865-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -High Prefect Ladanza:
-As you already know Shilen sent several of her creatures to destroy Aden Castle. With your help, you and the Aden Vanguard were able to stop this attack. Now our soldiers can come home and focus on protecting Aden.
-Although this has been victory, news from Aden Vanguard has me concerned. As much as I would like attend to these matters personally, I have work here that must be complete. Do you think you can help me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30865-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30865-02.htm deleted file mode 100644 index c73e38baae..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30865-02.htm +++ /dev/null @@ -1,6 +0,0 @@ -High Prefect Ladanza:
-The Aden Vanguard reports they have spotted several of Shilen`s creatures entering Aden Territory from Goddard. They do not believe that there is another attack planed for Aden but more of an impending attack on Goddard.
-If this is correct, then we might be able to pinpoint the source of where and how Shilen is able to send her creatures in Aden. The first priority is to alert Goddard that Shilen`s creatures are preparing to attack Goddard.
-Will you go to Goddard and give them this information?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30865-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30865-03.htm deleted file mode 100644 index 0e1c056802..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/30865-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -High Prefect Ladanza:
-Deliver this message to Captain Andrei with urgent haste. He is a Guard Captain and can be found in the center of Goddard. He has always been trusted in handling such matters.
-Good luck. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-01.html deleted file mode 100644 index 5a0aff078a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Captain Andrei:
-Yes, what is it you require?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-02.html deleted file mode 100644 index 9c90ef43f8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Captain Andrei:
-Hmmm... this comes from the Aden Vanguard? Yes, I had my suspicions that Goddard may be in danger. There has been a lot of strange activities in the Goddard territory. However, since Shilen has invaded our world that is somewhat of an understatement. There is something strange anywhere you look now.
-I hope you are up for more of a challenge than just delivering this message to us. Several of Goddard`s forces are out on missions and we are short on manpower here. We`re looking for anyone who can swim a sword or cast a spell.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-03.html deleted file mode 100644 index b97d34c7bf..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-03.html +++ /dev/null @@ -1,5 +0,0 @@ -Captain Andrei:
-So, you will help us then? Good. I need to deliver this news to my susperiors to see what can be done around here.
-I sent a reconnaissance team to the Shrine of Loyalty to investigate the new activity in the area. I believe you can find a man by the name of Gerkenshtein. He is the lead investigator on that team and should be able to brief you on the activity in that area. Hopefully you will be able to find the source of Shilen`s creature entering our world.
-Now then, if you will excuse me I have to tell my susperios we should be expecting some unwelcome guests soon. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-04.html deleted file mode 100644 index f740f66ce5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Captain Andrei:
-Go to the Shrine of Loyalty and speak with Gerkenshtein. He will inform you on what needs to be done next. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-05.html deleted file mode 100644 index 5a290e8e6a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/31292-05.html +++ /dev/null @@ -1,3 +0,0 @@ -Captain Andrei:
-Again, we appreciate your work on handing the Succubus situation around the Shrine of Loyalty. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/32221-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/32221-01.htm deleted file mode 100644 index b345969ef9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/32221-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Grand Master Brome:
-As you already know Shilen sent several of her creatures to destroy Aden Castle. With your help, you and the Aden Vanguard were able to stop this attack. Now our soldiers can come home and focus on protecting Aden.
-Although this has been victory, news from Aden Vanguard has me concerned. As much as I would like attend to these matters personally, I have work here that must be complete. Do you think you can help me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/32221-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/32221-02.htm deleted file mode 100644 index 10907cc9b3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/32221-02.htm +++ /dev/null @@ -1,6 +0,0 @@ -Grand Master Brome:
-The Aden Vanguard reports they have spotted several of Shilen`s creatures entering Aden Territory from Goddard. They do not believe that there is another attack planed for Aden but more of an impending attack on Goddard.
-If this is correct, then we might be able to pinpoint the source of where and how Shilen is able to send her creatures in Aden. The first priority is to alert Goddard that Shilen`s creatures are preparing to attack Goddard.
-Will you go to Goddard and give them this information?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/32221-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/32221-03.htm deleted file mode 100644 index 3d129a04d0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/32221-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -Grand Master Brome:
-Deliver this message to Captain Andrei with urgent haste. He is a Guard Captain and can be found in the center of Goddard. He has always been trusted in handling such matters.
-Good luck. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-01.html deleted file mode 100644 index 2ac83cdbbd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Gerkenshtein:
-Yes, what is it you want? Can`t you see I`m in the middle of investigating this rock here... It is very... ah... interesting.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-02.html deleted file mode 100644 index abbf37a19b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Gerkenshtein:
-Hmm... the rock can wait. There was an attack on Aden? That is very good news! I mean, that helps prove my theory. If yo track all of Shilen`s attacks or areas where she has icreased the number of her creatures you can see a correlation... looks like a search grid... she is looking for something.
-Quickly, you have to hunt down Scavenger Scarabs, Scavenger Ants, and Shrine Knights and bring me back samples of their Remnant Ashes. To be on the safe side, please bring back 30 samples. They are already in the area so we must be quick before Shilen sends in her creations. Once I have these samples, it will help me determine if there is a threat to Goddard here or not. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-03.html deleted file mode 100644 index b84d8906af..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-03.html +++ /dev/null @@ -1,3 +0,0 @@ -Gerkenshtein:
-Quickly, you have to hunt down Scavenger Scarabs, Scavenger Ants, and Shrine Knights and bring me back samples of their Remnant Ashes. To be on the safe side, please bring back 30 samples. They are already in the area so we must be quick before Shilen sends in her creations. Once I have these samples, it will help me determine if there is a threat to Goddard here or not. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-04.html deleted file mode 100644 index 3c0f6a5632..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-04.html +++ /dev/null @@ -1,4 +0,0 @@ -Gerkenshtein:
-Exellent. Give me a moment to perform some quick tests. Well I have good news and bad news. The good news is that I was able to verify that this is the Remnant Ashes normal creatures. The bad news is that it does nithing to further my investigation...
-This investigation is pretty much at a dead end. I do wish to thank you for your assistance. At least we can prove that these creatures have not been corrupted by Shilen`s influence. Here is a little something for your efforts. I do have a few other thing that could use your attention. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-05.html deleted file mode 100644 index 1289af68d5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/33648-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Gerkenshtein:
-Um... didn`t you already do this for me... I`m pretty sure you did.
-(You have already completed this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/Q10370_MenacingTimes.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/Q10370_MenacingTimes.java deleted file mode 100644 index 001b65c6d0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/Q10370_MenacingTimes.java +++ /dev/null @@ -1,303 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10370_MenacingTimes; - -import com.l2jmobius.gameserver.enums.Race; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.base.ClassLevel; -import com.l2jmobius.gameserver.model.holders.ItemHolder; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * Menacing Times (10370) - * @URL https://l2wiki.com/Menacing_Times - * @author Gigi - */ -public class Q10370_MenacingTimes extends Quest -{ - // NPCs - private static final int ORVEN = 30857; // Human - private static final int WINONIN = 30856; // Elf - private static final int OLTRAN = 30862; // DarkElf - private static final int LADANZA = 30865; // Orc - private static final int FERRIS = 30847; // Dvarf - private static final int BROME = 32221; // Kamael - private static final int ANDREI = 31292; - private static final int GERKENSHTEIN = 33648; - // Monster's - private static final int GRAVE_SCARAB = 21646; - private static final int GRAVE_ANT = 21648; - private static final int SHRINE_KNIGHT = 21650; - // Items - private static final int REMNANT_ASHES = 34765; - private static final ItemHolder ADENA = new ItemHolder(57, 479620); - // Reward - private static final int EXP_REWARD = 22451400; - private static final int SP_REWARD = 5388; - // Misc - private static final int MIN_LEVEL = 76; - private static final int MAX_LEVEL = 81; - - public Q10370_MenacingTimes() - { - super(10370); - addStartNpc(ORVEN, WINONIN, OLTRAN, LADANZA, FERRIS, BROME); - addTalkId(ORVEN, WINONIN, OLTRAN, LADANZA, FERRIS, BROME, ANDREI, GERKENSHTEIN); - addKillId(GRAVE_SCARAB, GRAVE_ANT, SHRINE_KNIGHT); - registerQuestItems(REMNANT_ASHES); - addCondLevel(MIN_LEVEL, MAX_LEVEL, "no_level.htm"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - String htmltext = null; - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return getNoQuestMsg(player); - } - - switch (event) - { - case "30857-02.htm": - case "30856-02.htm": - case "30862-02.htm": - case "30865-02.htm": - case "30847-02.htm": - case "32221-02.htm": - case "31292-02.html": - { - htmltext = event; - break; - } - case "30857-03.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "30856-03.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "30862-03.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "30865-03.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "30847-03.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "32221-03.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "31292-03.html": - { - qs.setCond(2, true); - htmltext = event; - break; - } - case "33648-02.html": - { - qs.setCond(0); - qs.setCond(3, true); - htmltext = event; - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - switch (qs.getState()) - { - case State.CREATED: - { - switch (npc.getId()) - { - case ORVEN: - { - if ((player.getRace() == Race.HUMAN) && (player.getClassId().level() == ClassLevel.FOURTH.ordinal())) - { - htmltext = "30857-01.htm"; - } - else - { - htmltext = "noRace.htm"; - } - break; - } - case WINONIN: - { - if ((player.getRace() == Race.ELF) && (player.getClassId().level() == ClassLevel.FOURTH.ordinal())) - { - htmltext = "30856-01.htm"; - } - else - { - htmltext = "noRace.htm"; - } - break; - } - case OLTRAN: - { - if ((player.getRace() == Race.DARK_ELF) && (player.getClassId().level() == ClassLevel.FOURTH.ordinal())) - { - htmltext = "30862-01.htm"; - } - else - { - htmltext = "noRace.htm"; - } - break; - } - case LADANZA: - { - if ((player.getRace() == Race.ORC) && (player.getClassId().level() == ClassLevel.FOURTH.ordinal())) - { - htmltext = "30865-01.htm"; - } - else - { - htmltext = "noRace.htm"; - } - break; - } - case FERRIS: - { - if ((player.getRace() == Race.DWARF) && (player.getClassId().level() == ClassLevel.FOURTH.ordinal())) - { - htmltext = "30847-01.htm"; - } - else - { - htmltext = "noRace.htm"; - } - break; - } - case BROME: - { - if ((player.getRace() == Race.KAMAEL) && (player.getClassId().level() == ClassLevel.FOURTH.ordinal())) - { - htmltext = "32221-01.htm"; - } - else - { - htmltext = "noRace.htm"; - } - break; - } - } - } - case State.STARTED: - { - switch (npc.getId()) - { - case ANDREI: - { - if (qs.isCond(1)) - { - htmltext = "31292-01.html"; - } - else if (qs.getCond() > 1) - { - htmltext = "31292-04.html"; - } - break; - } - case GERKENSHTEIN: - { - if (qs.isCond(2)) - { - htmltext = "33648-01.html"; - } - else if (qs.getCond() == 3) - { - htmltext = "33648-03.html"; - } - else if (qs.isCond(4)) - { - htmltext = "33648-04.html"; - takeItems(player, REMNANT_ASHES, -1); - addExpAndSp(player, EXP_REWARD, SP_REWARD); - giveItems(player, ADENA); - qs.exitQuest(false, true); - } - break; - } - } - break; - } - case State.COMPLETED: - { - switch (npc.getId()) - { - case ANDREI: - { - htmltext = "31292-05.html"; - } - break; - case GERKENSHTEIN: - { - htmltext = "33648-05.html"; - } - break; - } - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState qs = getQuestState(killer, false); - - if ((qs != null) && (qs.isCond(3))) - { - if (giveItemRandomly(killer, npc, REMNANT_ASHES, 1, 30, 0.15, true)) - { - qs.setCond(4, true); - } - } - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/noRace.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/noRace.htm deleted file mode 100644 index bc4d0510a6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/noRace.htm +++ /dev/null @@ -1,4 +0,0 @@ -High Priest:
-It does not look like you have the correct skill set to assist me.
-(Only My race and 3rd Class Transfer may take this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/no_level.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/no_level.htm deleted file mode 100644 index c0b3805716..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10370_MenacingTimes/no_level.htm +++ /dev/null @@ -1,3 +0,0 @@ -You don't meet level requirements
-(Quest available from level 76 - 81) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-01.htm deleted file mode 100644 index 330f4778a3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Gerkenshtein:
-I believe I have another lead. The path that leads to the Imperial Tomb, do you know of it? It seems that the creatures there are not the same as the creatures that used to guard that path.
-The creatures are... different. I cannot be certain, but some of these creatures have a strange aura to them. I need to know more to be certain though.It might be worth looking further into see if there is a connection between these new creatures and Shilen.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-02.htm deleted file mode 100644 index 17f4e4da4e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-02.htm +++ /dev/null @@ -1,4 +0,0 @@ -Gerkenshtein:
As I was saying, yes these creatures are quite different that the ones who used to roam the area. My Cryptozoology is a bit rusty, but it appears they are a rare species of Succubus. These creatures do not appear to have any of the traditional characteristics of a true Succubus with the exception of their one desire to drain the life out of you. Again, I would like for you to find out if these cratures are here due Shilen.
-I`m afraid it this task isn`t as easy as watching elpies. It requires a bit more of a hands-on approach. I need you to kill a fair amount of these Succubus creatures and observe their reactions.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-03.htm deleted file mode 100644 index 2e79db31a6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -Gerkenshtein:
-Oh, and one last thing. If you encounter anything out of the ordinary be sure let me know. It`s probably nothing important, but any little detail could be extremely helpful in this investigation.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-04.htm deleted file mode 100644 index 04c1a6a1c8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-04.htm +++ /dev/null @@ -1,5 +0,0 @@ -Gerkenshtein:
-Exellent! Here are the creatures I need you to defeat.
-The easiest creatures are the Succubus Soldiers, Succubus Warriors, Succubus Archers, and Succubus Shamans. The ones that make things more interesting are the Succubus Disciples. They are bit rarer than the others but you should be able to find enough in the area. I believe they are called Bloody Succubi.
-Please defeat these creatures then let me know what you find.
- \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-05.html deleted file mode 100644 index bbffe07b98..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-05.html +++ /dev/null @@ -1,5 +0,0 @@ -Gerkenshtein:
-I do not believe you have not completed your quest yet.
-You probably haven`t killed enough Succubus Soldiers, Succubus Warriors, Succubus Archers, and Succubus Shamans. Or maybe you are having a bit of difficulty with the Bloody Succubi.Either way, there`s still more work that needs to be done.
-Oh and don`t forget, if anything strange happens, to you be sure and take note of it. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-06.html deleted file mode 100644 index 258f39fba2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Gerkenshtein:
-Ah, you are back. Did you find the Succubus?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-07.html deleted file mode 100644 index 2add430ea0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-07.html +++ /dev/null @@ -1,5 +0,0 @@ -Gerkenshtein:
-Very interesting! i`m astonished. It`s true. Most who would try to gather this type of informatinon would be met with a quick and probably extremely painful death, but you seem to just breez through these types of tasks.
-Anything else happen while you were defeating these creatures?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-08.html deleted file mode 100644 index 25439afee8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/33648-08.html +++ /dev/null @@ -1,4 +0,0 @@ -Gerkenshtein:
-Hmm. Maybe you somehow inherited the power of the Succubus!
-I`ll need to confirm with some of my fellow scholars to see if they have heard anything like this happening before. Get some rest and let me know when you are ready to continue. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/Q10371_GraspThyPower.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/Q10371_GraspThyPower.java deleted file mode 100644 index c38e157c8d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/Q10371_GraspThyPower.java +++ /dev/null @@ -1,206 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10371_GraspThyPower; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.base.ClassLevel; -import com.l2jmobius.gameserver.model.holders.ItemHolder; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.network.serverpackets.ExQuestNpcLogList; -import com.l2jmobius.gameserver.util.Util; - -import quests.Q10370_MenacingTimes.Q10370_MenacingTimes; - -/** - * Grasp Thy Power (10371) - * @URL https://l2wiki.com/Grasp_Thy_Power - * @author Gigi - */ -public class Q10371_GraspThyPower extends Quest -{ - // NPCs - private static final int GERKENSHTEIN = 33648; - // Monster's - private static final int SUCCUBUS_SOLDIER = 23181; - private static final int SUCCUBUS_WARRIOR = 23182; - private static final int SUCCUBUS_ARCHER = 23183; - private static final int SUCCUBUS_SHAMAN = 23184; - private static final int BLOODY_SUCCUBUS = 23185; - // Items - private static final ItemHolder ADENA = new ItemHolder(57, 484990); - // Reward - private static final int EXP_REWARD = 22641900; - private static final int SP_REWARD = 5434; - // Misc - private static final int MIN_LEVEL = 76; - private static final int MAX_LEVEL = 81; - - public Q10371_GraspThyPower() - { - super(10371); - addStartNpc(GERKENSHTEIN); - addTalkId(GERKENSHTEIN); - addKillId(SUCCUBUS_SOLDIER, SUCCUBUS_WARRIOR, SUCCUBUS_ARCHER, SUCCUBUS_SHAMAN, BLOODY_SUCCUBUS); - addCondLevel(MIN_LEVEL, MAX_LEVEL, "no_level.html"); - addCondCompletedQuest(Q10370_MenacingTimes.class.getSimpleName(), "restriction.html"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - String htmltext = null; - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return getNoQuestMsg(player); - } - - switch (event) - { - case "33648-02.htm": - case "33648-03.htm": - case "33648-07.html": - { - htmltext = event; - break; - } - case "33648-04.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "33648-08.html": - { - addExpAndSp(player, EXP_REWARD, SP_REWARD); - giveItems(player, ADENA); - qs.exitQuest(false, true); - htmltext = event; - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - if ((qs.isCreated()) && (player.getClassId().level() == ClassLevel.FOURTH.ordinal())) - { - htmltext = "33648-01.htm"; - } - else if (qs.isCond(1)) - { - htmltext = "33648-05.html"; - } - else if (qs.isCond(2)) - { - htmltext = "33648-06.html"; - } - else if (qs.isCompleted()) - { - htmltext = "complete.htm"; - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState qs = getRandomPartyMemberState(killer, -1, 3, npc); - if ((qs != null) && qs.isCond(1) && Util.checkIfInRange(1500, npc, qs.getPlayer(), false)) - { - switch (npc.getId()) - { - case SUCCUBUS_SOLDIER: - { - int kills = qs.getInt(Integer.toString(SUCCUBUS_SOLDIER)); - if (kills < 12) - { - kills++; - qs.set(Integer.toString(SUCCUBUS_SOLDIER), kills); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - break; - } - case SUCCUBUS_WARRIOR: - { - int kills = qs.getInt(Integer.toString(SUCCUBUS_WARRIOR)); - if (kills < 12) - { - kills++; - qs.set(Integer.toString(SUCCUBUS_WARRIOR), kills); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - break; - } - case SUCCUBUS_ARCHER: - { - int kills = qs.getInt(Integer.toString(SUCCUBUS_ARCHER)); - if (kills < 8) - { - kills++; - qs.set(Integer.toString(SUCCUBUS_ARCHER), kills); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - break; - } - case SUCCUBUS_SHAMAN: - { - int kills = qs.getInt(Integer.toString(SUCCUBUS_SHAMAN)); - if (kills < 8) - { - kills++; - qs.set(Integer.toString(SUCCUBUS_SHAMAN), kills); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - break; - } - case BLOODY_SUCCUBUS: - { - int kills = qs.getInt(Integer.toString(BLOODY_SUCCUBUS)); - if (kills < 5) - { - kills++; - qs.set(Integer.toString(BLOODY_SUCCUBUS), kills); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - break; - } - } - - final ExQuestNpcLogList log = new ExQuestNpcLogList(getId()); - log.addNpc(SUCCUBUS_SOLDIER, qs.getInt(Integer.toString(SUCCUBUS_SOLDIER))); - log.addNpc(SUCCUBUS_WARRIOR, qs.getInt(Integer.toString(SUCCUBUS_WARRIOR))); - log.addNpc(SUCCUBUS_ARCHER, qs.getInt(Integer.toString(SUCCUBUS_ARCHER))); - log.addNpc(SUCCUBUS_SHAMAN, qs.getInt(Integer.toString(SUCCUBUS_SHAMAN))); - log.addNpc(BLOODY_SUCCUBUS, qs.getInt(Integer.toString(BLOODY_SUCCUBUS))); - qs.getPlayer().sendPacket(log); - - if ((qs.getInt(Integer.toString(SUCCUBUS_SOLDIER)) >= 12) && (qs.getInt(Integer.toString(SUCCUBUS_WARRIOR)) >= 12) && (qs.getInt(Integer.toString(SUCCUBUS_ARCHER)) >= 8) && (qs.getInt(Integer.toString(SUCCUBUS_SHAMAN)) >= 8) && (qs.getInt(Integer.toString(BLOODY_SUCCUBUS)) >= 5)) - { - qs.setCond(2, true); - } - } - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/complete.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/complete.htm deleted file mode 100644 index 5d0c0b34fe..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/complete.htm +++ /dev/null @@ -1,4 +0,0 @@ -Gerkenshtein:
-I know that this is a very interesting case, but it looks loke you have already finished this task. You efforts are best spent elsewhere.
-(You have already completed this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/no_level.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/no_level.htm deleted file mode 100644 index c0b3805716..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/no_level.htm +++ /dev/null @@ -1,3 +0,0 @@ -You don't meet level requirements
-(Quest available from level 76 - 81) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/restriction.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/restriction.html deleted file mode 100644 index 91b300594d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10371_GraspThyPower/restriction.html +++ /dev/null @@ -1,3 +0,0 @@ -Vorbos:
-(Quest only available to Ertheia characters Lv. 76-81 or above who have completed the quest "Menacing Times.") - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/31292-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/31292-01.html deleted file mode 100644 index 24306c92a0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/31292-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Captain Andrei:
-So, you have returned from the Shrine of Loyalty. Did you or Gerkenshtein find anything there?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/31292-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/31292-02.html deleted file mode 100644 index 1466d752b7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/31292-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Captain Andrei:
-Hmm. Creatures that can harness the power of Shilen? This is not good. I`ll deliver this to my superiors at once. You have done a great job, friend. I can tell by those wounds and scars that you sacrificed a great deal to get us this informated.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/31292-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/31292-03.html deleted file mode 100644 index 73d88ede09..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/31292-03.html +++ /dev/null @@ -1,10 +0,0 @@ -Captain Andrei:
-Oh yes, of course. We don`t have much in terms of Adena to give you but we do have a surplus of Attribute Crystals.
-Again, we appreciate the wotk you have done in the Shrine of Loyalty. Please choose which Crystal you want.
- - - - - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/31292-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/31292-04.html deleted file mode 100644 index 5a290e8e6a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/31292-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Captain Andrei:
-Again, we appreciate your work on handing the Succubus situation around the Shrine of Loyalty. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-01.htm deleted file mode 100644 index 6a0abbb235..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Gerkenshtein:
-Ah, you`re back. If ypu have a moment, I would like to discuss the power you felt the other day during your quest.
-Which creature did you say you acquired thepower from?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-02.htm deleted file mode 100644 index 1d55821554..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-02.htm +++ /dev/null @@ -1,4 +0,0 @@ -Gerkenshtein:
-Ah, yes... the Bloody Succubus...the stronger of the creatures. Explain to me what happened after delivering the fatal blow to the Succubus.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-03.htm deleted file mode 100644 index 5557248d33..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-03.htm +++ /dev/null @@ -1,5 +0,0 @@ -Gerkenshtein:
-Hmmm. This does indeed sound like these creatures are from Shilen. It will be difficult to explain this to others without some from of proof.
-I do not doubt your words, but others will need some evidence to prove this threat. I hate to throw you back into the fire but I need proof in order to finish my report. Will you undertake this quest?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-04.htm deleted file mode 100644 index 600078cba5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-04.htm +++ /dev/null @@ -1,4 +0,0 @@ -Gerkenshtein:
-Exellent! As you mentioned, the strongest of the creatures is the Blood Succubus. They are also known as Succubus Disciples, but that is beside the point.
-I need you to kill these creatures and extract from them their Essence. I need you to collect 10 Succubus Essences from their corpes before they turn to ash and bring them back to me. As soon as you return I can finish my report. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-05.html deleted file mode 100644 index a0c0cdee19..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Gerkenshtein:
-Do you require further instructions or need anything else? Please find a Bloody Succubus, kill it, and extract its Essence. You must collect 10 of them.
-Once you`re done, bring them to me. I will be waiting. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-06.html deleted file mode 100644 index 93cc0cb2f9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-06.html +++ /dev/null @@ -1,6 +0,0 @@ -Gerkenshtein:
-Yes, have you collected all of the Succubus Essences? Good, give it to me. U wasn`t sure what to make of this until I had a chance to take a look at it. Yes, this is difinitely the source of the power you received. You did receive some of Shilen`s Power after all!
-If simple creatures such as this can harness the power of Shilen in other areas, we would be in severe trouble. Think of the endless armies of creatures with the her power!
-Here. This is a report of the things that have happened here. Take it to Captain Andrei. It describes what I have been able to verify through your actions in the area. This is for his eyes only and is top secret. Do not let anyone know of this. - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-07.html deleted file mode 100644 index 67728faa97..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/33648-07.html +++ /dev/null @@ -1,3 +0,0 @@ -Gerkenshtein:
-This is a report of the things that have happened here. Take it to Captain Andrei. It describes what I have been able to verify through your actions in the area. This is for his eyes only and is top secret. Do not let anyone know of this. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/Q10372_PurgatoryVolvere.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/Q10372_PurgatoryVolvere.java deleted file mode 100644 index 0c56730893..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/Q10372_PurgatoryVolvere.java +++ /dev/null @@ -1,187 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10372_PurgatoryVolvere; - -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.base.ClassLevel; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -import quests.Q10371_GraspThyPower.Q10371_GraspThyPower; - -/** - * Purgatory Volvere (10372) - * @URL https://l2wiki.com/Purgatory_Volvere - * @author Gigi - */ -public class Q10372_PurgatoryVolvere extends Quest -{ - // NPCs - private static final int GERKENSHTEIN = 33648; - private static final int ANDREI = 31292; - // Monster's - private static final int BLOODY_SUCCUBUS = 23185; - // Items - private static final int SUCCUBUS_ESENCE = 34766; - private static final int GERKENSHTEINS_REPORT = 34767; - // Reward - private static final int EXP_REWARD = 23009000; - private static final int SP_REWARD = 5522; - // Misc - private static final int MIN_LEVEL = 76; - private static final int MAX_LEVEL = 81; - - public Q10372_PurgatoryVolvere() - { - super(10372); - addStartNpc(GERKENSHTEIN); - addTalkId(GERKENSHTEIN, ANDREI); - addKillId(BLOODY_SUCCUBUS); - registerQuestItems(SUCCUBUS_ESENCE, GERKENSHTEINS_REPORT); - addCondLevel(MIN_LEVEL, MAX_LEVEL, "no_level.html"); - addCondCompletedQuest(Q10371_GraspThyPower.class.getSimpleName(), "restriction.html"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - String htmltext = null; - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return getNoQuestMsg(player); - } - switch (event) - { - case "33648-02.htm": - case "33648-03.htm": - case "31292-02.html": - case "31292-03.html": - { - htmltext = event; - break; - } - case "33648-04.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "33648-07.html": - { - takeItems(player, SUCCUBUS_ESENCE, -1); - giveItems(player, GERKENSHTEINS_REPORT, 1); - qs.setCond(0); - qs.setCond(3, true); - htmltext = event; - break; - } - default: - { - if (event.startsWith("giveReward_") && qs.isCond(3)) - { - final int itemId = Integer.parseInt(event.replace("giveReward_", "")); - addExpAndSp(player, EXP_REWARD, SP_REWARD); - takeItems(player, GERKENSHTEINS_REPORT, -1); - giveItems(player, itemId, 15); - qs.exitQuest(false, true); - htmltext = "31292-04.html"; - break; - } - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - switch (qs.getState()) - { - case State.COMPLETED: - { - htmltext = "complete.htm"; - break; - } - case State.CREATED: - { - if (npc.getId() == GERKENSHTEIN) - { - htmltext = ((player.getClassId().level() == ClassLevel.FOURTH.ordinal()) ? "33648-01.htm" : "complete.htm"); - } - break; - } - case State.STARTED: - { - switch (npc.getId()) - { - case GERKENSHTEIN: - { - switch (qs.getCond()) - { - case 1: - { - htmltext = "33648-05.html"; - break; - } - case 2: - { - htmltext = "33648-06.html"; - break; - } - case 3: - { - htmltext = "33648-07.html"; - break; - } - } - break; - } - case ANDREI: - { - if ((qs.isCond(3)) && (getQuestItemsCount(player, GERKENSHTEINS_REPORT) > 0)) - { - htmltext = "31292-01.html"; - } - break; - } - } - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState qs = getQuestState(killer, false); - - if ((qs != null) && (qs.isCond(1))) - { - if (giveItemRandomly(killer, npc, SUCCUBUS_ESENCE, 1, 10, 0.2, true)) - { - qs.setCond(2, true); - } - } - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/complete.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/complete.htm deleted file mode 100644 index 5d0c0b34fe..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/complete.htm +++ /dev/null @@ -1,4 +0,0 @@ -Gerkenshtein:
-I know that this is a very interesting case, but it looks loke you have already finished this task. You efforts are best spent elsewhere.
-(You have already completed this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/no_level.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/no_level.htm deleted file mode 100644 index c0b3805716..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/no_level.htm +++ /dev/null @@ -1,3 +0,0 @@ -You don't meet level requirements
-(Quest available from level 76 - 81) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/restriction.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/restriction.html deleted file mode 100644 index dc8f028865..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10372_PurgatoryVolvere/restriction.html +++ /dev/null @@ -1,3 +0,0 @@ -Vorbos:
-(Quest only available to Ertheia characters Lv. 76-81 or above who have completed the quest "Grasp Thy Power.") - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31292-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31292-01.htm deleted file mode 100644 index efd51ad891..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31292-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Captain Andrei:
-Evil creatures with which you faced the last time at the Shrine of Loyalty, going to the Tomb of the Emperor. It seems that these monsters, the generation of Shilen, looking for something to revive her mistress.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31292-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31292-02.htm deleted file mode 100644 index e286ef425c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31292-02.htm +++ /dev/null @@ -1,6 +0,0 @@ -Captain Andrei:
-Those are the words of Agnes. According to her, some wandering Kamaels sought her out, told her the story, and requested her help. We don't know if the story is true, but we cannot ignore it either. - It is definitely true that the Succubus monsters are gaining strength. Our territory is being threatend more and more by them, but I cannot send out troops just on the word of some wandering Kamaels... What a bind
- Can you investigate this mattr? Then we will know whether their words are true or not.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31292-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31292-03.htm deleted file mode 100644 index af078675a2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31292-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -Captain Andrei:
-Now, then, first speak withAgnes. Listen to her story about the wandering Kamaels, and then help her. -Agnes stays here in the Town of Goddard with her followers, so she will be easy to find
- \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31292-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31292-04.html deleted file mode 100644 index a32ac1b9c7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31292-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Captain Andrei:
-Hmm? You have already returned? met Agnes? She did not say anything about the errant Kamael? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31588-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31588-01.html deleted file mode 100644 index 4087694529..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31588-01.html +++ /dev/null @@ -1,5 +0,0 @@ -Saint of Light Agnes:
-Good afternoon. You came to me after hearing the story of Andrei? Yes. Right. These were previously Kamael Kamael Village elders, but now that the village destroyed by order of Shilen, they eke out a miserable existence.
-The elders led a vagabond life. And now, when they learned that Shilen saves the power to revive, they decided to stop her. However, their own forces for that is not enough, so they asked me for help.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31588-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31588-02.html deleted file mode 100644 index 6315007a96..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31588-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Saint of Light Agnes:
-They are working at the Imperial Tomb, desperately tryng to step Shilen's spirits from escaping. If you're willing to help, go to the Imperial tomb and find Zenya
-Remember. We must block Shilen's resurrection no matter what. That is the only wey to protect this world. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31588-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31588-03.html deleted file mode 100644 index f473430b0b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/31588-03.html +++ /dev/null @@ -1,2 +0,0 @@ -Saint of Light Agnes:
-You met with Zeniey in the Tomb of the Emperor? Rather, look for it. She needs your help. \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/32140-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/32140-01.html deleted file mode 100644 index 4fcf0e2b4a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/32140-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Zenya:
-Agnes sent you? What a relief. Thank you for coming. I am using my powers to seal the Succubus Monsters inside the Imperial Tomb. Their resistance is difficult to manage.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/32140-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/32140-02.html deleted file mode 100644 index 818960484a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/32140-02.html +++ /dev/null @@ -1,3 +0,0 @@ -Vice Hierarch Zenya:
-Thank you. Let's talk about the details leter. First go to the Imperial Tomb and kill 15 Phantom Soldiers, 10 Phantom Warriors, 5 Phantom Archers, 5 Phantom Shamans, and 5 Phantom martyrs. That will make my task easier.
- \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/32140-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/32140-03.html deleted file mode 100644 index d62c474dcb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/32140-03.html +++ /dev/null @@ -1,5 +0,0 @@ -Vice Hierarch Zenya:
-Thank you! Thanks to you we were able to overcome the crisis. But you can not relax. These creatures Shilen and will climb out of the Tomb. We now have a free minute, so I can introduce myself to you. My name is Zenia, Assistant Tetrarch Kamael Village.
-The village where I lived, was burned to the ground by order of Shilen. Then we with my friends barely managed to escape. We lost their homeland and dispersed throughout the world in all directions. I recently learned that his creatures Shilen ordered to gather the strength to revive her.
-In what may become necessary to prevent her to be reborn. If the goddess reborn, this world will fill the die. Our overall mission is greater than the racial interests. So after some time I again ask you for help. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/32140-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/32140-04.html deleted file mode 100644 index 016f1a98d6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/32140-04.html +++ /dev/null @@ -1,2 +0,0 @@ -Vice Hierarch Zenya:
-You have not yet completed the task, which I gave to you. Most of the case. \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/Q10374_ThatPlaceSuccubus.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/Q10374_ThatPlaceSuccubus.java deleted file mode 100644 index 7d11890d82..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/Q10374_ThatPlaceSuccubus.java +++ /dev/null @@ -1,272 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10374_ThatPlaceSuccubus; - -import com.l2jmobius.gameserver.enums.ChatType; -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.base.ClassLevel; -import com.l2jmobius.gameserver.model.holders.ItemHolder; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; -import com.l2jmobius.gameserver.network.NpcStringId; -import com.l2jmobius.gameserver.network.serverpackets.ExQuestNpcLogList; -import com.l2jmobius.gameserver.network.serverpackets.NpcSay; -import com.l2jmobius.gameserver.util.Util; - -/** - * That Place Succubus (10374) - * @URL https://l2wiki.com/That_Place_Succubus - * @author Gigi - */ -public class Q10374_ThatPlaceSuccubus extends Quest -{ - // NPCs - private static final int ANDREI = 31292; - private static final int AGNES = 31588; - private static final int ZENYA = 32140; - // Items - private static final ItemHolder ADENA = new ItemHolder(57, 500560); - // Reward - private static final int EXP_REWARD = 23747100; - private static final int SP_REWARD = 5699; - // Misc - private static final int MIN_LEVEL = 80; - // Monsters - private static final int PHANTOM_SOLIDER = 23186; - private static final int PHANTOM_WARRIOR = 23187; - private static final int PHANTOM_ARCHER = 23188; - private static final int PHANTOM_SHAMAN = 23189; - private static final int PHANTOM_MARTYR = 23190; - - public Q10374_ThatPlaceSuccubus() - { - super(10374); - addStartNpc(ANDREI); - addTalkId(ANDREI, AGNES, ZENYA); - addKillId(PHANTOM_SOLIDER, PHANTOM_WARRIOR, PHANTOM_ARCHER, PHANTOM_SHAMAN, PHANTOM_MARTYR); - addCondMinLevel(MIN_LEVEL, "noLevel.html"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - String htmltext = null; - switch (event) - { - case "31292-02.htm": - case "31292-04.html": - case "31588-03.html": - { - htmltext = event; - break; - } - case "31292-03.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "31588-02.html": - { - qs.setCond(2, true); - htmltext = event; - break; - } - case "32140-02.html": - { - qs.setCond(0); - qs.setCond(3, true); - htmltext = event; - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - if ((npc.getId() == ZENYA) && (player.getClassId().level() == ClassLevel.THIRD.ordinal())) - { - return "noClass.html"; - } - - switch (qs.getState()) - { - case State.CREATED: - { - switch (npc.getId()) - { - case ANDREI: - { - htmltext = "31292-01.htm"; - } - } - break; - } - case State.STARTED: - { - switch (npc.getId()) - { - case ANDREI: - { - if (qs.isCond(1)) - { - htmltext = "31292-04.html"; - } - else if (qs.isCond(2)) - { - htmltext = "31292-04.html"; - } - break; - } - case AGNES: - { - if (qs.isCond(1)) - { - htmltext = "31588-01.html"; - } - else if (qs.isCond(2)) - { - htmltext = "31588-03.html"; - } - break; - } - case ZENYA: - { - if (qs.isCond(2)) - { - htmltext = "32140-01.html"; - } - else if (qs.isCond(3)) - { - htmltext = "32140-04.html"; - } - else if (qs.isCond(4)) - { - giveItems(player, ADENA); - addExpAndSp(player, EXP_REWARD, SP_REWARD); - npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), NpcStringId.THANK_YOU_WITH_YOUR_HELP_WE_WERE_ABLE_TO_SURVIVE_A_GREAT_CRISIS)); - qs.exitQuest(false, true); - htmltext = "32140-03.html"; - } - break; - } - } - break; - } - case State.COMPLETED: - { - htmltext = getAlreadyCompletedMsg(player); - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState qs = getRandomPartyMemberState(killer, 3, 3, npc); - if ((qs != null) && qs.isCond(3) && Util.checkIfInRange(1500, npc, qs.getPlayer(), false)) - { - switch (npc.getId()) - { - case PHANTOM_SOLIDER: - { - int kills = qs.getInt(Integer.toString(PHANTOM_SOLIDER)); - if (kills < 15) - { - kills++; - qs.set(Integer.toString(PHANTOM_SOLIDER), kills); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - break; - } - case PHANTOM_WARRIOR: - { - int kills = qs.getInt(Integer.toString(PHANTOM_WARRIOR)); - if (kills < 10) - { - kills++; - qs.set(Integer.toString(PHANTOM_WARRIOR), kills); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - break; - } - case PHANTOM_ARCHER: - { - int kills = qs.getInt(Integer.toString(PHANTOM_ARCHER)); - if (kills < 5) - { - kills++; - qs.set(Integer.toString(PHANTOM_ARCHER), kills); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - break; - } - case PHANTOM_SHAMAN: - { - int kills = qs.getInt(Integer.toString(PHANTOM_SHAMAN)); - if (kills < 5) - { - kills++; - qs.set(Integer.toString(PHANTOM_SHAMAN), kills); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - break; - } - case PHANTOM_MARTYR: - { - int kills = qs.getInt(Integer.toString(PHANTOM_MARTYR)); - if (kills < 5) - { - kills++; - qs.set(Integer.toString(PHANTOM_MARTYR), kills); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - break; - } - } - - final ExQuestNpcLogList log = new ExQuestNpcLogList(getId()); - log.addNpc(PHANTOM_SOLIDER, qs.getInt(Integer.toString(PHANTOM_SOLIDER))); - log.addNpc(PHANTOM_WARRIOR, qs.getInt(Integer.toString(PHANTOM_WARRIOR))); - log.addNpc(PHANTOM_ARCHER, qs.getInt(Integer.toString(PHANTOM_ARCHER))); - log.addNpc(PHANTOM_SHAMAN, qs.getInt(Integer.toString(PHANTOM_SHAMAN))); - log.addNpc(PHANTOM_MARTYR, qs.getInt(Integer.toString(PHANTOM_MARTYR))); - qs.getPlayer().sendPacket(log); - - if ((qs.getInt(Integer.toString(PHANTOM_SOLIDER)) >= 15) && (qs.getInt(Integer.toString(PHANTOM_WARRIOR)) >= 10) && (qs.getInt(Integer.toString(PHANTOM_ARCHER)) >= 5) && (qs.getInt(Integer.toString(PHANTOM_SHAMAN)) >= 5) && (qs.getInt(Integer.toString(PHANTOM_MARTYR)) >= 5)) - { - qs.setCond(4, true); - } - } - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/noClass.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/noClass.html deleted file mode 100644 index a1d396c156..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/noClass.html +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Zenya:
-I feel your strength Germunkusa. Now we are able to deal with all problems. And your other necessary assistance.
-(This is a task only for the characters, Completed the 3rd Class Transfer; Before Awakening.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/noLevel.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/noLevel.html deleted file mode 100644 index 89630fa049..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10374_ThatPlaceSuccubus/noLevel.html +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Zenya:
-This mission will be too hard for you. Don't be disappointed. Once you have grown a little more, please come back
-(You must be level 80 or above to start this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-01.htm deleted file mode 100644 index c23fab1b23..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Zenya:
-The demons that have captured the Emperors Tomb, in fact, are not creatures of this world - they are causing the world of dreams. They may appear to exist in this world thanks to the special creatures - Dreams of the Apostles. Having a special power of Shilen, they bring to our world nightmares.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-02.htm deleted file mode 100644 index aec85d647f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Vice Hierarch Zenya:
-I heard something about that from anyone. Whoever it was, it took too much time to think about it.
-First of all, we need to destroy and weaken the Apostles Dream of demons. So...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-03.html deleted file mode 100644 index ce20e11d7f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-03.html +++ /dev/null @@ -1,5 +0,0 @@ -Vice Hierarch Zenya:
-Adventurer. I am glad that you are back safely.Thanks to your efforts. The Succubus Disciples and their power im this world have weakened. -But we cannot let our guard down yet. Inside the Imperial tomb, there are more powerful disciples.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-04.html deleted file mode 100644 index 031a0e1826..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Vice Hierarch Zenya:
-I knew you would say that. Adventurer. Now! Go inside again to the Imperial Tomb.Go deeper inside an d kill the Succubus of Insanity and Succubus of Silence, 5 each of thrm. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-05.html deleted file mode 100644 index 0e0db6377c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-05.html +++ /dev/null @@ -1,3 +0,0 @@ -Vice Hierarch Zenya:
-The task was very difficult, and you performed it so beautifully, it's just wonderful. So... Thanks to your servant of Shilen, no doubt, have lost a lot of effort. Of course, it is too early to relax. With the machinations of Shilen has not yet finished with its odious creatures, too. I want to stay and observe them, and yet you'd better have a rest. If I need help, I'll let you know. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-06.html deleted file mode 100644 index 7f465306e4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-06.html +++ /dev/null @@ -1,3 +0,0 @@ -Vice Hierarch Zenya:
-Thank you for having made the right decision. So... Sign In Imperial Tomb. Go on and kill the Succubus of Death and Succubus of Darkness, 5 of each of them. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-07.html deleted file mode 100644 index 0c2246d26c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/32140-07.html +++ /dev/null @@ -1,3 +0,0 @@ -Vice Hierarch Zenya:
-I can not believe your words. So... Come on! Then quickly go into Emperors Tomb. At this time, will need to go further than usual. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/Q10375_SuccubusDisciples.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/Q10375_SuccubusDisciples.java deleted file mode 100644 index 958619d3a3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/Q10375_SuccubusDisciples.java +++ /dev/null @@ -1,243 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10375_SuccubusDisciples; - -import com.l2jmobius.gameserver.enums.ChatType; -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.base.ClassLevel; -import com.l2jmobius.gameserver.model.holders.ItemHolder; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.network.NpcStringId; -import com.l2jmobius.gameserver.network.serverpackets.ExQuestNpcLogList; -import com.l2jmobius.gameserver.network.serverpackets.NpcSay; -import com.l2jmobius.gameserver.util.Util; - -import quests.Q10374_ThatPlaceSuccubus.Q10374_ThatPlaceSuccubus; - -/** - * Succubus Discipless (10375) - * @URL https://l2wiki.com/Succubus_Disciples - * @author Gigi - */ -public class Q10375_SuccubusDisciples extends Quest -{ - // NPCs - private static final int ZENYA = 32140; - // Items - private static final ItemHolder ADENA = new ItemHolder(57, 498700); - // Reward - private static final int EXP_REWARD = 24782300; - private static final int SP_REWARD = 5947; - // Misc - private static final int MIN_LEVEL = 80; - // Monsters - private static final int SUCCUBUS_OF_DEATH = 23191; - private static final int SUCCUBUS_OF_DARKNESS = 23192; - private static final int SUCCUBUS_OF_LUNACY = 23197; - private static final int SUCCUBUS_OF_SILENCE = 23198; - - public Q10375_SuccubusDisciples() - { - super(10375); - addStartNpc(ZENYA); - addTalkId(ZENYA); - addKillId(SUCCUBUS_OF_DEATH, SUCCUBUS_OF_DARKNESS, SUCCUBUS_OF_SILENCE, SUCCUBUS_OF_LUNACY); - addCondMinLevel(MIN_LEVEL, "noLevel.html"); - addCondCompletedQuest(Q10374_ThatPlaceSuccubus.class.getSimpleName(), "restriction.html"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - String htmltext = null; - switch (event) - { - case "32140-02.htm": - { - htmltext = event; - break; - } - case "32140-06.html": - { - qs.startQuest(); - htmltext = event; - break; - } - case "32140-04.html": - { - qs.setCond(0); - qs.setCond(3, true); - htmltext = event; - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - if (qs.isCompleted()) - { - htmltext = getAlreadyCompletedMsg(player); - } - - if ((npc.getId() == ZENYA) && (player.getClassId().level() == ClassLevel.THIRD.ordinal())) - { - return "noClass.html"; - } - - switch (npc.getId()) - { - case ZENYA: - { - if (qs.isCreated()) - { - htmltext = "32140-01.htm"; - } - else if (qs.isStarted()) - { - switch (qs.getCond()) - { - case 1: - { - htmltext = "32140-07.html"; - break; - } - case 2: - { - htmltext = "32140-03.html"; - break; - } - case 4: - { - if (qs.isCond(4)) - { - giveItems(player, ADENA); - addExpAndSp(player, EXP_REWARD, SP_REWARD); - npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), NpcStringId.YOU_ARE_TRULY_AMAZING_FOR_DEFEATING_THE_SUCCUBUS_DISCIPLES)); - playSound(player, QuestSound.ITEMSOUND_QUEST_FINISH); - qs.exitQuest(false, true); - htmltext = "32140-05.html"; - } - break; - } - } - } - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState qs = getRandomPartyMemberState(killer, -1, 3, npc); - if ((qs != null) && qs.isCond(1) && Util.checkIfInRange(1500, npc, qs.getPlayer(), false)) - { - switch (npc.getId()) - { - case SUCCUBUS_OF_DEATH: - { - int kills = qs.getInt(Integer.toString(SUCCUBUS_OF_DEATH)); - if (kills < 5) - { - kills++; - qs.set(Integer.toString(SUCCUBUS_OF_DEATH), kills); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - break; - } - case SUCCUBUS_OF_DARKNESS: - { - int kills = qs.getInt(Integer.toString(SUCCUBUS_OF_DARKNESS)); - if (kills < 5) - { - kills++; - qs.set(Integer.toString(SUCCUBUS_OF_DARKNESS), kills); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - break; - } - } - - final ExQuestNpcLogList log = new ExQuestNpcLogList(getId()); - log.addNpc(SUCCUBUS_OF_DEATH, qs.getInt(Integer.toString(SUCCUBUS_OF_DEATH))); - log.addNpc(SUCCUBUS_OF_DARKNESS, qs.getInt(Integer.toString(SUCCUBUS_OF_DARKNESS))); - qs.getPlayer().sendPacket(log); - - if ((qs.getInt(Integer.toString(SUCCUBUS_OF_DEATH)) >= 5) && (qs.getInt(Integer.toString(SUCCUBUS_OF_DARKNESS)) >= 5)) - { - qs.setCond(2); - playSound(killer, QuestSound.ITEMSOUND_QUEST_MIDDLE); - } - } - - else if ((qs != null) && qs.isCond(3) && Util.checkIfInRange(1500, npc, qs.getPlayer(), false)) - { - switch (npc.getId()) - { - case SUCCUBUS_OF_SILENCE: - { - int kills = qs.getInt(Integer.toString(SUCCUBUS_OF_SILENCE)); - if (kills < 5) - { - kills++; - qs.set(Integer.toString(SUCCUBUS_OF_SILENCE), kills); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - break; - } - case SUCCUBUS_OF_LUNACY: - { - int kills = qs.getInt(Integer.toString(SUCCUBUS_OF_LUNACY)); - if (kills < 5) - { - kills++; - qs.set(Integer.toString(SUCCUBUS_OF_LUNACY), kills); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - break; - } - } - - final ExQuestNpcLogList log = new ExQuestNpcLogList(getId()); - log.addNpc(SUCCUBUS_OF_SILENCE, qs.getInt(Integer.toString(SUCCUBUS_OF_SILENCE))); - log.addNpc(SUCCUBUS_OF_LUNACY, qs.getInt(Integer.toString(SUCCUBUS_OF_LUNACY))); - qs.getPlayer().sendPacket(log); - - if ((qs.getInt(Integer.toString(SUCCUBUS_OF_SILENCE)) >= 5) && (qs.getInt(Integer.toString(SUCCUBUS_OF_LUNACY)) >= 5)) - { - qs.setCond(4); - playSound(killer, QuestSound.ITEMSOUND_QUEST_MIDDLE); - } - } - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/noClass.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/noClass.html deleted file mode 100644 index a1d396c156..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/noClass.html +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Zenya:
-I feel your strength Germunkusa. Now we are able to deal with all problems. And your other necessary assistance.
-(This is a task only for the characters, Completed the 3rd Class Transfer; Before Awakening.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/noLevel.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/noLevel.html deleted file mode 100644 index 89630fa049..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/noLevel.html +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Zenya:
-This mission will be too hard for you. Don't be disappointed. Once you have grown a little more, please come back
-(You must be level 80 or above to start this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/restriction.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/restriction.html deleted file mode 100644 index 004c14fb31..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10375_SuccubusDisciples/restriction.html +++ /dev/null @@ -1,3 +0,0 @@ -Vorbos:
-(Quest only available to Ertheia characters Lv. 80+ or above who have completed the quest "That Place Succubus.") - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31292-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31292-01.htm deleted file mode 100644 index d8626b2d4f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31292-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Captain Andrei:
-Hmm... Complicated. So there was something very powerful inside the Imperial Tomb that was needed for Shilen's resurrection, and it originally belonged to Einhasad... And now, servants of the giant called Hermuncus have taken it? Well? Is that right?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31292-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31292-02.htm deleted file mode 100644 index 3f9ed96ff0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31292-02.htm +++ /dev/null @@ -1,4 +0,0 @@ -Captain Andrei:
-Hmm I see. But putting aside the talk about gods and giants, did you say that you defeated the head of the monsters in the Imperial Tomb with your own hands? What was it called again? Blood Thirst?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31292-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31292-03.html deleted file mode 100644 index f69db416e4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31292-03.html +++ /dev/null @@ -1,3 +0,0 @@ -Captain Andrei:
-All right! That's plenty! The immediate threat to the Goddard Territory has disappeared. We will worry later about the things to come! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31588-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31588-01.html deleted file mode 100644 index 0febd2f4e3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31588-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Agnes:
-I'm glad that you returned safely. Did you meet the Kamaels that I told you about?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31588-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31588-02.html deleted file mode 100644 index 8f49a41407..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31588-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Agnes:
-What?! They became followers of Hermuncus?! How did I fail to notice this earlier?
-Please listen! The power that the Kamael stole originally belonged to Einhasad, not Hermuncus, though Hermuncus had stolen it from her. Some of it was probably scattered while Hermuncus was spiriting it away. This... this is AWFUL!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31588-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31588-03.html deleted file mode 100644 index 99fba3ce5c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/31588-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Agnes:
-Well... well... oh.
-I need to study a few things, friend. You should return to Captain Andrei. With any luck, he'll have an answer to all this chaos. - diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-01.html deleted file mode 100644 index bb3f8ccfd6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Casca:
-I have been waiting. I've heard much about you from Vice Hierarch Zenya. You've helped us a lot, right? I am sure you have heard some information already. I am here searching for traces of the Blood Thirst.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-02.html deleted file mode 100644 index a3e67b51f5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Casca:
-That evil spirit exists and yet it does not within the Imperial Tomb. It is at the border between reality and delusion, so it is not easy to find. But after a long time of searching, I discovered its hide out. Will you go with me there, and defeat the Blood Thirst?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-03.html deleted file mode 100644 index 7156341db5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Casca:
-You have chosen wisely! Tell me when you are ready. We must go to the border between reality and delusion to defeat the Blood Thirst and shatter Shilen's futile dream.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-04.html deleted file mode 100644 index 8efc1945d6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-04.html +++ /dev/null @@ -1,5 +0,0 @@ -Vice Hierarch Casca:
-Now! Defeat the Blood Thirst before you! Defeat him and return to me. Then, I will let you go back to the Imperial Tomb.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-05.html deleted file mode 100644 index 6e821f5748..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-05.html +++ /dev/null @@ -1,3 +0,0 @@ -Vice Hierarch Casca:
-I still cannot forget the day that my hometown was destroyed by Shilen. We could only scream and await our death... Until suddenly, our savior Hermuncus appeared and rescued us! He is the only one who can fight against Shilen and retain the peace of this world.
- \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-06.html deleted file mode 100644 index 36254f55d3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-06.html +++ /dev/null @@ -1,6 +0,0 @@ -Vice Hierarch Casca:
-Adventurer, well done. Your efforts were instrumental in defeating the Blood Thirst and in retrieving some of the power that our master seeks. If this power had gone to Shilen, it would have surely helped her resurrect into this world. Thankfully that didn't happen.
- - - - diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-07.html deleted file mode 100644 index 2a7a29ceca..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Casca:
-Our master is Hermuncus. He was one of the giants who created the Kamael race. When the Isle of Souls was destroyed by Shilen, he saved our people. We who escaped the destruction pledged our lives to him.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-08.html deleted file mode 100644 index 8d257431eb..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-08.html +++ /dev/null @@ -1,5 +0,0 @@ -Vice Hierarch Casca:
-Using you, huh? Very well, I will not deny it. But you must know that this was done for the good of all of us. Shilen's resurrection must be stopped at all costs, and we should do everything we can to prevent her from gaining even one more foothold in this war. Besides, the power that Shilen had sought through her minions here at the Imperial Tomb had originally belonged to Hermuncus; it is only right that we return it to its rightful owner.
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-09.html deleted file mode 100644 index 1052c21a4f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139-09.html +++ /dev/null @@ -1,5 +0,0 @@ -Vice Hierarch Casca:
-It means great things for you, but you must be patient. I shall leave now, but first, I will return you to the Town of Goddard. When you arrive, please thank Agnes for me. It was because of her that I was able to meet you. Now, are you ready?
- - - diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139.html deleted file mode 100644 index d52eb218e6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32139.html +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Casca:
-I still cannot forget the day that my hometown was destroyed by Shilen. We could only scream and await our death... Until suddenly, our savior Hermuncus appeared and rescued us! He is the only one who can fight against Shilen and retain the peace of this world.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-01.htm deleted file mode 100644 index 12008a699d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Zenya:
-On the day when the order was destroyed by Shilen Island Shower with me ran Keska. He also hates Shilen, as I do. Now he is looking for traces of Vladiveyna in the Tomb of the Emperors.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-02.htm deleted file mode 100644 index ea42afed27..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-02.htm +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Zenya:
-Vladiveyn - Ruler of Dreams. Now he put the leader of the demons in the Tomb of the Emperor. If we win this demon and thwart Shilen, perhaps, the demons will disappear altogether from the Tombs of the Emperors. Try to beat this demon.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-03.html deleted file mode 100644 index 036c8adce5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Zenya:
-I feel your strength Germunkusa. Now we are able to deal with all problems. And your other necessary assistance.
-(This is a task only for the characters, the last third change of profession, and not degenerate.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-06.html deleted file mode 100644 index 9b5993a05f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-06.html +++ /dev/null @@ -1,3 +0,0 @@ -Vice Hierarch Zenya:
-Here's a joy. This is the answer I was waiting for. Then quickly go to the Imperial Tomb, find there Assistant Tetrarch Kesku, talk to him and help him defeat the Vladiveyna. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-07.html deleted file mode 100644 index 94e8e9a6e0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/32140-07.html +++ /dev/null @@ -1,3 +0,0 @@ -Vice Hierarch Zenya:
-So... You met with Cesca in the Tomb of the Emperors? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/Q10376_BloodyGoodTime.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/Q10376_BloodyGoodTime.java deleted file mode 100644 index 2076635ac3..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/Q10376_BloodyGoodTime.java +++ /dev/null @@ -1,251 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10376_BloodyGoodTime; - -import com.l2jmobius.gameserver.enums.ChatType; -import com.l2jmobius.gameserver.enums.Race; -import com.l2jmobius.gameserver.model.Location; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.base.ClassLevel; -import com.l2jmobius.gameserver.model.holders.ItemHolder; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; -import com.l2jmobius.gameserver.network.NpcStringId; -import com.l2jmobius.gameserver.network.serverpackets.ExShowScreenMessage; -import com.l2jmobius.gameserver.network.serverpackets.NpcSay; - -import quests.Q10375_SuccubusDisciples.Q10375_SuccubusDisciples; - -/** - * Bloody Good Time (10376) - * @URL https://l2wiki.com/Bloody_Good_Time - * @author Gigi - */ -public class Q10376_BloodyGoodTime extends Quest -{ - // NPCs - private static final int ZENYA = 32140; - private static final int CASCA = 32139; - private static final int AGNES = 31588; - private static final int ANDREI = 31292; - private static final int MOB_BLOODY_VEIN = 27481; - // Misc - private static final int MIN_LEVEL = 80; - // Reward - private static final int EXP_REWARD = 121297500; - private static final int SP_REWARD = 29111; - // Items - private static final ItemHolder REWARD_MAGIC_RUNE_CLIP = new ItemHolder(32700, 1); - // Location - private static final Location RETURN_LOC = new Location(178648, -84903, -7216); - - public Q10376_BloodyGoodTime() - { - super(10376); - addStartNpc(ZENYA); - addTalkId(ZENYA, CASCA, AGNES, ANDREI); - addFirstTalkId(CASCA); - addKillId(MOB_BLOODY_VEIN); - addCondMinLevel(MIN_LEVEL, "noLevel.html"); - addCondCompletedQuest(Q10375_SuccubusDisciples.class.getSimpleName(), "restriction.html"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - String htmltext = null; - switch (event) - { - case "32139-05.html": - case "32139-07.html": - case "32139-08.html": - case "32139-09.html": - case "31588-02.html": - case "32140-02.htm": - case "32140-07.html": - case "31292-02.htm": - { - htmltext = event; - break; - } - case "32140-06.html": - { - qs.startQuest(); - htmltext = "32140-06.html"; - break; - } - case "32139-02.html": - { - if (qs.isCond(1)) - { - qs.setCond(2, true); - htmltext = event; - break; - } - } - case "return": - { - if (player.isInCombat()) - { - player.sendPacket(new ExShowScreenMessage("You cannot teleport when you in combat status.", 5000)); - } - else - { - qs.setCond(2); - player.teleToLocation(RETURN_LOC, 0); - player.setInstance(null); - } - } - case "32139-03.html": - { - htmltext = event; - break; - } - case "31588-03.html": - { - qs.setCond(6, true); - break; - } - case "31292-03.html": - { - addExpAndSp(player, EXP_REWARD, SP_REWARD); - npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), NpcStringId.WELL_DONE_I_WAS_RIGHT_TO_ENTRUST_THIS_TO_YOU)); - giveItems(player, REWARD_MAGIC_RUNE_CLIP); - htmltext = event; - qs.exitQuest(false, true); - } - break; - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - if (qs.isCompleted()) - { - htmltext = getAlreadyCompletedMsg(player); - } - switch (npc.getId()) - { - case ZENYA: - { - switch (qs.getState()) - { - case State.CREATED: - { - if (((player.getClassId().level() != ClassLevel.AWAKEN.ordinal()) && (player.getRace() != Race.ERTHEIA))) - { - return "32140-01.htm"; - } - else if ((player.getRace() == Race.ERTHEIA) && (player.getLevel() >= MIN_LEVEL)) - { - return "32140-01.htm"; - } - else - { - return "32140-03.html"; - } - } - case State.STARTED: - { - return "32140-07.html"; - } - case State.COMPLETED: - { - return "32140-05.htm"; - } - } - break; - } - case CASCA: - { - if (qs.isStarted()) - { - if (qs.isCond(1)) - { - return "32139-01.html"; - } - else if (qs.isCond(2)) - { - return "32139-03.html"; - } - else if (qs.isCond(3)) - { - return "32139-04.html"; - } - else if (qs.isCond(4)) - { - return "32139-06.html"; - } - } - break; - } - case AGNES: - { - if (qs.isStarted()) - { - if (qs.isCond(5)) - { - htmltext = "31588-01.html"; - } - else if (qs.isCond(6)) - { - htmltext = "31588-03.html"; - } - } - break; - } - case ANDREI: - { - if (qs.isStarted() && qs.isCond(6)) - { - htmltext = "31292-01.htm"; - } - break; - } - } - return htmltext; - } - - @Override - public String onFirstTalk(L2Npc npc, L2PcInstance player) - { - return "32139.html"; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState st = getQuestState(killer, false); - - if ((st != null) && st.isCond(3)) - { - st.setCond(4, true); - } - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/noClass.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/noClass.html deleted file mode 100644 index a1d396c156..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/noClass.html +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Zenya:
-I feel your strength Germunkusa. Now we are able to deal with all problems. And your other necessary assistance.
-(This is a task only for the characters, Completed the 3rd Class Transfer; Before Awakening.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/noLevel.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/noLevel.html deleted file mode 100644 index 89630fa049..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/noLevel.html +++ /dev/null @@ -1,4 +0,0 @@ -Vice Hierarch Zenya:
-This mission will be too hard for you. Don't be disappointed. Once you have grown a little more, please come back
-(You must be level 80 or above to start this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/restriction.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/restriction.html deleted file mode 100644 index 74220425e5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10376_BloodyGoodTime/restriction.html +++ /dev/null @@ -1,3 +0,0 @@ -Vorbos:
-(Quest only available to Ertheia characters Lv. 80+ or above who have completed the quest "Succubus Disciples.") - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33862-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33862-01.html deleted file mode 100644 index 9fe035da02..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33862-01.html +++ /dev/null @@ -1,3 +0,0 @@ -Guard Kelios:
-Really? Refugee Leo asked you to kill the Oel Mahum monsters? That's a serious workout! In case I don't get the chance to tell you later, thank you in advance. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33862-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33862-02.html deleted file mode 100644 index a8454205d2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33862-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Guard Kelios:
-Say, didn't Refugee Leo ask you to kill the Oel Mahum monsters? Have you finished already?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33862-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33862-03.html deleted file mode 100644 index 0f71e63504..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33862-03.html +++ /dev/null @@ -1,3 +0,0 @@ -Guard Kelios:
-Thank you! I will report this to Blacksmith Flutter in detail. And we'll make sure that we put together the Suspicious Fragments. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-01.htm deleted file mode 100644 index d78d703021..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Refugee Leo:
-Please, hear me out! I'm no threat to you now. I'm a refugee, no home, no possessions, no nothing. I'm not the person you beat up and left for dead.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-02.htm deleted file mode 100644 index f31714b58c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Refugee Leo:
-I heard from Kelios why you're here, but you and I both know that killing monsters won't solve the problem.
-We must remove the Oel Mahums from the Outlaw Forest.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-03.htm deleted file mode 100644 index 9d2cd844e0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-03.htm +++ /dev/null @@ -1,5 +0,0 @@ -Refugee Leo:
-That's correct. But I am no traitor. My people are... out of their minds.
-The Mahums were proud warriors once. But we were driven from our homes, weak in spirit, when Shilen came among us. I thought what we were feeling was rekindled pride, but we became violently insane. Now my people are only beasts hungry for blood. Can you help them die with dignity?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-04.htm deleted file mode 100644 index 7ab0825e70..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-04.htm +++ /dev/null @@ -1,3 +0,0 @@ -Refugee Leo:
-Please, help them rest in peace. Get rid of Oel Mahums, Oel Mahum Warriors, Oel Mahum Shamen and Ol Mahum Transcenders. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-05.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-05.htm deleted file mode 100644 index 81197c022d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-05.htm +++ /dev/null @@ -1,4 +0,0 @@ -Refugee Leo:
-I feel so... weak. Please, don't hurt me. Just leave me alone!
-(This quest is for characters level 46 or above who have completed the quest "Mutual Benefit".) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-06.html deleted file mode 100644 index d4a1d16b1a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/33863-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Refugee Leo:
-What are you supposed to be? Weakling. Go away!
-(Ertheia is excluded from this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/Q10395_NotATraitor.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/Q10395_NotATraitor.java deleted file mode 100644 index 68b36644df..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10395_NotATraitor/Q10395_NotATraitor.java +++ /dev/null @@ -1,181 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10395_NotATraitor; - -import java.util.HashSet; -import java.util.Set; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.enums.Race; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.holders.NpcLogListHolder; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; -import com.l2jmobius.gameserver.network.NpcStringId; - -import quests.Q10394_MutualBenefit.Q10394_MutualBenefit; - -/** - * Not a Traitor (10395) - * @author St3eT - */ -public final class Q10395_NotATraitor extends Quest -{ - // NPCs - private static final int LEO = 33863; - private static final int KELIOS = 33862; - private static final int[] MONSTERS = - { - 20161, // Oel Mahum - 20575, // Oel Mahum Warrior - 20576, // Oel Mahum Shaman - 21261, // Ol Mahum Transcender - }; - // Items - private static final int EAC = 952; // Scroll: Enchant Armor (C-grade) - // Misc - private static final int MIN_LEVEL = 46; - private static final int MAX_LEVEL = 52; - - public Q10395_NotATraitor() - { - super(10395); - addStartNpc(LEO); - addTalkId(LEO, KELIOS); - addKillId(MONSTERS); - addCondNotRace(Race.ERTHEIA, "33863-06.html"); - addCondLevel(MIN_LEVEL, MAX_LEVEL, "33863-05.htm"); - addCondCompletedQuest(Q10394_MutualBenefit.class.getSimpleName(), "33863-05.htm"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState st = getQuestState(player, false); - if (st == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "33863-02.htm": - case "33863-03.htm": - { - htmltext = event; - break; - } - case "33863-04.htm": - { - st.startQuest(); - htmltext = event; - break; - } - case "33862-03.html": - { - if (st.isCond(2)) - { - st.exitQuest(false, true); - giveItems(player, EAC, 5); - giveStoryQuestReward(npc, player); - if (player.getLevel() >= MIN_LEVEL) - { - addExpAndSp(player, 3_781_574, 907); - } - htmltext = event; - } - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState st = getQuestState(player, true); - - switch (st.getState()) - { - case State.CREATED: - { - if (npc.getId() == LEO) - { - htmltext = "33863-01.htm"; - } - break; - } - case State.STARTED: - { - if (st.isCond(1)) - { - htmltext = npc.getId() == LEO ? "33863-04.htm" : "33862-01.html"; - } - else if (st.isCond(2)) - { - htmltext = npc.getId() == LEO ? "33863-04.htm" : "33862-02.html"; - } - break; - } - case State.COMPLETED: - { - if (npc.getId() == LEO) - { - htmltext = getAlreadyCompletedMsg(player); - } - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState st = getQuestState(killer, false); - - if ((st != null) && st.isStarted() && st.isCond(1) && (getRandom(100) < 75)) - { - final int killedMonsters = st.getInt("killedMonsters") + 1; - st.set("killedMonsters", killedMonsters); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - - if (killedMonsters == 50) - { - st.setCond(2, true); - } - } - return super.onKill(npc, killer, isSummon); - } - - @Override - public Set getNpcLogList(L2PcInstance activeChar) - { - final QuestState st = getQuestState(activeChar, false); - if ((st != null) && st.isStarted() && st.isCond(1)) - { - final Set npcLogList = new HashSet<>(1); - npcLogList.add(new NpcLogListHolder(NpcStringId.ELIMINATE_THE_OEL_MAHUM_MONSTERS, st.getInt("killedMonsters"))); - return npcLogList; - } - return super.getNpcLogList(activeChar); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/30196-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/30196-01.html deleted file mode 100644 index 3660325b17..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/30196-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Captain Mouen:
-Good to see you again. I guess you came here because you got a letter from Kekropus.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/30196-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/30196-02.html deleted file mode 100644 index 5b57bbdde0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/30196-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Captain Mouen:
-You probably got the gist from Kekropus's letter but the Sea of Spores is where you have to go. We've dispatched soldiers to tighten security, but I don't think that is enough.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/30196-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/30196-03.html deleted file mode 100644 index b9fc8117b0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/30196-03.html +++ /dev/null @@ -1,5 +0,0 @@ -Captain Mouen:
-According to our latest report, Suspicious Badges were found on monsters out there. They may have something to do with the monsters' increased ferocity.
-For more information, go talk to Andy the Patrol at the Sea of Spores. Good luck then.
-To reach the Sea of Spores, use this Scroll of Escape: Sea of Spores, or ask a Gatekeeper for help. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/30196-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/30196-04.html deleted file mode 100644 index 653d352905..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/30196-04.html +++ /dev/null @@ -1,4 +0,0 @@ -Captain Mouen:
-The situation at the Sea of Spores is not good. Go to the Sea of Spores and talk to Andy the Patrol.
-To reach the Sea of Spores, use the Scroll of Escape: Sea of Spores I gave you or ask a Gatekeeper for help. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/33845-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/33845-01.html deleted file mode 100644 index 889a4c7afe..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/33845-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Andy the Patrol:
-Here in the Sea of Spores, we're dependent upon a force field built by the Ivory Tower wizards. The force field prevents the spores from expanding outward and keeps monsters inside at the same time. But lately the monsters have been acting suspicious. I'm worried that if we don't do anything, they might take down the forcefield and plunge this whole area into chaos.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/33845-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/33845-02.html deleted file mode 100644 index 65eb92aa87..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/33845-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Andy the Patrol:
-I don't really know the details yet. All I've heard is that Suspicious Badges were found on monsters, and I assume they're what's making the monsters so violent. There's a scholar staying here in the Sea of Spores to investigate the badges.
-I appreciate you coming all the way out here. Hopefully you can get to the bottom of this.

-- Note: You can develop yourself through quests and hunting at the hunting ground of the Sea of Spores. You can get the next item, Kekropus' Letter, at Lv. 58. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/Q10397_KekropusLetterASuspiciousBadge.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/Q10397_KekropusLetterASuspiciousBadge.java deleted file mode 100644 index 6d55763f7c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/Q10397_KekropusLetterASuspiciousBadge.java +++ /dev/null @@ -1,149 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10397_KekropusLetterASuspiciousBadge; - -import com.l2jmobius.gameserver.model.Location; -import com.l2jmobius.gameserver.model.actor.L2Character; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.network.NpcStringId; -import com.l2jmobius.gameserver.network.serverpackets.ExShowScreenMessage; - -import quests.LetterQuest; - -/** - * Kekropus' Letter: A Suspicious Badge (10397) - * @author St3eT - */ -public final class Q10397_KekropusLetterASuspiciousBadge extends LetterQuest -{ - // NPCs - private static final int MOUEN = 30196; - private static final int ANDY = 33845; - private static final int INVISIBLE_NPC = 19543; - // Items - private static final int SOE_TOWN_OF_OREN = 37114; // Scroll of Escape: Town of Oren - private static final int SOE_SEA_OF_SPORES = 37027; // Scroll of Escape: Sea of Spores - private static final int EWB = 947; // Scroll: Enchant Weapon (B-grade) - // Location - private static final Location TELEPORT_LOC = new Location(81013, 56413, -1552); - // Misc - private static final int MIN_LEVEL = 52; - private static final int MAX_LEVEL = 57; - - public Q10397_KekropusLetterASuspiciousBadge() - { - super(10397); - addTalkId(MOUEN, ANDY); - addSeeCreatureId(INVISIBLE_NPC); - - setIsErtheiaQuest(false); - setLevel(MIN_LEVEL, MAX_LEVEL); - setStartQuestSound("Npcdialog1.kekrops_quest_3"); - setStartLocation(SOE_TOWN_OF_OREN, TELEPORT_LOC); - registerQuestItems(SOE_TOWN_OF_OREN, SOE_SEA_OF_SPORES); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState st = getQuestState(player, false); - if (st == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "30196-02.html": - { - htmltext = event; - break; - } - case "30196-03.html": - { - if (st.isCond(1)) - { - giveItems(player, SOE_SEA_OF_SPORES, 1); - st.setCond(2, true); - htmltext = event; - } - break; - } - case "33845-02.html": - { - if (st.isCond(2)) - { - st.exitQuest(false, true); - giveItems(player, EWB, 2); - giveStoryQuestReward(npc, player); - if (player.getLevel() >= MIN_LEVEL) - { - addExpAndSp(player, 635_250, 152); - } - showOnScreenMsg(player, NpcStringId.GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_KEKROPUS_AT_LV_58, ExShowScreenMessage.TOP_CENTER, 6000); - htmltext = event; - } - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState st = getQuestState(player, false); - - if (st == null) - { - return htmltext; - } - - if (st.isStarted()) - { - if (st.isCond(1) && (npc.getId() == MOUEN)) - { - htmltext = "30196-01.html"; - } - else if (st.isCond(2)) - { - htmltext = npc.getId() == MOUEN ? "30196-04.html" : "33845-01.html"; - } - } - return htmltext; - } - - @Override - public String onSeeCreature(L2Npc npc, L2Character creature, boolean isSummon) - { - if (creature.isPlayer()) - { - final L2PcInstance player = creature.getActingPlayer(); - final QuestState st = getQuestState(player, false); - - if ((st != null) && st.isCond(2)) - { - showOnScreenMsg(player, NpcStringId.SEA_OF_SPORES_IS_A_GOOD_HUNTING_ZONE_FOR_LV_52_OR_ABOVE, ExShowScreenMessage.TOP_CENTER, 6000); - } - } - return super.onSeeCreature(npc, creature, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/popup.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/popup.html deleted file mode 100644 index 1a7a94bab1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10397_KekropusLetterASuspiciousBadge/popup.html +++ /dev/null @@ -1,6 +0,0 @@ -Kekropus' LetterKekropus' Letter:
-A Suspicious Badge was discovered in the Sea of Spores. Go to Captain Mouen in the Town of Oren for details.
-(A Scroll of Escape is enclosed. If you want to go now, use it to travel immediately.)
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-01.htm deleted file mode 100644 index 01a12d5a28..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Andy the Patrol:
-Several large battles raged between elves and human on the Sea of Spores. Back when they fought for the continent. It wasn't long all the magical energy birthed the spores, and well... you can tell from the name. The wizards at the Ivory Tower created a force field to prevent the spores from spreading further, as well as to keep the monsters inside. But lately the monsters have been acting very suspicious. I'm worried that if we don't do anything, they might take down the forcefield and plunge this whole area into chaos.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-02.htm deleted file mode 100644 index 7b7e769542..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Andy the Patrol:
-We've found several Unidentified Suspicious Badges on monsters. We're assuming they're what's making the monsters violent, but we're not entirely sure. Bacon is here to help determine that. He's the favorite disciple of Paterson, a famous scholar of Aden.
-The problem is: he needs Unidentified Suspicious Badges to for his research, but he's not the fighting type. Since they're only found on monsters, he's obviously not making much progress.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-03.html deleted file mode 100644 index 41d94af9f8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-03.html +++ /dev/null @@ -1,3 +0,0 @@ -Andy the Patrol:
-Go to the Sea of Spores and kill Giant Fungi, Rotting Trees, Corroded Skulls, Rotten Corpses, Corpse Spiders, and Explosive Spiders. Once you've found 20 Unidentified Suspicious Badges, deliver them to Paterson's Disciple, Bacon, inside the Sea of Spores. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-04.htm deleted file mode 100644 index 658228bcfd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-04.htm +++ /dev/null @@ -1,4 +0,0 @@ -Andy the Patrol:
-What are you doing here? This place is dangerous, you should go back.
-(Only characters level 52 or above may undertake this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-05.html deleted file mode 100644 index 4839752d35..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33845-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Andy the Patrol:
-Hey, this place is dangerous! You shouldn't be here.
-(Ertheia is excluded from this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33846-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33846-01.html deleted file mode 100644 index 4b757bab8b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33846-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-Andy the Patrol sent you, but he didn't tell you to bring Unidentified Suspicious Badges? Ugh. Andy.
-Well, you can still get Unidentified Suspicious Badges from Giant Fungi, Rotting Trees, Corroded Skulls, Rotten Corpses, Corpse Spiders, and Explosive Spiders. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33846-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33846-02.html deleted file mode 100644 index 2a27a1bb26..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/33846-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-Andy the Patrol sent you here? Wow! You've brought Unidentified Suspicious Badges! I just need to do a few teeny, tiny experiments to figure out what they are for.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/Q10398_ASuspiciousBadge.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/Q10398_ASuspiciousBadge.java deleted file mode 100644 index 2341ae996c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10398_ASuspiciousBadge/Q10398_ASuspiciousBadge.java +++ /dev/null @@ -1,157 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10398_ASuspiciousBadge; - -import com.l2jmobius.gameserver.enums.Race; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * A Suspicious Badge (10398) - * @author St3eT - */ -public final class Q10398_ASuspiciousBadge extends Quest -{ - // NPCs - private static final int ANDY = 33845; - private static final int BACON = 33846; - private static final int[] MONSTERS = - { - 20555, // Giant Fungus - 20558, // Rotting Tree - 23305, // Corroded Skeleton - 23306, // Rotten Corpse - 23307, // Corpse Spider - 23308, // Explosive Spider - }; - // Items - private static final int BADGE = 36666; // Unidentified Suspicious Badge - private static final int EAB = 948; // Scroll: Enchant Armor (B-grade) - // Misc - private static final int MIN_LEVEL = 52; - private static final int MAX_LEVEL = 58; - - public Q10398_ASuspiciousBadge() - { - super(10398); - addStartNpc(ANDY); - addTalkId(ANDY, BACON); - addKillId(MONSTERS); - registerQuestItems(BADGE); - addCondNotRace(Race.ERTHEIA, "33845-05.html"); - addCondLevel(MIN_LEVEL, MAX_LEVEL, "33845-04.htm"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState st = getQuestState(player, false); - if (st == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "33845-02.htm": - { - htmltext = event; - break; - } - case "33845-03.html": - { - st.startQuest(); - htmltext = event; - break; - } - case "33846-03.html": - { - if (st.isCond(2)) - { - st.exitQuest(false, true); - giveItems(player, EAB, 5); - giveStoryQuestReward(npc, player); - if (player.getLevel() >= MIN_LEVEL) - { - addExpAndSp(player, 6135787, 914); - } - } - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState st = getQuestState(player, true); - - switch (st.getState()) - { - case State.CREATED: - { - if (npc.getId() == ANDY) - { - htmltext = "33845-01.htm"; - } - break; - } - case State.STARTED: - { - if (st.isCond(1)) - { - htmltext = npc.getId() == ANDY ? "33845-03.html" : "33846-01.html"; - } - else if (st.isCond(2) && (npc.getId() == BACON)) - { - htmltext = "33846-02.html"; - } - break; - } - case State.COMPLETED: - { - if (npc.getId() == ANDY) - { - htmltext = getAlreadyCompletedMsg(player); - } - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState st = getQuestState(killer, false); - - if ((st != null) && st.isStarted() && st.isCond(1)) - { - if (giveItemRandomly(killer, npc, BADGE, 1, 50, 0.75, true)) - { - st.setCond(2); - } - } - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-01.htm deleted file mode 100644 index 90599fa30c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Paterson's Disciple Bacon:
-Oh. You're still here. Well, my experiments are complete.
-The Unidentified Suspicious Badges you kindly brought me are covered in writing from the Ancient Giants. I don't understand what it says, but they've definitely got some strange power. Could the power of the Giant's Alphabet be making monsters?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-02.htm deleted file mode 100644 index b8c16ec623..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Paterson's Disciple Bacon:
-You want to free me up to research the Giant's Alphabet. You know you do.
-That's why you're going to help out! The monsters here go out of their way to collect the Giant's Alphabet, like someone ordered them to do it. Instead of watching them get more violent, and leaving me with nothing to study, you can kill them and bring the Giant's Alphabet to me. Great, isn't it?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-03.htm deleted file mode 100644 index c0f4edcdaa..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-I knew I liked you.
-Go back to the Sea of Spores and defeat Corpse Looter Stakatos and Lesser Laikels. Then collect 20 letters of the Giant's Alphabet and come back to me. Thank you. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-04.html deleted file mode 100644 index 12f3d4bc5b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-04.html +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-Come on. I gave you one little task. One. Little. Task.
-Go back to the Sea of Spores and defeat Corpse Looter Stakatos and Lesser Laikels. Then collect 20 letters of the Giant's Alphabet and come back to me. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-05.html deleted file mode 100644 index 9d1cf39dd1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-05.html +++ /dev/null @@ -1,5 +0,0 @@ -Paterson's Disciple Bacon:
-And here you are! Victorious already.
-You're so good at this stuff.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-06.html deleted file mode 100644 index 8e5fcdc038..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-All right. We know that the Suspicious Badges are the Giants' Alphabet, and you stopped monsters from collecting them, so we're good for now. But it makes you wonder, doesn't it? What if someone is actually behind all this? I think I'll stay here to keep an eye on things, just in case.
-Thanks for all your help. If you ever get a chance, go see my teacher Paterson. He'll like you a lot, I'm sure. Haha! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-07.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-07.htm deleted file mode 100644 index 2c712af7f6..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-07.htm +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-Where have all the capable adventurers gone?
-(This quest may only be undertaken by characters of level 52 or above who have completed the quest "Suspicious Badge".) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-08.html deleted file mode 100644 index bab661c7cd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/33846-08.html +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-Even if I wanted to put someone to work, I can't seem to find anybody skilled enough. And it's even harder to find someone you can trust who also has the skills.
-(Ertheia classes cannot perform this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/Q10399_TheAlphabetOfTheGiants.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/Q10399_TheAlphabetOfTheGiants.java deleted file mode 100644 index 7f9598a6e9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10399_TheAlphabetOfTheGiants/Q10399_TheAlphabetOfTheGiants.java +++ /dev/null @@ -1,150 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10399_TheAlphabetOfTheGiants; - -import com.l2jmobius.gameserver.enums.Race; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -import quests.Q10398_ASuspiciousBadge.Q10398_ASuspiciousBadge; - -/** - * The Alphabet of the Giants (10399) - * @author St3eT - */ -public final class Q10399_TheAlphabetOfTheGiants extends Quest -{ - // NPCs - private static final int BACON = 33846; - private static final int[] MONSTERS = - { - 23309, // Corpse Looter Stakato - 23310, // Lesser Laikel - }; - // Items - private static final int TABLET = 36667; // Giant's Alphabet - private static final int EAB = 948; // Scroll: Enchant Armor (B-grade) - // Misc - private static final int MIN_LEVEL = 52; - private static final int MAX_LEVEL = 58; - - public Q10399_TheAlphabetOfTheGiants() - { - super(10399); - addStartNpc(BACON); - addTalkId(BACON); - addKillId(MONSTERS); - registerQuestItems(TABLET); - addCondNotRace(Race.ERTHEIA, "33846-08.html"); - addCondLevel(MIN_LEVEL, MAX_LEVEL, "33846-07.htm"); - addCondCompletedQuest(Q10398_ASuspiciousBadge.class.getSimpleName(), "33846-07.htm"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState st = getQuestState(player, false); - if (st == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "33846-02.htm": - { - htmltext = event; - break; - } - case "33846-03.htm": - { - st.startQuest(); - htmltext = event; - break; - } - case "33846-06.html": - { - if (st.isCond(2)) - { - st.exitQuest(false, true); - giveItems(player, EAB, 5); - giveStoryQuestReward(npc, player); - if (player.getLevel() >= MIN_LEVEL) - { - addExpAndSp(player, 8779765, 914); - } - htmltext = event; - } - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState st = getQuestState(player, true); - - switch (st.getState()) - { - case State.CREATED: - { - htmltext = "33846-01.htm"; - break; - } - case State.STARTED: - { - if (st.isCond(1)) - { - htmltext = "33846-04.html"; - } - else if (st.isCond(2)) - { - htmltext = "33846-05.html"; - } - break; - } - case State.COMPLETED: - { - htmltext = getAlreadyCompletedMsg(player); - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState st = getQuestState(killer, false); - - if ((st != null) && st.isStarted() && st.isCond(1)) - { - if (giveItemRandomly(killer, npc, TABLET, 1, 50, 1, true)) - { - st.setCond(2); - } - } - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-01.htm deleted file mode 100644 index 3491d9d6b4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-01.htm +++ /dev/null @@ -1,10 +0,0 @@ -Captain Mathias:
-Traveler, I am working on a secret mission for King Astair of Elmore. However, the majority of our soldiers are currently fighting against Shilen, the Goddess of Destruction. I have been authorized to recruit willing travelers as mercenaries.
-If you meet the following requirements, would you assist with my mission? If you agree, I'll tell you details about the mission.
-The requirements for a mercenary are...
-First, you must be fearless against all enemies.
-Second, you must be willing to fight on behalf of the King.
-Third, you must have the courage to face multiple enemies alone.
-Well? Will you help me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-02.htm deleted file mode 100644 index 13a10a1f79..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-02.htm +++ /dev/null @@ -1,7 +0,0 @@ -Captain Mathias:
-Good. You're far braver than most adventurers. Have you heard of the place called the Land of Chaos near the Orc Village?
-It used to be a peaceful plain, but on the orders of Devil Triol, one of the 4 most powerful devils, Corrupt Shaman Krogel started his movement. Krogel ended up settling in the Land of Chaos near the Orc Village.
-As soon as he settled there, the baron from Hell lured in nearby creatures and built a mountain of dead bodies. In the process, the refugees who were fleeing the Orc Village fell victim to him as well.
-As if the numerous dead bodies of such creatures and nearby monsters wasn't bad enough, Chimera monsters sewn together from dead bodies have started appearing in the Land of Chaos.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-03.htm deleted file mode 100644 index 786e2185ab..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-03.htm +++ /dev/null @@ -1,8 +0,0 @@ -Captain Mathias:
-That place... has already turned into a place of immortality...
-Kakai, the Lord of Flame, asked King Astair of Elmore for reinforcements and King Astair ordered me to get rid of monsters in the Land of Chaos.
-I've already fought through the area with 5 to 6 soldiers. It's a cruel, surreal land to say the least.
-The Land of Chaos morphed into a hellish place where Chimera monsters are born and have settled. We have to get rid of them, but there were too many for us to stop. If they spread to nearby areas, this will only get worse.
-Have I scared you off? Or will you help us?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-04.htm deleted file mode 100644 index 090c7ebcd8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-04.htm +++ /dev/null @@ -1,6 +0,0 @@ -Captain Mathias:
-Your courage is commendable. I'll be counting on you.
-I've already dispatched my own soldiers, Falk and Parajan, to Gainak and the Land of Chaos respectively.
-Go meet Flame Patrol Vice Captain Tuska in Gainak of the Schuttgart territory. He will tell you how to get to the Land of Chaos and what to do in more detail.
-Keep in mind that you can go to Gainak through the Gatekeeper in the Town of Rune. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-05.html deleted file mode 100644 index 6b816adc3c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Captain Mathias:
-You haven't left yet? Go to Gainak of the Schuttgart territory and meet Flame Patrol Vice Captain Tuska. He'll be waiting for you.
-Keep in mind that you can go to Gainak through the Gatekeeper in the Town of Rune. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-06.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-06.htm deleted file mode 100644 index 338697970a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/31340-06.htm +++ /dev/null @@ -1,4 +0,0 @@ -Captain Mathias:
-Traveler, be careful in these lands. I am working on a secret mission for King Astair of Elmore. While we are desperately in need of assistance, I will not send the unready to their deaths. Should you hone your skills, you know where to find me.
-(Only characters level 99 or above may undertake this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/33839-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/33839-01.html deleted file mode 100644 index 143895ac11..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/33839-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Flame Patrol Vice Captain Tuska:
-What brings the likes of you to such a dangerous place? We keep our wits about us in the Flame Patrol. If you stick around, you're liable to be hurt. Go back, now!
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/33839-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/33839-02.html deleted file mode 100644 index d86264e976..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/33839-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Flame Patrol Vice Captain Tuska:
-Mathias? Ah, yes. Sorry about the mixup.
-I'm impressed by your moxie. Coming here as a mercenary to help the Land of Chaos. But this place is more terrible than you think. Brace yourself.
-Anyway, thanks for coming all the way here. When we speak again, I will tell you how to get to the Land of Chaos. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/Q10442_TheAnnihilatedPlains1.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/Q10442_TheAnnihilatedPlains1.java deleted file mode 100644 index 6761c9758c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10442_TheAnnihilatedPlains1/Q10442_TheAnnihilatedPlains1.java +++ /dev/null @@ -1,121 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10442_TheAnnihilatedPlains1; - -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -/** - * The Annihilated Plains - 1 (10442) - * @author St3eT - */ -public final class Q10442_TheAnnihilatedPlains1 extends Quest -{ - // NPCs - private static final int MATHIAS = 31340; - private static final int TUSKA = 33839; - // Misc - private static final int MIN_LEVEL = 99; - - public Q10442_TheAnnihilatedPlains1() - { - super(10442); - addStartNpc(MATHIAS); - addTalkId(MATHIAS, TUSKA); - addCondMinLevel(MIN_LEVEL, "31340-06.htm"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState st = getQuestState(player, false); - if (st == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "31340-02.htm": - case "31340-03.htm": - { - htmltext = event; - break; - } - case "31340-04.htm": - { - st.startQuest(); - htmltext = event; - break; - } - case "33839-02.html": - { - if (st.isCond(1)) - { - if (player.getLevel() >= MIN_LEVEL) - { - addExpAndSp(player, 15_436_575, 3_704); - } - st.exitQuest(false, true); - htmltext = event; - } - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState st = getQuestState(player, true); - - switch (st.getState()) - { - case State.CREATED: - { - if (npc.getId() == MATHIAS) - { - htmltext = "31340-01.htm"; - } - break; - } - case State.STARTED: - { - if (st.isCond(1)) - { - htmltext = npc.getId() == MATHIAS ? "31340-05.html" : "33839-01.html"; - } - break; - } - case State.COMPLETED: - { - if (npc.getId() == MATHIAS) - { - htmltext = getAlreadyCompletedMsg(player); - } - break; - } - } - return htmltext; - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33837-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33837-01.html deleted file mode 100644 index e1cddbf66a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33837-01.html +++ /dev/null @@ -1,3 +0,0 @@ -Refugee Corpse:
-After examining the body, you extracted the neackles you were looking for... - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33837.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33837.html deleted file mode 100644 index 33ed95e08f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33837.html +++ /dev/null @@ -1,4 +0,0 @@ -Refugee Corpse:
-The corpse reeks of decay.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-00.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-00.htm deleted file mode 100644 index 4b58e37236..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-00.htm +++ /dev/null @@ -1,4 +0,0 @@ -Flame Patrol Vice Captain Tuska:
-This is a dangerous place! Do you want to get yourself killed?! Go away now! I will not be held responsible for a weakling like you.
-(This quest may only be undertaken by characters of level 99 or higher who have completed the "Annihilated Plains - 1" quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-01.htm deleted file mode 100644 index 4537cc899c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-01.htm +++ /dev/null @@ -1,7 +0,0 @@ -Flame Patrol Vice Captain Tuska:
-Hey! Let me tell you how to get to the Land of Chaos. You have to meet someone there.
-But are you sure that you really want to be a mercenary...? You're braver than you look.
-Once you start this mission, you cannot abandon it. No matter how horrible the monsters look.
-Are you really ready?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-02.htm deleted file mode 100644 index 1c928f6f37..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-02.htm +++ /dev/null @@ -1,6 +0,0 @@ -Flame Patrol Vice Captain Tuska:
-Hahaha! Mathias has an eye for fresh meat, I mean... Uh... Talent! You are so brave! Let me now tell you how to get to the Land of Chaos and whom you have to meet.
-But there is a mission you have to finish on your way there.
-Feel up to it?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-03.htm deleted file mode 100644 index 4566bca870..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-03.htm +++ /dev/null @@ -1,5 +0,0 @@ -Flame Patrol Vice Captain Tuska:
-When you get to the Land of Chaos, you will see Refugee Corpses. Find a Refugee's Necklace and take it to Rune Backup Trooper Falk.
-I hear he and his people are investigating the corpses near the Land of Chaos. If you bring the necklace to him, it will help them.
-Ah! You can go to the Land of Chaos through the Sayune next to me! - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-04.html deleted file mode 100644 index 8a21cb695c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33839-04.html +++ /dev/null @@ -1,5 +0,0 @@ -Flame Patrol Vice Captain Tuska:
-Hey, you! You haven't left yet? Are you too scared to go to the Land of Chaos?
-When you get to the Land of Chaos, you will see Refugee Corpses. Find a Refugee's Necklace and take it to Rune Backup Trooper Falk.
-Ah! You can go to the Land of Chaos through the Sayune next to me. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33843-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33843-01.html deleted file mode 100644 index 628d3091b0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33843-01.html +++ /dev/null @@ -1,5 +0,0 @@ -Rune Backup Trooper Falk:
-Who's there? Answer me! I have a bow!
-Oh, leave me alone! My back... I think I'm dying from the pain...
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33843-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33843-02.htm deleted file mode 100644 index 7735bae88d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/33843-02.htm +++ /dev/null @@ -1,7 +0,0 @@ -Rune Backup Trooper Falk:
-Ah! The mercenary, right.
-I thought you were another monster. What's that you have there, a Refugee's Necklace? Are you sure you're not a monster?
-Look, here's some money. Let's just forget this ever happened.
-I think Parajan over there is looking for someone. If you're set on dying in the Land of Chaos, talk to him.
-Just... just leave me alone now. I need to rest my back.
- \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/Q10443_TheAnnihilatedPlains2.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/Q10443_TheAnnihilatedPlains2.java deleted file mode 100644 index e089032c0d..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10443_TheAnnihilatedPlains2/Q10443_TheAnnihilatedPlains2.java +++ /dev/null @@ -1,159 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10443_TheAnnihilatedPlains2; - -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -import quests.Q10442_TheAnnihilatedPlains1.Q10442_TheAnnihilatedPlains1; - -/** - * The Annihilated Plains - 2 (10443) - * @URL https://l2wiki.com/The_Annihilated_Plains_-_2 - * @author Gigi - */ -public final class Q10443_TheAnnihilatedPlains2 extends Quest -{ - // NPCs - private static final int TUSKA = 33839; - private static final int REFUGEE_CORPSE = 33837; - private static final int FALK = 33843; - // Item - private static final int REFUGEES_NEACKLES = 36678; - // Misc - private static final int MIN_LEVEL = 99; - - public Q10443_TheAnnihilatedPlains2() - { - super(10443); - addStartNpc(TUSKA); - addTalkId(TUSKA, REFUGEE_CORPSE, FALK); - addFirstTalkId(REFUGEE_CORPSE); - registerQuestItems(REFUGEES_NEACKLES); - addCondMinLevel(MIN_LEVEL, "33839-00.htm"); - addCondCompletedQuest(Q10442_TheAnnihilatedPlains1.class.getSimpleName(), "33839-00.htm"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "33839-02.htm": - { - htmltext = event; - break; - } - case "33839-03.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "33843-02.htm": - { - if (qs.isCond(2)) - { - addExpAndSp(player, 308731500, 74095); - giveItems(player, 30357, 50); - giveItems(player, 30358, 50); - giveItems(player, 34609, 10000); - giveItems(player, 34616, 10000); - giveItems(player, 37018, 1); - qs.exitQuest(false, true); - htmltext = event; - } - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - switch (qs.getState()) - { - case State.CREATED: - { - if (npc.getId() == TUSKA) - { - htmltext = "33839-01.htm"; - } - break; - } - case State.STARTED: - { - switch (npc.getId()) - { - case TUSKA: - { - if (qs.isCond(1)) - { - htmltext = "33839-04.html"; - } - break; - } - case REFUGEE_CORPSE: - { - if (qs.isStarted() && qs.isCond(1)) - { - giveItems(player, REFUGEES_NEACKLES, 1); - qs.setCond(2, true); - htmltext = "33837-01.html"; - } - break; - } - case FALK: - { - if (qs.isStarted() && qs.isCond(2)) - { - htmltext = "33843-01.html"; - } - break; - } - } - break; - } - case State.COMPLETED: - { - htmltext = getAlreadyCompletedMsg(player); - break; - } - } - return htmltext; - } - - @Override - public String onFirstTalk(L2Npc npc, L2PcInstance player) - { - return "33837.html"; - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33838-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33838-01.html deleted file mode 100644 index 33d82c524f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33838-01.html +++ /dev/null @@ -1,4 +0,0 @@ -nvestigator Quincy:
-Too many refugees lost their lives here, and I am compelled to ease their sorrow. I am sorry but if you didn't come for me, please leave me to my work.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33838-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33838-02.html deleted file mode 100644 index 6137b6cfe2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33838-02.html +++ /dev/null @@ -1,5 +0,0 @@ -Investigator Quincy:
-Ah, you're Parajan's mercenary. I didn't recognize you.
-You've brought all the Chunks of a Corpse? Not many could find success in their work while facing the evil Baron Krogel. Please take this. It's a token of our gratitude for your help.
-Now, I should analyze the Chunks of a Corpse with magic. I'll report the results directly to Parajan. Thank you. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-00.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-00.htm deleted file mode 100644 index e4b6533e16..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-00.htm +++ /dev/null @@ -1,4 +0,0 @@ -Rune Backup Trooper Parajan:
-A bloodbath. A nightmare. This used to be a peaceful plain, but the origin of these monsters is almost beyond imagining.
-(This quest is for characters of level 99 and higher who have completed the "Annihilated Plains - 2" quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-01.htm deleted file mode 100644 index b64d88f2f0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Rune Backup Trooper Parajan:
-I'm glad you've decided to stay a while. The Land of Chaos is home to many terrible monsters, different from those we have seen elsewhere.
-I don't know where they come from. But I noticed something odd while on patrol.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-02.htm deleted file mode 100644 index 448e84e44a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-02.htm +++ /dev/null @@ -1,7 +0,0 @@ -Rune Backup Trooper Parajan:
-Do you see Quincy over there? Her knowledge of magic is invaluable when investigating this area.
-The Refugee's Necklace you brought confirmed our suspicions. Didn't you say that a monster sprang out when you started rummaging through corpses?
-The uninformed would say the monsters are born out of heaps of corpses, no matter what species they came from.
-But the truth is far worse.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-03.htm deleted file mode 100644 index 4fd3ea428b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-03.htm +++ /dev/null @@ -1,6 +0,0 @@ -Rune Backup Trooper Parajan:
-There is a demon named Triol, one of four trying to resurrect Shilen. Using his own blood, he's brought another foul creature into our world.
-This new demon is called Krogel. An otherworldly baron of arrogance, he is a corrupt shaman with the power to decompose and fuse corpses together into new life.
-As if dying out here were not bad enough. Can you help us stop him?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-04.htm deleted file mode 100644 index 03e6c5d7d0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-04.htm +++ /dev/null @@ -1,6 +0,0 @@ -Rune Backup Trooper Parajan:
-You're a livesaver. All right, go find Krogel in the Land of Chaos, and kill him.
-You can't completely kill off a demon of his ranking, but it will certainly cut the numbers of monsters created from corpses.
-As proof of his defeat, bring me 2 Chunks of a Corpse.
-Give the chunks to Investigator Quincy for analysis. She might find a way to eliminate Krogel for good. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-05.html deleted file mode 100644 index e85dc97f5b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-05.html +++ /dev/null @@ -1,4 +0,0 @@ -Rune Backup Trooper Parajan:
-As soon as you see Krogel in the Land of Chaos, kill him. Take 2 Chunks of a Corpse before his body fades, and deliver them to Investigator Quincy.
-She will find a way to get rid of Krogel for us. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-06.html deleted file mode 100644 index d0f23f2834..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/33842-06.html +++ /dev/null @@ -1,7 +0,0 @@ -Rune Backup Trooper Parajan:
-Ah! You're the mercenary? Welcome!
-What...is this necklace? You're saying a monster really came out of a refugee's corpse? Can't be...!
-Pardon me. Here, a little something for your troubles. Thank you.
-Seriously, that Falk... dumping his work onto other people! Keep this up and I will have to tell the captain.
-Anyway, could you come by later if you get the chance? There is more work to be done around here, and I'll tell you about it if you're willing.
- \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/Q10444_TheOriginOfMonsters.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/Q10444_TheOriginOfMonsters.java deleted file mode 100644 index 5e90857618..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10444_TheOriginOfMonsters/Q10444_TheOriginOfMonsters.java +++ /dev/null @@ -1,170 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10444_TheOriginOfMonsters; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; -import com.l2jmobius.gameserver.util.Util; - -import quests.Q10443_TheAnnihilatedPlains2.Q10443_TheAnnihilatedPlains2; - -/** - * The Origin of Monsters (10444) - * @URL https://l2wiki.com/The_Origin_of_Monsters - * @author Gigi - */ -public final class Q10444_TheOriginOfMonsters extends Quest -{ - // NPCs - private static final int PARAJAN = 33842; - private static final int QUINCY = 33838; - private static final int KROGEL = 25927; - // Items - private static final int BLOODY_ETERNEL_ENHANCEMENT_STONE = 35569; - private static final int ELMORES_SUPPORT_BOX = 37020; - private static final int CHUNK_OF_A_CROPSE = 36679; - // Misc - private static final int MIN_LEVEL = 99; - - public Q10444_TheOriginOfMonsters() - { - super(10444); - addStartNpc(PARAJAN); - addTalkId(PARAJAN, QUINCY); - addKillId(KROGEL); - registerQuestItems(CHUNK_OF_A_CROPSE); - addCondMinLevel(MIN_LEVEL, "33842-00.htm"); - addCondCompletedQuest(Q10443_TheAnnihilatedPlains2.class.getSimpleName(), "33842-00.htm"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "33842-02.htm": - case "33842-03.htm": - { - htmltext = event; - break; - } - case "33842-04.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "33838-02.html": - { - if (qs.isCond(2)) - { - qs.exitQuest(false, true); - giveItems(player, BLOODY_ETERNEL_ENHANCEMENT_STONE, 1); - giveItems(player, ELMORES_SUPPORT_BOX, 1); - htmltext = event; - } - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - switch (qs.getState()) - { - case State.CREATED: - { - if (npc.getId() == PARAJAN) - { - htmltext = "33842-01.htm"; - } - break; - } - case State.STARTED: - { - switch (npc.getId()) - { - case PARAJAN: - { - if (qs.isCond(1)) - { - htmltext = "33842-05.html"; - } - else if (qs.isCond(2)) - { - htmltext = "33842-06.html"; - } - break; - } - case QUINCY: - { - if (qs.isStarted() && qs.isCond(2)) - { - htmltext = "33838-01.html"; - } - break; - } - } - break; - } - case State.COMPLETED: - { - htmltext = getAlreadyCompletedMsg(player); - break; - } - } - return htmltext; - } - - @Override - public void actionForEachPlayer(L2PcInstance player, L2Npc npc, boolean isSummon) - { - final QuestState qs = getQuestState(player, false); - if ((qs != null) && qs.isCond(1) && Util.checkIfInRange(1500, npc, player, false)) - { - giveItems(player, CHUNK_OF_A_CROPSE, 1); - playSound(player, QuestSound.ITEMSOUND_QUEST_ITEMGET); - if (getQuestItemsCount(player, CHUNK_OF_A_CROPSE) >= 2) - { - qs.setCond(2, true); - } - } - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - executeForEachPlayer(killer, npc, isSummon, true, false); - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-01.htm deleted file mode 100644 index 5fe16e8cb4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Investigator Harry:
-There are some unique plants on the Plains of the Lizardmen. They're very rare and sought after because of what happens when you eat them.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-02.htm deleted file mode 100644 index 2249d056bc..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Investigator Harry:
-Ah, well... I don't actually know. But I'm determined to find out!
-It's just, y'know, people talk.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-03.htm deleted file mode 100644 index baa5ce8c7a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-03.htm +++ /dev/null @@ -1,3 +0,0 @@ -Investigator Sally:
-Oh, thank you so much. You are so awesome! Let's find out the effects of a1 Fantasy Mushroom's Spore Sac, 1 Sticky Mushroom's Spore Sac, and 1 Vitality Leaf Pouch from a Fantasy Mushroom, a Sticky Mushroom, and a Vitality Plant in the Plains of the Lizardmen. And don't eat them! At least till we've done some studying, yeah? - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-04.html deleted file mode 100644 index d3c27128d7..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-04.html +++ /dev/null @@ -1,3 +0,0 @@ -Investigator Sally:
-You still haven't found everything? That's OK... if you have no curiosity!
C'mon. Just a couple of thinigs from the Plains of the Lizardmen. I need 1 Fantasy Mushroom's Spore Sac, 1 Sticky Mushroom's Spore Sac, and 1 Vitality Leaf Pouch. You can get them from a Fantasy Mushroom, a Sticky Mushroom, and a Vitality Plant respectively. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-05.html deleted file mode 100644 index a4a22407a4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-05.html +++ /dev/null @@ -1,3 +0,0 @@ -Investigator Sally:
-This quest is complete - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-06.html deleted file mode 100644 index f87deebd40..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-06.html +++ /dev/null @@ -1,8 +0,0 @@ -Investigator Harry:
-Well, I finished the analysis, and the results are good. You'll live! No need for an Antidote or anything.
-I eat various medicinal plants all the time. For research purposes only, of course. Want me to tell you about what these do?
- - - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-07.html deleted file mode 100644 index f2f56dac30..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-07.html +++ /dev/null @@ -1,3 +0,0 @@ -Investigator Sally:
-Thanks for helping me out. You've got a healthy sense of curiosity. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-08.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-08.htm deleted file mode 100644 index 4b496dd996..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-08.htm +++ /dev/null @@ -1,4 +0,0 @@ -Investigator Sally:
-The Plains are so full of so many interesting plants, some you can't find anywhere else! But I couldn't send you out there. You're just not strong enough yet.
-(Only characters level 81 or above are allowed to take this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-09.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-09.html deleted file mode 100644 index 417d77378f..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-09.html +++ /dev/null @@ -1,7 +0,0 @@ -Investigator Harry:
-Sticky Mushrooms recover your HP by 90%! Plus, it has no side effects. Awesome, right?
-I love talking about plants! Want to know more?
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-10.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-10.html deleted file mode 100644 index 3038edf937..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-10.html +++ /dev/null @@ -1,7 +0,0 @@ -Investigator Harry:
-Fantasy Mushrooms cause visions and euphoria. Any aggressive monsters will chill out when its spores are released. Temporarily, of course.
-I love talking about plants! Want to know more?
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-11.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-11.html deleted file mode 100644 index 54907a25df..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/32743-11.html +++ /dev/null @@ -1,7 +0,0 @@ -Investigator Harry:
-Vitality Plants recover your hit points by 70%. So far, I haven't noticed any adverse side-effects.
-I love talking about plants! Want to know more?
- - - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/Complete.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/Complete.html deleted file mode 100644 index a4a22407a4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/Complete.html +++ /dev/null @@ -1,3 +0,0 @@ -Investigator Sally:
-This quest is complete - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/Q10452_IsItEdible.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/Q10452_IsItEdible.java deleted file mode 100644 index f60359e35c..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10452_IsItEdible/Q10452_IsItEdible.java +++ /dev/null @@ -1,169 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10452_IsItEdible; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; - -/** - * Is it Edible? (10452) - * @URL https://l2wiki.com/Is_it_Edible%3F - * @author Gigi - */ -public final class Q10452_IsItEdible extends Quest -{ - // NPCs - private static final int SALLY = 32743; - // Monster's - private static final int FANTASY_MUSHROM = 18864; - private static final int STICKY_MUSHROMS = 18865; - private static final int VITALIITY_PLANT = 18868; - // items - private static final int FANTASY_MUSHROMS_SPORE = 36688; - private static final int STICKY_MUSHROMS_SPORE = 36689; - private static final int VITALIITY_LEAF_POUCH = 36690; - // Misc - private static final int MIN_LEVEL = 81; - - public Q10452_IsItEdible() - { - super(10452); - addStartNpc(SALLY); - addTalkId(SALLY); - addKillId(FANTASY_MUSHROM, STICKY_MUSHROMS, VITALIITY_PLANT); - registerQuestItems(FANTASY_MUSHROMS_SPORE, STICKY_MUSHROMS_SPORE, VITALIITY_LEAF_POUCH); - addCondMinLevel(MIN_LEVEL, "32743-08.htm"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - String htmltext = null; - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return htmltext; - } - switch (event) - { - case "32743-02.htm": - case "32743-09.html": - case "32743-10.html": - case "32743-11.html": - { - htmltext = event; - break; - } - case "32743-03.htm": - { - qs.startQuest(); - htmltext = event; - break; - } - case "32743-07.html": - { - giveAdena(player, 299940, true); - addExpAndSp(player, 14120400, 3388); - qs.exitQuest(false, true); - htmltext = event; - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - if (qs.isCreated()) - { - htmltext = "32743-01.htm"; - } - else if (qs.isCond(1)) - { - htmltext = "32743-04.html"; - } - else if (qs.isCond(2)) - { - takeItems(player, FANTASY_MUSHROMS_SPORE, -1); - takeItems(player, STICKY_MUSHROMS_SPORE, -1); - takeItems(player, VITALIITY_LEAF_POUCH, -1); - htmltext = "32743-05.html"; - qs.setCond(3); - } - else if (qs.isCond(3)) - { - htmltext = "32743-06.html"; - } - else - { - htmltext = "Complete.html"; - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState qs = getQuestState(killer, false); - if (qs == null) - { - return super.onKill(npc, killer, isSummon); - } - switch (npc.getId()) - { - case FANTASY_MUSHROM: - { - if (qs.isCond(1) && !hasQuestItems(killer, FANTASY_MUSHROMS_SPORE)) - { - giveItems(killer, FANTASY_MUSHROMS_SPORE, 1); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - break; - } - } - case STICKY_MUSHROMS: - { - if (qs.isCond(1) && !hasQuestItems(killer, STICKY_MUSHROMS_SPORE)) - { - giveItems(killer, STICKY_MUSHROMS_SPORE, 1); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - break; - } - } - case VITALIITY_PLANT: - { - if (qs.isCond(1) && !hasQuestItems(killer, VITALIITY_LEAF_POUCH)) - { - giveItems(killer, VITALIITY_LEAF_POUCH, 1); - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - break; - } - } - } - if ((getQuestItemsCount(killer, FANTASY_MUSHROMS_SPORE) >= 1) && (getQuestItemsCount(killer, STICKY_MUSHROMS_SPORE) >= 1) && (getQuestItemsCount(killer, VITALIITY_LEAF_POUCH) >= 1)) - { - qs.setCond(2, true); - } - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10707_FlamesOfSorrow/Q10707_FlamesOfSorrow.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10707_FlamesOfSorrow/Q10707_FlamesOfSorrow.java index 459d185ce6..d306c76df3 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10707_FlamesOfSorrow/Q10707_FlamesOfSorrow.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10707_FlamesOfSorrow/Q10707_FlamesOfSorrow.java @@ -25,8 +25,6 @@ import com.l2jmobius.gameserver.model.quest.QuestState; import com.l2jmobius.gameserver.model.quest.State; import com.l2jmobius.gameserver.network.NpcStringId; -import quests.Q10395_NotATraitor.Q10395_NotATraitor; - /** * Flames of Sorrow (10707) * @author St3eT @@ -59,7 +57,8 @@ public final class Q10707_FlamesOfSorrow extends Quest addKillId(VENGEFUL_SPIRIT); registerQuestItems(MARK); addCondLevel(MIN_LEVEL, MAX_LEVEL, "33863-07.htm"); - addCondCompletedQuest(Q10395_NotATraitor.class.getSimpleName(), "33863-07.htm"); + // TODO: Pre-Quest removed with Etina's Fate. + // addCondCompletedQuest(Q10395_NotATraitor.class.getSimpleName(), "33863-07.htm"); } @Override diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-01.htm deleted file mode 100644 index 9212350617..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-01.htm +++ /dev/null @@ -1,5 +0,0 @@ -Paterson's Disciple Bacon:
-Adventurer, thank you for all your help last time. Of course, I knew you were in a hurry to find all your clues.
-However, there's an extremely urgent matter and I was hoping you'd be able to help me again.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-02.htm deleted file mode 100644 index 467bdc8f44..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-02.htm +++ /dev/null @@ -1,6 +0,0 @@ -Paterson's Disciple Bacon:
-I've told you this before, so you're aware that the population of monsters in the Sea of Spores has exploded. The monsters are trying to destroy the barrier containing the area.
-Dangerous things will happen if the barrier collapses.
-Won't you help me once more?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-03.htm deleted file mode 100644 index a140f616a0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-I'll give you the Barrier Enforcer Key, so go to the Barrier Enforcer by the Sea of Spores and activate it.
-Monsters may come after you, so be careful. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-04.html deleted file mode 100644 index c5c347d6b4..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-04.html +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-Please go to the Barrier Enforcer by the Sea of Spores and activate it with the Barrier Enforcer Key I had given you.
-Monsters may come after you, so be careful. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-05.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-05.html deleted file mode 100644 index 644b10d3fa..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-05.html +++ /dev/null @@ -1,5 +0,0 @@ -Paterson's Disciple Bacon:
-I heard the Barrier Enforcer being activated from far away. Thanks to you, this weight's been lifted off my chest.
-Now with the Enforcer turned on, we can gradually begin to restore and repair the barrier. Did the monsters try to attack?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-06.html deleted file mode 100644 index 6895f24e09..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-06.html +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-Great! I must go report to the king that the Barrier Enforcer has been successfully activated.

-I hope we meet again. Farewell. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-07.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-07.htm deleted file mode 100644 index 2e02f36d8e..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33846-07.htm +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-Now's not the time for you to know. The truth is that I can't tell you until your abilities are up to par.
-(This quest can only be performed by characters who have completed "The Alphabet of the Giants" and are between Lv. 52 and Lv. 57.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33960-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33960-01.html deleted file mode 100644 index 86c04d4103..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/33960-01.html +++ /dev/null @@ -1,4 +0,0 @@ -Barrier Enforcer Key:
-Nothing happens.
-(You must be between Level 52 and 57 and in the midst of "Strengthen the Barrier".) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/Q10708_StrengthenTheBarrier.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/Q10708_StrengthenTheBarrier.java deleted file mode 100644 index ed50632e35..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10708_StrengthenTheBarrier/Q10708_StrengthenTheBarrier.java +++ /dev/null @@ -1,159 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10708_StrengthenTheBarrier; - -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -import quests.Q10399_TheAlphabetOfTheGiants.Q10399_TheAlphabetOfTheGiants; - -/** - * Strengthen the Barrier (10708) - * @author St3eT - */ -public final class Q10708_StrengthenTheBarrier extends Quest -{ - // NPCs - private static final int BACON = 33846; - private static final int BARRIER_ENFORCER = 33960; - private static final int LAIKEL = 27519; - private static final int SEALBREAKER = 27523; - // Items - private static final int KEY = 39509; // Barrier Enforcer Key - private static final int EWB = 947; // Scroll: Enchant Armor (B-grade) - // Misc - private static final int MIN_LEVEL = 52; - private static final int MAX_LEVEL = 57; - - public Q10708_StrengthenTheBarrier() - { - super(10708); - addStartNpc(BACON); - addTalkId(BACON, BARRIER_ENFORCER); - registerQuestItems(KEY); - addCondLevel(MIN_LEVEL, MAX_LEVEL, "33846-07.htm"); - addCondCompletedQuest(Q10399_TheAlphabetOfTheGiants.class.getSimpleName(), "33846-07.htm"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState st = getQuestState(player, false); - - if (event.equals("activateKey")) - { - if ((st != null) && st.isCond(1)) - { - addAttackPlayerDesire(addSpawn(LAIKEL, npc, true, 120000), player); - addAttackPlayerDesire(addSpawn(LAIKEL, npc, true, 120000), player); - addAttackPlayerDesire(addSpawn(LAIKEL, npc, true, 120000), player); - addAttackPlayerDesire(addSpawn(SEALBREAKER, npc, true, 120000), player); - addAttackPlayerDesire(addSpawn(SEALBREAKER, npc, true, 120000), player); - takeItems(player, KEY, -1); - st.setCond(2, true); - } - else - { - return "33960-01.html"; - } - } - - if (st == null) - { - return null; - } - - String htmltext = null; - switch (event) - { - case "33846-02.htm": - { - htmltext = event; - break; - } - case "33846-03.htm": - { - st.startQuest(); - giveItems(player, KEY, 1); - htmltext = event; - break; - } - case "33846-06.html": - { - if (st.isCond(2)) - { - st.exitQuest(false, true); - giveItems(player, EWB, 1); - giveStoryQuestReward(npc, player); - if (player.getLevel() >= MIN_LEVEL) - { - addExpAndSp(player, 20881876, 152); - } - htmltext = event; - } - break; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - String htmltext = getNoQuestMsg(player); - final QuestState st = getQuestState(player, true); - - switch (st.getState()) - { - case State.CREATED: - { - if (npc.getId() == BACON) - { - htmltext = "33846-01.htm"; - } - break; - } - case State.STARTED: - { - if (npc.getId() == BACON) - { - if (st.isCond(1)) - { - htmltext = "33846-04.html"; - } - else if (st.isCond(2)) - { - htmltext = "33846-05.html"; - } - } - break; - } - case State.COMPLETED: - { - if (npc.getId() == BACON) - { - htmltext = getAlreadyCompletedMsg(player); - } - break; - } - } - return htmltext; - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/30191-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/30191-01.html deleted file mode 100644 index cb27dd30bd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/30191-01.html +++ /dev/null @@ -1,5 +0,0 @@ -High Priest Hollint:
-May the light of Goddess Einhasad be with Ertheia.
- I heard about what had happened from the Ertheia Delegation. You seem to be adjusting to the Material Realm quite well even after what had happened. By the way, what brings you here?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/30191-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/30191-02.html deleted file mode 100644 index acd3201a36..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/30191-02.html +++ /dev/null @@ -1,4 +0,0 @@ -High Priest Hollint:
-Ah, I had requested some help, and now here you are. There's a problem with the barrier at the Sea of Spores. I'm assuming that the problems are related to the Dimensional Rift, because the problem coincided with the appearance of the rift. Will you please help us?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/30191-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/30191-03.html deleted file mode 100644 index 1f8a84aaa2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/30191-03.html +++ /dev/null @@ -1,3 +0,0 @@ -High Priest Hollint:
-Thank you for helping us. The Sea of Spores is protected by Andy the Patrol. The problem has been steadily worsening, so Andy will welcome the help. Go to Andy the Patrol at the Sea of Spores. He will give you the details. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/30191-04.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/30191-04.html deleted file mode 100644 index 434e4fc4df..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/30191-04.html +++ /dev/null @@ -1,3 +0,0 @@ -High Priest Hollint:
-The problem lies in the Sea of Spores. The problem has been steadily worsening since the Dimensional Rift appeared, meaning there has to be a connection. Go ask Andy the Patrol at the Sea of Spores and he will tell you everything. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/33845-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/33845-01.html deleted file mode 100644 index db36cca342..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/33845-01.html +++ /dev/null @@ -1,5 +0,0 @@ -Andy the Patrol:
-It's too dangerous here. Not just anyone can come in.
-Wait, are you... You're the Ertheia everyone is talking about, aren't you? Forgive me... But what are you doing here? It's dangerous here.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/33845-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/33845-02.html deleted file mode 100644 index 3cec996612..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/33845-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Andy the Patrol:
-Really? It was too hard for me to manage alone. I had requested High Priest Hollint for help. But I didn't think a Wind Person would come. Are you sure about this?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/33845-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/33845-03.html deleted file mode 100644 index 312aac9530..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/33845-03.html +++ /dev/null @@ -1,4 +0,0 @@ -Andy the Patrol:
-Then I will leave it to you. I heard that the people of Wind are very talented. Please take care of the problem with the force field. Thank you.
-(You can obtain the Letters from the Queen at Level 58.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/Q10779_LettersFromTheQueenSeaOfSpores.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/Q10779_LettersFromTheQueenSeaOfSpores.java deleted file mode 100644 index 9964726bf5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/Q10779_LettersFromTheQueenSeaOfSpores.java +++ /dev/null @@ -1,128 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10779_LettersFromTheQueenSeaOfSpores; - -import com.l2jmobius.gameserver.model.Location; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.network.NpcStringId; -import com.l2jmobius.gameserver.network.serverpackets.ExShowScreenMessage; - -import quests.LetterQuest; - -/** - * Letters from the Queen: Sea of Spores (10779) - * @author malyelfik - */ -public final class Q10779_LettersFromTheQueenSeaOfSpores extends LetterQuest -{ - // NPCs - private static final int HOLINT = 30191; - private static final int ANDY = 33845; - // Items - private static final int SOE_OREN = 39574; - private static final int SOE_SEA_OF_SPORES = 39575; - private static final int ENCHANT_WEAPON_B = 947; - // Location - private static final Location TELEPORT_LOC = new Location(83633, 53064, -1456); - // Misc - private static final int MIN_LEVEL = 52; - private static final int MAX_LEVEL = 57; - - public Q10779_LettersFromTheQueenSeaOfSpores() - { - super(10779); - addTalkId(HOLINT, ANDY); - - setIsErtheiaQuest(true); - setLevel(MIN_LEVEL, MAX_LEVEL); - setStartLocation(SOE_OREN, TELEPORT_LOC); - setStartQuestSound("Npcdialog1.serenia_quest_5"); - registerQuestItems(SOE_OREN, SOE_SEA_OF_SPORES); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - - String htmltext = event; - switch (event) - { - case "30191-02.html": - case "33845-02.html": - { - break; - } - case "30191-03.html": - { - if (qs.isCond(1)) - { - qs.setCond(2, true); - giveItems(player, SOE_SEA_OF_SPORES, 1); - } - break; - } - case "33845-03.html": - { - if (qs.isCond(2)) - { - giveItems(player, ENCHANT_WEAPON_B, 3); - giveStoryQuestReward(npc, player); - addExpAndSp(player, 635250, 152); - showOnScreenMsg(player, NpcStringId.GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_QUEEN_NAVARI_AT_LV_58, ExShowScreenMessage.TOP_CENTER, 8000); - qs.exitQuest(false, true); - } - break; - } - default: - { - htmltext = null; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - String htmltext = getNoQuestMsg(player); - if (qs == null) - { - return htmltext; - } - - if (qs.isStarted()) - { - if (npc.getId() == HOLINT) - { - htmltext = (qs.isCond(1)) ? "30191-01.html" : "30191-04.html"; - } - else if (qs.isCond(2)) - { - htmltext = "33845-01.html"; - } - } - return htmltext; - } -} diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/popup.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/popup.html deleted file mode 100644 index b6f0d1efd1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10779_LettersFromTheQueenSeaOfSpores/popup.html +++ /dev/null @@ -1,7 +0,0 @@ -The Queen's Letter:
-I heard that you could not find leads from the giants. Instead their wrath is upon you.
-For now go to Town of Oren, where the delegation must have visited, and help them. Go talk to High Priest Hollint in Einhasad Temple in the Town of Oren.
-(A Scroll of Escape is enclosed. If you want to go now, use it to travel immediately.)
- - - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-01.htm deleted file mode 100644 index 8944bb7114..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Andy the Patrol:
-What brings you here? This place is very dangerous. It's not a place for someone like you.
-(This quest is only for Ertheia characters.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-02.htm deleted file mode 100644 index fc7577d7d8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-02.htm +++ /dev/null @@ -1,4 +0,0 @@ -Andy the Patrol:
-What brings you here? This place is very dangerous. It's not a place for someone like you.
-(Only characters Lv. 52 or above may undertake this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-03.htm deleted file mode 100644 index 82369fb6d9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-03.htm +++ /dev/null @@ -1,4 +0,0 @@ -Andy the Patrol:
-You said that you can take care of the problems with the force field at the Sea of Spores, right? Do you know what the role of force file is? You may not know since you're new to the Material Realm.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-04.htm deleted file mode 100644 index ef4ee198e5..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-04.htm +++ /dev/null @@ -1,4 +0,0 @@ -Andy the Patrol:
-The force field in the Sea of Spores was created to separate the body of water inside the sea. I don't even want to imagine what would happen then it collapses. But the force field has been getting weaker recently.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-05.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-05.htm deleted file mode 100644 index dc84f08002..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-05.htm +++ /dev/null @@ -1,5 +0,0 @@ -Andy the Patrol:
-Once the force field collapses, the rotting sea will start expanding outside. We have barely managed to get the rotting sea under control. If this happens, it will decimate the nearby villages and endanger people travelling nearby.
-Since you're here to help me with the force field, can I ask you for a favor?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-06.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-06.htm deleted file mode 100644 index f0317d854a..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-06.htm +++ /dev/null @@ -1,4 +0,0 @@ -Andy the Patrol:
-Finding the reason the force field is getting weaker is important. But the bigger problem is that strange monsters are threatening the force field. If the force field can't withstand the attacks and collapses...
-Right now Paterson's Disciple Bacon is inside the Sea of Spores studying how to reinforce the force field. Perhaps it's a good idea to go and ask him. If you could kill 20 each of Giant Fungi, Rotting Trees, Corroded Skeletons, Rotten Corpses, Corpse Spiders, and Explosive Spiders inside the Sea of Spores on your way, then I won't have to worry about the force field collapsing. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-07.html deleted file mode 100644 index 9ea11f22bd..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33845-07.html +++ /dev/null @@ -1,3 +0,0 @@ -Andy the Patrol:
-Bacon is inside the Sea of Spores. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33846-01.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33846-01.html deleted file mode 100644 index e724efe231..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33846-01.html +++ /dev/null @@ -1,3 +0,0 @@ -Paterson's Disciple Bacon:
-The investigation is still not finished. For now, go and slay some monsters. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33846-02.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33846-02.html deleted file mode 100644 index 879c48b0f9..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33846-02.html +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-You're just in time. We just finished analyzing all the data collected so far. Did you come back from slaying monsters that may pose a threat to the barrier restoration efforts?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33846-03.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33846-03.html deleted file mode 100644 index 2b70be7c82..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/33846-03.html +++ /dev/null @@ -1,3 +0,0 @@ -Paterson's Disciple Bacon:
-Good work. It would've been really bad if the monsters broke the barrier before we had a chance to restore it. I don't have to worry anymore, thanks to you. So now, let's take a look at those results. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/Q10780_AWeakenedBarrier.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/Q10780_AWeakenedBarrier.java deleted file mode 100644 index 457f06c852..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10780_AWeakenedBarrier/Q10780_AWeakenedBarrier.java +++ /dev/null @@ -1,181 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10780_AWeakenedBarrier; - -import java.util.HashSet; -import java.util.Set; - -import com.l2jmobius.gameserver.enums.Race; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.holders.NpcLogListHolder; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; -import com.l2jmobius.gameserver.network.NpcStringId; - -/** - * A Weakened Barrier (10780) - * @author malyelfik - */ -public final class Q10780_AWeakenedBarrier extends Quest -{ - // NPCs - private static final int ANDY = 33845; - private static final int BACON = 33846; - // Monsters - private static final int[] MONSTERS = - { - 20555, // Giant Fungus - 20558, // Rotting tree - 23305, // Corroded Skeleton - 23306, // Rotten Corpse - 23307, // Corpse Spider - 23308, // Explosive Spider - }; - // Items - private static final int ENCHANT_ARMOR_B = 948; - // Misc - private static final int MIN_LEVEL = 52; - private static final int MAX_LEVEL = 58; - private static final String KILL_COUNT_VAR = "KillCount"; - - public Q10780_AWeakenedBarrier() - { - super(10780); - addStartNpc(ANDY); - addTalkId(ANDY, BACON); - addKillId(MONSTERS); - - addCondRace(Race.ERTHEIA, "33845-01.htm"); - addCondLevel(MIN_LEVEL, MAX_LEVEL, "33845-02.htm"); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - - String htmltext = event; - switch (event) - { - case "33845-04.htm": - case "33845-05.htm": - { - break; - } - case "33845-06.htm": - { - qs.startQuest(); - break; - } - case "33846-03.html": - { - if (qs.isCond(2)) - { - giveItems(player, ENCHANT_ARMOR_B, 5); - giveStoryQuestReward(npc, player); - addExpAndSp(player, 15108843, 914); - qs.exitQuest(false, true); - } - break; - } - default: - { - htmltext = null; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - if (npc.getId() == ANDY) - { - switch (qs.getState()) - { - case State.CREATED: - { - htmltext = "33845-03.htm"; - break; - } - case State.STARTED: - { - if (qs.isCond(1)) - { - htmltext = "33845-07.html"; - } - break; - } - case State.COMPLETED: - { - htmltext = getAlreadyCompletedMsg(player); - break; - } - } - } - else if (qs.isStarted()) - { - htmltext = (qs.isCond(1)) ? "33846-01.html" : "33846-02.html"; - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState qs = getQuestState(killer, false); - if ((qs != null) && qs.isCond(1)) - { - int count = qs.getInt(KILL_COUNT_VAR); - if (count < 80) - { - qs.set(KILL_COUNT_VAR, ++count); - if (count >= 80) - { - qs.setCond(2, true); - } - } - } - return super.onKill(npc, killer, isSummon); - } - - @Override - public Set getNpcLogList(L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if ((qs != null) && qs.isCond(1)) - { - final int killCount = qs.getInt(KILL_COUNT_VAR); - if (killCount > 0) - { - final Set holder = new HashSet<>(1); - holder.add(new NpcLogListHolder(NpcStringId.KILL_MONSTERS_NEAR_THE_SEA_OF_SPORES, killCount)); - return holder; - } - } - return super.getNpcLogList(player); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-00.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-00.html deleted file mode 100644 index 3c3e5ce1d0..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-00.html +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-Even if I wanted to put someone to work, I can't seem to find anybody skilled enough. And it's even harder to find someone you can trust who also has the skills.
-(This quest can only be run by Ertheia classes.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-01.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-01.htm deleted file mode 100644 index 7d6e0e738b..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-01.htm +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-Even if I wanted to put someone to work, I can't seem to find anybody skilled enough. And it's even harder to find someone you can trust who also has the skills.
-(Characters must be Lv. 52 or above to perform this quest.) - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-02.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-02.htm deleted file mode 100644 index d89b382db8..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-02.htm +++ /dev/null @@ -1,5 +0,0 @@ -Paterson's Disciple Bacon:
-Were you waiting? It took me a bit to process some recent information we got regarding the situation with the Sea of Spores' barrier.
-Are you here to find out what weakened the barrier?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-03.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-03.htm deleted file mode 100644 index e2aa7bd118..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-03.htm +++ /dev/null @@ -1,5 +0,0 @@ -Paterson's Disciple Bacon:
-I noticed that you're an Ertheia. This will make it easier to explain. The Ertheia came into the Material Realm from the Spirit Realm because of a Dimensional Rift.
-My hypothesis is that the Dimensional Rift is the cause of all these problems.
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-04.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-04.htm deleted file mode 100644 index 466abe0bb2..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-04.htm +++ /dev/null @@ -1,5 +0,0 @@ -Paterson's Disciple Bacon:
-You should know that the energy from the Wind Spirit Realm is having an effect all over the Material Realm. I think it's even affecting the monsters in the Sea of Spores and the barrier.
-This previously unknown energy is weakening the barrier, is what I'm saying. There is a solution, but do you think you could help me?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-05.htm b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-05.htm deleted file mode 100644 index 2f010522ae..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-05.htm +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-For now, I'm going to try and harness the energy of the Wind Spirit Realm to reinforce the barrier. It may be weakening the barrier, but I believe if you utilize it carefully, the barrier can be strengthened by it.
-The only problem is getting some of that energy. I think these monsters are the solution. They're most certainly being affected by the same energy. Go catch Corpse Looter Stakato and Lesser Laikel in the Sea of Spores and bring back 20 Wind Spirit Fragments. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-06.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-06.html deleted file mode 100644 index 2d2abf5df1..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-06.html +++ /dev/null @@ -1,3 +0,0 @@ -Paterson's Disciple Bacon:
-I don't think these Wind Spirit Fragments will be enough. For the sake of both skill and trust, please bring back more. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-07.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-07.html deleted file mode 100644 index 70ff0d3d35..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-07.html +++ /dev/null @@ -1,4 +0,0 @@ -Paterson's Disciple Bacon:
-Did you collect all the Wind Spirit Fragments?
- - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-08.html b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-08.html deleted file mode 100644 index 31a7e057fa..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/33846-08.html +++ /dev/null @@ -1,3 +0,0 @@ -Paterson's Disciple Bacon:
-Thank you. I will take these and begin reinforcing the barrier. - \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/Q10781_IngredientsToEnforcements.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/Q10781_IngredientsToEnforcements.java deleted file mode 100644 index 2aeeecbe06..0000000000 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10781_IngredientsToEnforcements/Q10781_IngredientsToEnforcements.java +++ /dev/null @@ -1,153 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package quests.Q10781_IngredientsToEnforcements; - -import com.l2jmobius.gameserver.enums.QuestSound; -import com.l2jmobius.gameserver.enums.Race; -import com.l2jmobius.gameserver.model.actor.L2Npc; -import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; -import com.l2jmobius.gameserver.model.quest.Quest; -import com.l2jmobius.gameserver.model.quest.QuestState; -import com.l2jmobius.gameserver.model.quest.State; - -import quests.Q10780_AWeakenedBarrier.Q10780_AWeakenedBarrier; - -/** - * Ingredients to Enforcements (10781) - * @author malyelfik - */ -public final class Q10781_IngredientsToEnforcements extends Quest -{ - // NPC - private static final int BACON = 33846; - // Monsters - private static final int[] MONSTERS = - { - 23309, // Corpse Looter Stakato - 23310, // Lesser Laikel - }; - // Items - private static final int WIND_SPIRIT_FRAGMENT = 39721; - private static final int ENCHANT_ARMOR_B = 948; - // Misc - private static final int MIN_LEVEL = 52; - private static final int MAX_LEVEL = 58; - - public Q10781_IngredientsToEnforcements() - { - super(10781); - addStartNpc(BACON); - addTalkId(BACON); - addKillId(MONSTERS); - - addCondRace(Race.ERTHEIA, "33846-00.html"); - addCondLevel(MIN_LEVEL, MAX_LEVEL, "33846-01.htm"); - addCondCompletedQuest(Q10780_AWeakenedBarrier.class.getSimpleName(), "33846-01.htm"); - registerQuestItems(WIND_SPIRIT_FRAGMENT); - } - - @Override - public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, false); - if (qs == null) - { - return null; - } - - String htmltext = event; - switch (event) - { - case "33846-03.htm": - case "33846-04.htm": - { - break; - } - case "33846-05.htm": - { - qs.startQuest(); - break; - } - case "33846-08.html": - { - if (qs.isCond(2)) - { - giveItems(player, ENCHANT_ARMOR_B, 5); - giveStoryQuestReward(npc, player); - addExpAndSp(player, 19688585, 914); - qs.exitQuest(false, true); - } - break; - } - default: - { - htmltext = null; - } - } - return htmltext; - } - - @Override - public String onTalk(L2Npc npc, L2PcInstance player) - { - final QuestState qs = getQuestState(player, true); - String htmltext = getNoQuestMsg(player); - - switch (qs.getState()) - { - case State.CREATED: - { - htmltext = "33846-02.htm"; - break; - } - case State.STARTED: - { - htmltext = (qs.isCond(1)) ? "33846-06.html" : "33846-07.html"; - break; - } - case State.COMPLETED: - { - htmltext = getAlreadyCompletedMsg(player); - break; - } - } - return htmltext; - } - - @Override - public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) - { - final QuestState qs = getQuestState(killer, false); - if ((qs != null) && qs.isCond(1)) - { - final long itemCount = getQuestItemsCount(killer, WIND_SPIRIT_FRAGMENT); - if (itemCount < 80) - { - giveItems(killer, WIND_SPIRIT_FRAGMENT, 1); - if (getQuestItemsCount(killer, WIND_SPIRIT_FRAGMENT) >= 80) - { - qs.setCond(2, true); - } - else - { - playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); - } - } - } - return super.onKill(npc, killer, isSummon); - } -} \ No newline at end of file diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/QuestMasterHandler.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/QuestMasterHandler.java index 36a25fa9a7..73dad184f8 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/QuestMasterHandler.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/QuestMasterHandler.java @@ -23,8 +23,6 @@ import quests.Q00013_ParcelDelivery.Q00013_ParcelDelivery; import quests.Q00015_SweetWhispers.Q00015_SweetWhispers; import quests.Q00016_TheComingDarkness.Q00016_TheComingDarkness; import quests.Q00017_LightAndDarkness.Q00017_LightAndDarkness; -import quests.Q00019_GoToThePastureland.Q00019_GoToThePastureland; -import quests.Q00020_BringUpWithLove.Q00020_BringUpWithLove; import quests.Q00031_SecretBuriedInTheSwamp.Q00031_SecretBuriedInTheSwamp; import quests.Q00032_AnObviousLie.Q00032_AnObviousLie; import quests.Q00033_MakeAPairOfDressShoes.Q00033_MakeAPairOfDressShoes; @@ -37,14 +35,8 @@ import quests.Q00042_HelpTheUncle.Q00042_HelpTheUncle; import quests.Q00043_HelpTheSister.Q00043_HelpTheSister; import quests.Q00044_HelpTheSon.Q00044_HelpTheSon; import quests.Q00061_LawEnforcement.Q00061_LawEnforcement; -import quests.Q00109_InSearchOfTheNest.Q00109_InSearchOfTheNest; -import quests.Q00110_ToThePrimevalIsle.Q00110_ToThePrimevalIsle; -import quests.Q00111_ElrokianHuntersProof.Q00111_ElrokianHuntersProof; import quests.Q00115_TheOtherSideOfTruth.Q00115_TheOtherSideOfTruth; import quests.Q00119_LastImperialPrince.Q00119_LastImperialPrince; -import quests.Q00124_MeetingTheElroki.Q00124_MeetingTheElroki; -import quests.Q00125_TheNameOfEvil1.Q00125_TheNameOfEvil1; -import quests.Q00126_TheNameOfEvil2.Q00126_TheNameOfEvil2; import quests.Q00128_PailakaSongOfIceAndFire.Q00128_PailakaSongOfIceAndFire; import quests.Q00129_PailakaDevilsLegacy.Q00129_PailakaDevilsLegacy; import quests.Q00134_TempleMissionary.Q00134_TempleMissionary; @@ -58,7 +50,6 @@ import quests.Q00141_ShadowFoxPart3.Q00141_ShadowFoxPart3; import quests.Q00142_FallenAngelRequestOfDawn.Q00142_FallenAngelRequestOfDawn; import quests.Q00143_FallenAngelRequestOfDusk.Q00143_FallenAngelRequestOfDusk; import quests.Q00144_PailakaInjuredDragon.Q00144_PailakaInjuredDragon; -import quests.Q00146_TheZeroHour.Q00146_TheZeroHour; import quests.Q00149_PrimalMotherIstina.Q00149_PrimalMotherIstina; import quests.Q00150_ExtremeChallengePrimalMotherResurrected.Q00150_ExtremeChallengePrimalMotherResurrected; import quests.Q00177_SplitDestiny.Q00177_SplitDestiny; @@ -81,14 +72,7 @@ import quests.Q00196_SevenSignsSealOfTheEmperor.Q00196_SevenSignsSealOfTheEmpero import quests.Q00197_SevenSignsTheSacredBookOfSeal.Q00197_SevenSignsTheSacredBookOfSeal; import quests.Q00198_SevenSignsEmbryo.Q00198_SevenSignsEmbryo; import quests.Q00210_ObtainAWolfPet.Q00210_ObtainAWolfPet; -import quests.Q00237_WindsOfChange.Q00237_WindsOfChange; -import quests.Q00238_SuccessFailureOfBusiness.Q00238_SuccessFailureOfBusiness; -import quests.Q00239_WontYouJoinUs.Q00239_WontYouJoinUs; -import quests.Q00240_ImTheOnlyOneYouCanTrust.Q00240_ImTheOnlyOneYouCanTrust; import quests.Q00254_LegendaryTales.Q00254_LegendaryTales; -import quests.Q00270_TheOneWhoEndsSilence.Q00270_TheOneWhoEndsSilence; -import quests.Q00278_HomeSecurity.Q00278_HomeSecurity; -import quests.Q00310_OnlyWhatRemains.Q00310_OnlyWhatRemains; import quests.Q00337_AudienceWithTheLandDragon.Q00337_AudienceWithTheLandDragon; import quests.Q00344_1000YearsTheEndOfLamentation.Q00344_1000YearsTheEndOfLamentation; import quests.Q00371_ShrieksOfGhosts.Q00371_ShrieksOfGhosts; @@ -102,12 +86,9 @@ import quests.Q00453_NotStrongEnoughAlone.Q00453_NotStrongEnoughAlone; import quests.Q00454_CompletelyLost.Q00454_CompletelyLost; import quests.Q00455_WingsOfSand.Q00455_WingsOfSand; import quests.Q00456_DontKnowDontCare.Q00456_DontKnowDontCare; -import quests.Q00457_LostAndFound.Q00457_LostAndFound; -import quests.Q00458_PerfectForm.Q00458_PerfectForm; import quests.Q00459_TheVillainOfTheUndergroundMineTeredor.Q00459_TheVillainOfTheUndergroundMineTeredor; import quests.Q00460_PreciousResearchMaterial.Q00460_PreciousResearchMaterial; import quests.Q00462_StuffedAncientHeroes.Q00462_StuffedAncientHeroes; -import quests.Q00464_Oath.Q00464_Oath; import quests.Q00465_WeAreFriends.Q00465_WeAreFriends; import quests.Q00466_PlacingMySmallPower.Q00466_PlacingMySmallPower; import quests.Q00468_BeLostInTheMysteriousScent.Q00468_BeLostInTheMysteriousScent; @@ -120,9 +101,6 @@ import quests.Q00474_WaitingForTheSummer.Q00474_WaitingForTheSummer; import quests.Q00476_PlainMission.Q00476_PlainMission; import quests.Q00483_IntendedTactic.Q00483_IntendedTactic; import quests.Q00485_HotSpringWater.Q00485_HotSpringWater; -import quests.Q00488_WondersOfCaring.Q00488_WondersOfCaring; -import quests.Q00489_InThisQuietPlace.Q00489_InThisQuietPlace; -import quests.Q00491_InNominePatris.Q00491_InNominePatris; import quests.Q00492_TombRaiders.Q00492_TombRaiders; import quests.Q00493_KickingOutUnwelcomeGuests.Q00493_KickingOutUnwelcomeGuests; import quests.Q00494_IncarnationOfGreedZellakaGroup.Q00494_IncarnationOfGreedZellakaGroup; @@ -143,16 +121,10 @@ import quests.Q00621_EggDelivery.Q00621_EggDelivery; import quests.Q00622_SpecialtyLiquorDelivery.Q00622_SpecialtyLiquorDelivery; import quests.Q00623_TheFinestFood.Q00623_TheFinestFood; import quests.Q00627_HeartInSearchOfPower.Q00627_HeartInSearchOfPower; -import quests.Q00631_DeliciousTopChoiceMeat.Q00631_DeliciousTopChoiceMeat; -import quests.Q00641_AttackSailren.Q00641_AttackSailren; -import quests.Q00642_APowerfulPrimevalCreature.Q00642_APowerfulPrimevalCreature; -import quests.Q00643_RiseAndFallOfTheElrokiTribe.Q00643_RiseAndFallOfTheElrokiTribe; -import quests.Q00645_GhostsOfBatur.Q00645_GhostsOfBatur; import quests.Q00648_AnIceMerchantsDream.Q00648_AnIceMerchantsDream; import quests.Q00662_AGameOfCards.Q00662_AGameOfCards; import quests.Q00663_SeductiveWhispers.Q00663_SeductiveWhispers; import quests.Q00670_DefeatingTheLordOfSeed.Q00670_DefeatingTheLordOfSeed; -import quests.Q00688_DefeatTheElrokianRaiders.Q00688_DefeatTheElrokianRaiders; import quests.Q00726_LightWithinTheDarkness.Q00726_LightWithinTheDarkness; import quests.Q00727_HopeWithinTheDarkness.Q00727_HopeWithinTheDarkness; import quests.Q00751_LiberatingTheSpirits.Q00751_LiberatingTheSpirits; @@ -169,7 +141,6 @@ import quests.Q00762_AnOminousRequest.Q00762_AnOminousRequest; import quests.Q00763_ADauntingTask.Q00763_ADauntingTask; import quests.Q00764_WeakeningTheVarkaSilenosForces.Q00764_WeakeningTheVarkaSilenosForces; import quests.Q00765_WeakeningTheKetraOrcForces.Q00765_WeakeningTheKetraOrcForces; -import quests.Q00772_PurifyingSouls.Q00772_PurifyingSouls; import quests.Q00775_RetrievingTheChaosFragment.Q00775_RetrievingTheChaosFragment; import quests.Q00776_SlayDarkLordEkimus.Q00776_SlayDarkLordEkimus; import quests.Q00777_SlayDarkLordTiat.Q00777_SlayDarkLordTiat; @@ -194,16 +165,12 @@ import quests.Q00906_TheCallOfValakas.Q00906_TheCallOfValakas; import quests.Q00926_30DaySearchOperation.Q00926_30DaySearchOperation; import quests.Q00928_100DaySubjugationOperation.Q00928_100DaySubjugationOperation; import quests.Q00937_ToReviveTheFishingGuild.Q00937_ToReviveTheFishingGuild; -import quests.Q10273_GoodDayToFly.Q10273_GoodDayToFly; -import quests.Q10274_CollectingInTheAir.Q10274_CollectingInTheAir; import quests.Q10282_ToTheSeedOfAnnihilation.Q10282_ToTheSeedOfAnnihilation; import quests.Q10283_RequestOfIceMerchant.Q10283_RequestOfIceMerchant; import quests.Q10284_AcquisitionOfDivineSword.Q10284_AcquisitionOfDivineSword; import quests.Q10285_MeetingSirra.Q10285_MeetingSirra; import quests.Q10286_ReunionWithSirra.Q10286_ReunionWithSirra; import quests.Q10287_StoryOfThoseLeft.Q10287_StoryOfThoseLeft; -import quests.Q10288_SecretMission.Q10288_SecretMission; -import quests.Q10289_FadeToBlack.Q10289_FadeToBlack; import quests.Q10290_LandDragonConqueror.Q10290_LandDragonConqueror; import quests.Q10291_FireDragonDestroyer.Q10291_FireDragonDestroyer; import quests.Q10292_SevenSignsGirlOfDoubt.Q10292_SevenSignsGirlOfDoubt; @@ -255,12 +222,6 @@ import quests.Q10364_ObligationsOfTheSeeker.Q10364_ObligationsOfTheSeeker; import quests.Q10365_ForTheSearchdogKing.Q10365_ForTheSearchdogKing; import quests.Q10366_ReportOnTheSituationAtTheRuins.Q10366_ReportOnTheSituationAtTheRuins; import quests.Q10369_NoblesseSoulTesting.Q10369_NoblesseSoulTesting; -import quests.Q10370_MenacingTimes.Q10370_MenacingTimes; -import quests.Q10371_GraspThyPower.Q10371_GraspThyPower; -import quests.Q10372_PurgatoryVolvere.Q10372_PurgatoryVolvere; -import quests.Q10374_ThatPlaceSuccubus.Q10374_ThatPlaceSuccubus; -import quests.Q10375_SuccubusDisciples.Q10375_SuccubusDisciples; -import quests.Q10376_BloodyGoodTime.Q10376_BloodyGoodTime; import quests.Q10377_TheInvadedExecutionGrounds.Q10377_TheInvadedExecutionGrounds; import quests.Q10378_WeedingWork.Q10378_WeedingWork; import quests.Q10379_AnUninvitedGuest.Q10379_AnUninvitedGuest; @@ -279,10 +240,6 @@ import quests.Q10391_ASuspiciousHelper.Q10391_ASuspiciousHelper; import quests.Q10392_FailureAndItsConsequences.Q10392_FailureAndItsConsequences; import quests.Q10393_KekropusLetterAClueCompleted.Q10393_KekropusLetterAClueCompleted; import quests.Q10394_MutualBenefit.Q10394_MutualBenefit; -import quests.Q10395_NotATraitor.Q10395_NotATraitor; -import quests.Q10397_KekropusLetterASuspiciousBadge.Q10397_KekropusLetterASuspiciousBadge; -import quests.Q10398_ASuspiciousBadge.Q10398_ASuspiciousBadge; -import quests.Q10399_TheAlphabetOfTheGiants.Q10399_TheAlphabetOfTheGiants; import quests.Q10401_KekropusLetterDecodingTheBadge.Q10401_KekropusLetterDecodingTheBadge; import quests.Q10402_NowhereToTurn.Q10402_NowhereToTurn; import quests.Q10403_TheGuardianGiant.Q10403_TheGuardianGiant; @@ -307,14 +264,10 @@ import quests.Q10424_KekropusLetterBelosWhereabouts.Q10424_KekropusLetterBelosWh import quests.Q10425_TheKetraOrcSupporters.Q10425_TheKetraOrcSupporters; import quests.Q10426_AssassinationOfTheKetraOrcCommander.Q10426_AssassinationOfTheKetraOrcCommander; import quests.Q10427_AssassinationOfTheKetraOrcChief.Q10427_AssassinationOfTheKetraOrcChief; -import quests.Q10442_TheAnnihilatedPlains1.Q10442_TheAnnihilatedPlains1; -import quests.Q10443_TheAnnihilatedPlains2.Q10443_TheAnnihilatedPlains2; -import quests.Q10444_TheOriginOfMonsters.Q10444_TheOriginOfMonsters; import quests.Q10445_AnImpendingThreat.Q10445_AnImpendingThreat; import quests.Q10446_HitAndRun.Q10446_HitAndRun; import quests.Q10447_TimingIsEverything.Q10447_TimingIsEverything; import quests.Q10450_ADarkAmbition.Q10450_ADarkAmbition; -import quests.Q10452_IsItEdible.Q10452_IsItEdible; import quests.Q10453_StoppingTheWindDragon.Q10453_StoppingTheWindDragon; import quests.Q10455_ElikiasLetter.Q10455_ElikiasLetter; import quests.Q10459_ASickAmbition.Q10459_ASickAmbition; @@ -345,7 +298,6 @@ import quests.Q10703_BottleOfIstinasSoul.Q10703_BottleOfIstinasSoul; import quests.Q10704_BottleOfOctavisSoul.Q10704_BottleOfOctavisSoul; import quests.Q10705_BottleOfTautisSoul.Q10705_BottleOfTautisSoul; import quests.Q10707_FlamesOfSorrow.Q10707_FlamesOfSorrow; -import quests.Q10708_StrengthenTheBarrier.Q10708_StrengthenTheBarrier; import quests.Q10709_TheStolenSeed.Q10709_TheStolenSeed; import quests.Q10710_LifeEnergyRepository.Q10710_LifeEnergyRepository; import quests.Q10732_AForeignLand.Q10732_AForeignLand; @@ -385,9 +337,6 @@ import quests.Q10774_LettersFromTheQueenCrumaTowerPart2.Q10774_LettersFromTheQue import quests.Q10775_InSearchOfAnAncientGiant.Q10775_InSearchOfAnAncientGiant; import quests.Q10776_TheWrathOfTheGiants.Q10776_TheWrathOfTheGiants; import quests.Q10777_ReportsFromCrumaTowerPart2.Q10777_ReportsFromCrumaTowerPart2; -import quests.Q10779_LettersFromTheQueenSeaOfSpores.Q10779_LettersFromTheQueenSeaOfSpores; -import quests.Q10780_AWeakenedBarrier.Q10780_AWeakenedBarrier; -import quests.Q10781_IngredientsToEnforcements.Q10781_IngredientsToEnforcements; import quests.Q10782_LettersFromTheQueenForsakenPlains.Q10782_LettersFromTheQueenForsakenPlains; import quests.Q10783_TracesOfAnAmbush.Q10783_TracesOfAnAmbush; import quests.Q10784_TheBrokenDevice.Q10784_TheBrokenDevice; @@ -447,8 +396,6 @@ public class QuestMasterHandler Q00015_SweetWhispers.class, Q00016_TheComingDarkness.class, Q00017_LightAndDarkness.class, - Q00019_GoToThePastureland.class, - Q00020_BringUpWithLove.class, Q00031_SecretBuriedInTheSwamp.class, Q00032_AnObviousLie.class, Q00033_MakeAPairOfDressShoes.class, @@ -461,14 +408,8 @@ public class QuestMasterHandler Q00043_HelpTheSister.class, Q00044_HelpTheSon.class, Q00061_LawEnforcement.class, - Q00109_InSearchOfTheNest.class, - Q00110_ToThePrimevalIsle.class, - Q00111_ElrokianHuntersProof.class, Q00115_TheOtherSideOfTruth.class, Q00119_LastImperialPrince.class, - Q00124_MeetingTheElroki.class, - Q00125_TheNameOfEvil1.class, - Q00126_TheNameOfEvil2.class, Q00128_PailakaSongOfIceAndFire.class, Q00129_PailakaDevilsLegacy.class, Q00134_TempleMissionary.class, @@ -482,7 +423,6 @@ public class QuestMasterHandler Q00142_FallenAngelRequestOfDawn.class, Q00143_FallenAngelRequestOfDusk.class, Q00144_PailakaInjuredDragon.class, - Q00146_TheZeroHour.class, Q00149_PrimalMotherIstina.class, Q00150_ExtremeChallengePrimalMotherResurrected.class, Q00177_SplitDestiny.class, @@ -505,14 +445,7 @@ public class QuestMasterHandler Q00197_SevenSignsTheSacredBookOfSeal.class, Q00198_SevenSignsEmbryo.class, Q00210_ObtainAWolfPet.class, - Q00237_WindsOfChange.class, - Q00238_SuccessFailureOfBusiness.class, - Q00239_WontYouJoinUs.class, - Q00240_ImTheOnlyOneYouCanTrust.class, Q00254_LegendaryTales.class, - Q00270_TheOneWhoEndsSilence.class, - Q00278_HomeSecurity.class, - Q00310_OnlyWhatRemains.class, Q00337_AudienceWithTheLandDragon.class, Q00344_1000YearsTheEndOfLamentation.class, Q00371_ShrieksOfGhosts.class, @@ -526,12 +459,9 @@ public class QuestMasterHandler Q00454_CompletelyLost.class, Q00455_WingsOfSand.class, Q00456_DontKnowDontCare.class, - Q00457_LostAndFound.class, - Q00458_PerfectForm.class, Q00459_TheVillainOfTheUndergroundMineTeredor.class, Q00460_PreciousResearchMaterial.class, Q00462_StuffedAncientHeroes.class, - Q00464_Oath.class, Q00465_WeAreFriends.class, Q00466_PlacingMySmallPower.class, Q00468_BeLostInTheMysteriousScent.class, @@ -544,9 +474,6 @@ public class QuestMasterHandler Q00476_PlainMission.class, Q00483_IntendedTactic.class, Q00485_HotSpringWater.class, - Q00488_WondersOfCaring.class, - Q00489_InThisQuietPlace.class, - Q00491_InNominePatris.class, Q00492_TombRaiders.class, Q00493_KickingOutUnwelcomeGuests.class, Q00494_IncarnationOfGreedZellakaGroup.class, @@ -567,16 +494,10 @@ public class QuestMasterHandler Q00622_SpecialtyLiquorDelivery.class, Q00623_TheFinestFood.class, Q00627_HeartInSearchOfPower.class, - Q00631_DeliciousTopChoiceMeat.class, - Q00641_AttackSailren.class, - Q00642_APowerfulPrimevalCreature.class, - Q00643_RiseAndFallOfTheElrokiTribe.class, - Q00645_GhostsOfBatur.class, Q00648_AnIceMerchantsDream.class, Q00662_AGameOfCards.class, Q00663_SeductiveWhispers.class, Q00670_DefeatingTheLordOfSeed.class, - Q00688_DefeatTheElrokianRaiders.class, Q00726_LightWithinTheDarkness.class, Q00727_HopeWithinTheDarkness.class, Q00751_LiberatingTheSpirits.class, @@ -593,7 +514,6 @@ public class QuestMasterHandler Q00763_ADauntingTask.class, Q00764_WeakeningTheVarkaSilenosForces.class, Q00765_WeakeningTheKetraOrcForces.class, - Q00772_PurifyingSouls.class, Q00775_RetrievingTheChaosFragment.class, Q00776_SlayDarkLordEkimus.class, Q00777_SlayDarkLordTiat.class, @@ -618,16 +538,12 @@ public class QuestMasterHandler Q00926_30DaySearchOperation.class, Q00928_100DaySubjugationOperation.class, Q00937_ToReviveTheFishingGuild.class, - Q10273_GoodDayToFly.class, - Q10274_CollectingInTheAir.class, Q10282_ToTheSeedOfAnnihilation.class, Q10283_RequestOfIceMerchant.class, Q10284_AcquisitionOfDivineSword.class, Q10285_MeetingSirra.class, Q10286_ReunionWithSirra.class, Q10287_StoryOfThoseLeft.class, - Q10288_SecretMission.class, - Q10289_FadeToBlack.class, Q10290_LandDragonConqueror.class, Q10291_FireDragonDestroyer.class, Q10292_SevenSignsGirlOfDoubt.class, @@ -679,12 +595,6 @@ public class QuestMasterHandler Q10365_ForTheSearchdogKing.class, Q10366_ReportOnTheSituationAtTheRuins.class, Q10369_NoblesseSoulTesting.class, - Q10370_MenacingTimes.class, - Q10371_GraspThyPower.class, - Q10372_PurgatoryVolvere.class, - Q10374_ThatPlaceSuccubus.class, - Q10375_SuccubusDisciples.class, - Q10376_BloodyGoodTime.class, Q10377_TheInvadedExecutionGrounds.class, Q10378_WeedingWork.class, Q10379_AnUninvitedGuest.class, @@ -703,10 +613,6 @@ public class QuestMasterHandler Q10392_FailureAndItsConsequences.class, Q10393_KekropusLetterAClueCompleted.class, Q10394_MutualBenefit.class, - Q10395_NotATraitor.class, - Q10397_KekropusLetterASuspiciousBadge.class, - Q10398_ASuspiciousBadge.class, - Q10399_TheAlphabetOfTheGiants.class, Q10401_KekropusLetterDecodingTheBadge.class, Q10402_NowhereToTurn.class, Q10403_TheGuardianGiant.class, @@ -731,14 +637,10 @@ public class QuestMasterHandler Q10425_TheKetraOrcSupporters.class, Q10426_AssassinationOfTheKetraOrcCommander.class, Q10427_AssassinationOfTheKetraOrcChief.class, - Q10442_TheAnnihilatedPlains1.class, - Q10443_TheAnnihilatedPlains2.class, - Q10444_TheOriginOfMonsters.class, Q10445_AnImpendingThreat.class, Q10446_HitAndRun.class, Q10447_TimingIsEverything.class, Q10450_ADarkAmbition.class, - Q10452_IsItEdible.class, Q10453_StoppingTheWindDragon.class, Q10455_ElikiasLetter.class, Q10459_ASickAmbition.class, @@ -769,7 +671,6 @@ public class QuestMasterHandler Q10704_BottleOfOctavisSoul.class, Q10705_BottleOfTautisSoul.class, Q10707_FlamesOfSorrow.class, - Q10708_StrengthenTheBarrier.class, Q10709_TheStolenSeed.class, Q10710_LifeEnergyRepository.class, Q10732_AForeignLand.class, @@ -809,9 +710,6 @@ public class QuestMasterHandler Q10775_InSearchOfAnAncientGiant.class, Q10776_TheWrathOfTheGiants.class, Q10777_ReportsFromCrumaTowerPart2.class, - Q10779_LettersFromTheQueenSeaOfSpores.class, - Q10780_AWeakenedBarrier.class, - Q10781_IngredientsToEnforcements.class, Q10782_LettersFromTheQueenForsakenPlains.class, Q10783_TracesOfAnAmbush.class, Q10784_TheBrokenDevice.class,