diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/AbstractSagaQuest.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/AbstractSagaQuest.java new file mode 100644 index 0000000000..6372feabff --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/AbstractSagaQuest.java @@ -0,0 +1,1038 @@ +/* + * 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; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import com.l2jmobius.Config; +import com.l2jmobius.gameserver.ai.CtrlIntention; +import com.l2jmobius.gameserver.enums.ChatType; +import com.l2jmobius.gameserver.model.L2Object; +import com.l2jmobius.gameserver.model.L2Party; +import com.l2jmobius.gameserver.model.L2World; +import com.l2jmobius.gameserver.model.Location; +import com.l2jmobius.gameserver.model.actor.L2Attackable; +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.Quest; +import com.l2jmobius.gameserver.model.quest.QuestState; +import com.l2jmobius.gameserver.model.skills.Skill; +import com.l2jmobius.gameserver.network.serverpackets.MagicSkillUse; +import com.l2jmobius.gameserver.network.serverpackets.NpcSay; + +/** + * Abstract Saga quest. + * @author Kerberos + */ +public abstract class AbstractSagaQuest extends Quest +{ + protected int[] _npc; + protected int[] Items; + protected int[] Mob; + protected int[] classid; + protected int[] prevclass; + protected Location[] npcSpawnLocations; + protected String[] Text; + private static final Map SPAWN_LIST = new HashMap<>(); + // @formatter:off + private static int[][] QuestClass = + { + { 0x7f }, { 0x80, 0x81 }, { 0x82 }, { 0x05 }, { 0x14 }, { 0x15 }, + { 0x02 }, { 0x03 }, { 0x2e }, { 0x30 }, { 0x33 }, { 0x34 }, { 0x08 }, + { 0x17 }, { 0x24 }, { 0x09 }, { 0x18 }, { 0x25 }, { 0x10 }, { 0x11 }, + { 0x1e }, { 0x0c }, { 0x1b }, { 0x28 }, { 0x0e }, { 0x1c }, { 0x29 }, + { 0x0d }, { 0x06 }, { 0x22 }, { 0x21 }, { 0x2b }, { 0x37 }, { 0x39 } + }; + // @formatter:on + + public AbstractSagaQuest(int questId) + { + super(questId); + } + + private QuestState findQuest(L2PcInstance player) + { + QuestState st = getQuestState(player, false); + if (st != null) + { + if (getId() == 68) + { + for (int q = 0; q < 2; q++) + { + if (player.getClassId().getId() == QuestClass[1][q]) + { + return st; + } + } + } + else if (player.getClassId().getId() == QuestClass[getId() - 67][0]) + { + return st; + } + } + return null; + } + + private QuestState findRightState(L2Npc npc) + { + L2PcInstance player = null; + QuestState st = null; + if (SPAWN_LIST.containsKey(npc)) + { + player = L2World.getInstance().getPlayer(SPAWN_LIST.get(npc)); + if (player != null) + { + st = player.getQuestState(getName()); + } + } + return st; + } + + private int getClassId(L2PcInstance player) + { + if (player.getClassId().getId() == 0x81) + { + return classid[1]; + } + return classid[0]; + } + + private int getPrevClass(L2PcInstance player) + { + if (player.getClassId().getId() == 0x81) + { + if (prevclass.length == 1) + { + return -1; + } + return prevclass[1]; + } + return prevclass[0]; + } + + private void giveHalishaMark(QuestState st2) + { + if (st2.getInt("spawned") == 0) + { + if (getQuestItemsCount(st2.getPlayer(), Items[3]) >= 700) + { + takeItems(st2.getPlayer(), Items[3], 20); + int xx = st2.getPlayer().getX(); + int yy = st2.getPlayer().getY(); + int zz = st2.getPlayer().getZ(); + // TODO: Check if spawns correct + L2Npc Archon = addSpawn(Mob[1], xx, yy, zz, 0 + 32500, true, -1); + addSpawn(st2, Archon); + st2.set("spawned", "1"); + startQuestTimer("Archon Hellisha has despawned", 600000, Archon, st2.getPlayer()); + autoChat(Archon, Text[13].replace("PLAYERNAME", st2.getPlayer().getName())); + ((L2Attackable) Archon).addDamageHate(st2.getPlayer(), 0, 99999); + Archon.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, st2.getPlayer(), null); + } + else + { + giveItems(st2.getPlayer(), Items[3], getRandom(1, 4)); + } + } + } + + @Override + public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) + { + QuestState st = getQuestState(player, false); + String htmltext = null; + if (st != null) + { + switch (event) + { + case "0-011.htm": + case "0-012.htm": + case "0-013.htm": + case "0-014.htm": + case "0-015.htm": + htmltext = event; + break; + case "accept": + st.startQuest(); + giveItems(player, Items[10], 1); + htmltext = "0-03.htm"; + break; + case "0-1": + if (player.getLevel() < 76) + { + htmltext = "0-02.htm"; + if (st.isCreated()) + { + st.exitQuest(false, true); + } + } + else + { + htmltext = "0-05.htm"; + } + break; + case "0-2": + if (player.getLevel() < 76) + { + takeItems(player, Items[10], -1); + st.setCond(20, true); + htmltext = "0-08.htm"; + } + else + { + takeItems(player, Items[10], -1); + addExpAndSp(player, 2299404, 0); + giveAdena(player, 5000000, true); + giveItems(player, 6622, 1); + int Class = getClassId(player); + int prevClass = getPrevClass(player); + player.setClassId(Class); + if (!player.isSubClassActive() && (player.getBaseClass() == prevClass)) + { + player.setBaseClass(Class); + } + player.broadcastUserInfo(); + cast(npc, player, 4339, 1); + st.exitQuest(false, true); + htmltext = "0-07.htm"; + } + break; + case "1-3": + st.setCond(3); + htmltext = "1-05.htm"; + break; + case "1-4": + st.setCond(4); + takeItems(player, Items[0], 1); + if (Items[11] != 0) + { + takeItems(player, Items[11], 1); + } + giveItems(player, Items[1], 1); + htmltext = "1-06.htm"; + break; + case "2-1": + st.setCond(2); + htmltext = "2-05.htm"; + break; + case "2-2": + st.setCond(5); + takeItems(player, Items[1], 1); + giveItems(player, Items[4], 1); + htmltext = "2-06.htm"; + break; + case "3-5": + htmltext = "3-07.htm"; + break; + case "3-6": + st.setCond(11); + htmltext = "3-02.htm"; + break; + case "3-7": + st.setCond(12); + htmltext = "3-03.htm"; + break; + case "3-8": + st.setCond(13); + takeItems(player, Items[2], 1); + giveItems(player, Items[7], 1); + htmltext = "3-08.htm"; + break; + case "4-1": + htmltext = "4-010.htm"; + break; + case "4-2": + giveItems(player, Items[9], 1); + st.setCond(18, true); + htmltext = "4-011.htm"; + break; + case "4-3": + giveItems(player, Items[9], 1); + st.setCond(18, true); + autoChat(npc, Text[13].replace("PLAYERNAME", player.getName())); + st.set("Quest0", "0"); + cancelQuestTimer("Mob_2 has despawned", npc, player); + DeleteSpawn(st, npc); + return null; + case "5-1": + st.setCond(6, true); + takeItems(player, Items[4], 1); + cast(npc, player, 4546, 1); + htmltext = "5-02.htm"; + break; + case "6-1": + st.setCond(8, true); + takeItems(player, Items[5], 1); + cast(npc, player, 4546, 1); + htmltext = "6-03.htm"; + break; + case "7-1": + if (st.getInt("spawned") == 1) + { + htmltext = "7-03.htm"; + } + else if (st.getInt("spawned") == 0) + { + L2Npc Mob_1 = addSpawn(Mob[0], npcSpawnLocations[0], false, 0); + st.set("spawned", "1"); + startQuestTimer("Mob_1 Timer 1", 500, Mob_1, player); + startQuestTimer("Mob_1 has despawned", 300000, Mob_1, player); + addSpawn(st, Mob_1); + htmltext = "7-02.htm"; + } + else + { + htmltext = "7-04.htm"; + } + break; + case "7-2": + st.setCond(10, true); + takeItems(player, Items[6], 1); + cast(npc, player, 4546, 1); + htmltext = "7-06.htm"; + break; + case "8-1": + st.setCond(14, true); + takeItems(player, Items[7], 1); + cast(npc, player, 4546, 1); + htmltext = "8-02.htm"; + break; + case "9-1": + st.setCond(17, true); + takeItems(player, Items[8], 1); + cast(npc, player, 4546, 1); + htmltext = "9-03.htm"; + break; + case "10-1": + if (st.getInt("Quest0") == 0) + { + L2Npc Mob_3 = addSpawn(Mob[2], npcSpawnLocations[1], false, 0); + L2Npc Mob_2 = addSpawn(_npc[4], npcSpawnLocations[2], false, 0); + addSpawn(st, Mob_3); + addSpawn(st, Mob_2); + st.set("Mob_2", String.valueOf(Mob_2.getObjectId())); + st.set("Quest0", "1"); + st.set("Quest1", "45"); + startQuestTimer("Mob_3 Timer 1", 500, Mob_3, player, true); + startQuestTimer("Mob_3 has despawned", 59000, Mob_3, player); + startQuestTimer("Mob_2 Timer 1", 500, Mob_2, player); + startQuestTimer("Mob_2 has despawned", 60000, Mob_2, player); + htmltext = "10-02.htm"; + } + else if (st.getInt("Quest1") == 45) + { + htmltext = "10-03.htm"; + } + else + { + htmltext = "10-04.htm"; + } + break; + case "10-2": + st.setCond(19, true); + takeItems(player, Items[9], 1); + cast(npc, player, 4546, 1); + htmltext = "10-06.htm"; + break; + case "11-9": + st.setCond(15); + htmltext = "11-03.htm"; + break; + case "Mob_1 Timer 1": + autoChat(npc, Text[0].replace("PLAYERNAME", player.getName())); + return null; + case "Mob_1 has despawned": + autoChat(npc, Text[1].replace("PLAYERNAME", player.getName())); + st.set("spawned", "0"); + DeleteSpawn(st, npc); + return null; + case "Archon Hellisha has despawned": + autoChat(npc, Text[6].replace("PLAYERNAME", player.getName())); + st.set("spawned", "0"); + DeleteSpawn(st, npc); + return null; + case "Mob_3 Timer 1": + L2Npc Mob_2 = FindSpawn(player, (L2Npc) L2World.getInstance().findObject(st.getInt("Mob_2"))); + // TODO: Check this + // if (npc.getKnownList().knowsObject(Mob_2)) + if ((Mob_2 != null) && (npc.calculateDistance(Mob_2, false, false) < 450)) + { + ((L2Attackable) npc).addDamageHate(Mob_2, 0, 99999); + npc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, Mob_2, null); + Mob_2.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, npc, null); + autoChat(npc, Text[14].replace("PLAYERNAME", player.getName())); + cancelQuestTimer("Mob_3 Timer 1", npc, player); + } + return null; + case "Mob_3 has despawned": + autoChat(npc, Text[15].replace("PLAYERNAME", player.getName())); + st.set("Quest0", "2"); + DeleteSpawn(st, npc); + return null; + case "Mob_2 Timer 1": + autoChat(npc, Text[7].replace("PLAYERNAME", player.getName())); + startQuestTimer("Mob_2 Timer 2", 1500, npc, player); + if (st.getInt("Quest1") == 45) + { + st.set("Quest1", "0"); + } + return null; + case "Mob_2 Timer 2": + autoChat(npc, Text[8].replace("PLAYERNAME", player.getName())); + startQuestTimer("Mob_2 Timer 3", 10000, npc, player); + return null; + case "Mob_2 Timer 3": + if (st.getInt("Quest0") == 0) + { + startQuestTimer("Mob_2 Timer 3", 13000, npc, player); + if (getRandomBoolean()) + { + autoChat(npc, Text[9].replace("PLAYERNAME", player.getName())); + } + else + { + autoChat(npc, Text[10].replace("PLAYERNAME", player.getName())); + } + } + return null; + case "Mob_2 has despawned": + st.set("Quest1", String.valueOf(st.getInt("Quest1") + 1)); + if ((st.getInt("Quest0") == 1) || (st.getInt("Quest0") == 2) || (st.getInt("Quest1") > 3)) + { + st.set("Quest0", "0"); + // TODO this IF will never be true + if (st.getInt("Quest0") == 1) + { + autoChat(npc, Text[11].replace("PLAYERNAME", player.getName())); + } + else + { + autoChat(npc, Text[12].replace("PLAYERNAME", player.getName())); + } + DeleteSpawn(st, npc); + } + else + { + startQuestTimer("Mob_2 has despawned", 1000, npc, player); + } + return null; + } + } + return htmltext; + } + + @Override + public String onAttack(L2Npc npc, L2PcInstance player, int damage, boolean isSummon) + { + QuestState st2 = findRightState(npc); + if (st2 != null) + { + int cond = st2.getCond(); + QuestState st = getQuestState(player, false); + int npcId = npc.getId(); + if ((npcId == Mob[2]) && (st == st2) && (cond == 17)) + { + int quest0 = st.getInt("Quest0") + 1; + if (quest0 == 1) + { + autoChat(npc, Text[16].replace("PLAYERNAME", player.getName())); + } + + if (quest0 > 15) + { + quest0 = 1; + autoChat(npc, Text[17].replace("PLAYERNAME", player.getName())); + cancelQuestTimer("Mob_3 has despawned", npc, st2.getPlayer()); + st.set("Tab", "1"); + DeleteSpawn(st, npc); + } + + st.set("Quest0", Integer.toString(quest0)); + } + else if ((npcId == Mob[1]) && (cond == 15)) + { + if ((st != st2) || ((st == st2) && player.isInParty())) + { + autoChat(npc, Text[5].replace("PLAYERNAME", player.getName())); + cancelQuestTimer("Archon Hellisha has despawned", npc, st2.getPlayer()); + st2.set("spawned", "0"); + DeleteSpawn(st2, npc); + } + } + } + return super.onAttack(npc, player, damage, isSummon); + } + + @Override + public String onFirstTalk(L2Npc npc, L2PcInstance player) + { + String htmltext = ""; + QuestState st = getQuestState(player, false); + int npcId = npc.getId(); + if (st != null) + { + if (npcId == _npc[4]) + { + int cond = st.getCond(); + if (cond == 17) + { + QuestState st2 = findRightState(npc); + if (st2 != null) + { + player.setLastQuestNpcObject(npc.getObjectId()); + int tab = st.getInt("Tab"); + int quest0 = st.getInt("Quest0"); + + if (st == st2) + { + if (tab == 1) + { + if (quest0 == 0) + { + htmltext = "4-04.htm"; + } + else if (quest0 == 1) + { + htmltext = "4-06.htm"; + } + } + else if (quest0 == 0) + { + htmltext = "4-01.htm"; + } + else if (quest0 == 1) + { + htmltext = "4-03.htm"; + } + } + else if (tab == 1) + { + if (quest0 == 0) + { + htmltext = "4-05.htm"; + } + else if (quest0 == 1) + { + htmltext = "4-07.htm"; + } + } + else if (quest0 == 0) + { + htmltext = "4-02.htm"; + } + } + } + else if (cond == 18) + { + htmltext = "4-08.htm"; + } + } + } + if (htmltext == "") + { + npc.showChatWindow(player); + } + return htmltext; + } + + @Override + public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) + { + int npcId = npc.getId(); + QuestState st = getQuestState(player, false); + for (int Archon_Minion = 21646; Archon_Minion < 21652; Archon_Minion++) + { + if (npcId == Archon_Minion) + { + L2Party party = player.getParty(); + if (party != null) + { + List partyQuestMembers = new ArrayList<>(); + for (L2PcInstance player1 : party.getMembers()) + { + QuestState st1 = findQuest(player1); + if ((st1 != null) && player1.isInsideRadius(player, Config.ALT_PARTY_RANGE2, false, false)) + { + if (st1.isCond(15)) + { + partyQuestMembers.add(st1); + } + } + } + if (partyQuestMembers.size() > 0) + { + QuestState st2 = partyQuestMembers.get(getRandom(partyQuestMembers.size())); + giveHalishaMark(st2); + } + } + else + { + QuestState st1 = findQuest(player); + if (st1 != null) + { + if (st1.isCond(15)) + { + giveHalishaMark(st1); + } + } + } + return super.onKill(npc, player, isSummon); + } + } + + int[] Archon_Hellisha_Norm = + { + 18212, + 18214, + 18215, + 18216, + 18218 + }; + for (int element : Archon_Hellisha_Norm) + { + if (npcId == element) + { + QuestState st1 = findQuest(player); + if (st1 != null) + { + if (st1.isCond(15)) + { + // This is just a guess....not really sure what it actually says, if anything + autoChat(npc, Text[4].replace("PLAYERNAME", st1.getPlayer().getName())); + giveItems(st1.getPlayer(), Items[8], 1); + takeItems(st1.getPlayer(), Items[3], -1); + st1.setCond(16, true); + } + } + return super.onKill(npc, player, isSummon); + } + } + + for (int Guardian_Angel = 27214; Guardian_Angel < 27217; Guardian_Angel++) + { + if (npcId == Guardian_Angel) + { + QuestState st1 = findQuest(player); + if ((st1 != null) && st1.isCond(6)) + { + int kills = st1.getInt("kills"); + if (kills < 9) + { + st1.set("kills", Integer.toString(kills + 1)); + } + else + { + giveItems(st1.getPlayer(), Items[5], 1); + st.setCond(7, true); + } + } + return super.onKill(npc, player, isSummon); + } + } + if ((st != null) && (npcId != Mob[2])) + { + QuestState st2 = findRightState(npc); + if (st2 != null) + { + int cond = st.getCond(); + if ((npcId == Mob[0]) && (cond == 8)) + { + if (!player.isInParty()) + { + if (st == st2) + { + autoChat(npc, Text[12].replace("PLAYERNAME", player.getName())); + giveItems(player, Items[6], 1); + st.setCond(9, true); + } + } + cancelQuestTimer("Mob_1 has despawned", npc, st2.getPlayer()); + st2.set("spawned", "0"); + DeleteSpawn(st2, npc); + } + else if ((npcId == Mob[1]) && (cond == 15)) + { + if (!player.isInParty()) + { + if (st == st2) + { + autoChat(npc, Text[4].replace("PLAYERNAME", player.getName())); + giveItems(player, Items[8], 1); + takeItems(player, Items[3], -1); + st.setCond(16, true); + } + else + { + autoChat(npc, Text[5].replace("PLAYERNAME", player.getName())); + } + } + cancelQuestTimer("Archon Hellisha has despawned", npc, st2.getPlayer()); + st2.set("spawned", "0"); + DeleteSpawn(st2, npc); + } + } + } + else if (npcId == Mob[0]) + { + st = findRightState(npc); + if (st != null) + { + cancelQuestTimer("Mob_1 has despawned", npc, st.getPlayer()); + st.set("spawned", "0"); + DeleteSpawn(st, npc); + } + } + else if (npcId == Mob[1]) + { + st = findRightState(npc); + if (st != null) + { + cancelQuestTimer("Archon Hellisha has despawned", npc, st.getPlayer()); + st.set("spawned", "0"); + DeleteSpawn(st, npc); + } + } + return super.onKill(npc, player, isSummon); + } + + @Override + public String onSkillSee(L2Npc npc, L2PcInstance player, Skill skill, L2Object[] targets, boolean isSummon) + { + if (SPAWN_LIST.containsKey(npc) && (SPAWN_LIST.get(npc) != player.getObjectId())) + { + L2PcInstance quest_player = (L2PcInstance) L2World.getInstance().findObject(SPAWN_LIST.get(npc)); + if (quest_player == null) + { + return null; + } + + for (L2Object obj : targets) + { + if ((obj == quest_player) || (obj == npc)) + { + QuestState st2 = findRightState(npc); + if (st2 == null) + { + return null; + } + autoChat(npc, Text[5].replace("PLAYERNAME", player.getName())); + cancelQuestTimer("Archon Hellisha has despawned", npc, st2.getPlayer()); + st2.set("spawned", "0"); + DeleteSpawn(st2, npc); + } + } + } + return super.onSkillSee(npc, player, skill, targets, isSummon); + } + + @Override + public String onTalk(L2Npc npc, L2PcInstance player) + { + String htmltext = getNoQuestMsg(player); + final QuestState st = getQuestState(player, true); + if (st != null) + { + int npcId = npc.getId(); + if ((npcId == _npc[0]) && st.isCompleted()) + { + htmltext = getAlreadyCompletedMsg(player); + } + else if (player.getClassId().getId() == getPrevClass(player)) + { + switch (st.getCond()) + { + case 0: + if (npcId == _npc[0]) + { + htmltext = "0-01.htm"; + } + break; + case 1: + if (npcId == _npc[0]) + { + htmltext = "0-04.htm"; + } + else if (npcId == _npc[2]) + { + htmltext = "2-01.htm"; + } + break; + case 2: + if (npcId == _npc[2]) + { + htmltext = "2-02.htm"; + } + else if (npcId == _npc[1]) + { + htmltext = "1-01.htm"; + } + break; + case 3: + if ((npcId == _npc[1]) && hasQuestItems(player, Items[0])) + { + if ((Items[11] == 0) || hasQuestItems(player, Items[11])) + { + htmltext = "1-03.htm"; + } + else + { + htmltext = "1-02.htm"; + } + } + break; + case 4: + if (npcId == _npc[1]) + { + htmltext = "1-04.htm"; + } + else if (npcId == _npc[2]) + { + htmltext = "2-03.htm"; + } + break; + case 5: + if (npcId == _npc[2]) + { + htmltext = "2-04.htm"; + } + else if (npcId == _npc[5]) + { + htmltext = "5-01.htm"; + } + break; + case 6: + if (npcId == _npc[5]) + { + htmltext = "5-03.htm"; + } + else if (npcId == _npc[6]) + { + htmltext = "6-01.htm"; + } + break; + case 7: + if (npcId == _npc[6]) + { + htmltext = "6-02.htm"; + } + break; + case 8: + if (npcId == _npc[6]) + { + htmltext = "6-04.htm"; + } + else if (npcId == _npc[7]) + { + htmltext = "7-01.htm"; + } + break; + case 9: + if (npcId == _npc[7]) + { + htmltext = "7-05.htm"; + } + break; + case 10: + if (npcId == _npc[7]) + { + htmltext = "7-07.htm"; + } + else if (npcId == _npc[3]) + { + htmltext = "3-01.htm"; + } + break; + case 11: + case 12: + if (npcId == _npc[3]) + { + if (hasQuestItems(player, Items[2])) + { + htmltext = "3-05.htm"; + } + else + { + htmltext = "3-04.htm"; + } + } + break; + case 13: + if (npcId == _npc[3]) + { + htmltext = "3-06.htm"; + } + else if (npcId == _npc[8]) + { + htmltext = "8-01.htm"; + } + break; + case 14: + if (npcId == _npc[8]) + { + htmltext = "8-03.htm"; + } + else if (npcId == _npc[11]) + { + htmltext = "11-01.htm"; + } + break; + case 15: + if (npcId == _npc[11]) + { + htmltext = "11-02.htm"; + } + else if (npcId == _npc[9]) + { + htmltext = "9-01.htm"; + } + break; + case 16: + if (npcId == _npc[9]) + { + htmltext = "9-02.htm"; + } + break; + case 17: + if (npcId == _npc[9]) + { + htmltext = "9-04.htm"; + } + else if (npcId == _npc[10]) + { + htmltext = "10-01.htm"; + } + break; + case 18: + if (npcId == _npc[10]) + { + htmltext = "10-05.htm"; + } + break; + case 19: + if (npcId == _npc[10]) + { + htmltext = "10-07.htm"; + } + else if (npcId == _npc[0]) + { + htmltext = "0-06.htm"; + } + break; + case 20: + if (npcId == _npc[0]) + { + if (player.getLevel() >= 76) + { + htmltext = "0-09.htm"; + if ((getClassId(player) < 131) || (getClassId(player) > 135)) // in Kamael quests, npc wants to chat for a bit before changing class + { + st.exitQuest(false, true); + addExpAndSp(player, 2299404, 0); + giveAdena(player, 5000000, true); + giveItems(player, 6622, 1); // XXX rewardItems? + int classId = getClassId(player); + int prevClass = getPrevClass(player); + player.setClassId(classId); + if (!player.isSubClassActive() && (player.getBaseClass() == prevClass)) + { + player.setBaseClass(classId); + } + player.broadcastUserInfo(); + cast(npc, player, 4339, 1); + } + } + else + { + htmltext = "0-010.htm"; + } + } + break; + } + } + } + return htmltext; + } + + public void registerNPCs() + { + addStartNpc(_npc[0]); + addAttackId(Mob[2], Mob[1]); + addSkillSeeId(Mob[1]); + addFirstTalkId(_npc[4]); + addTalkId(_npc); + addKillId(Mob); + final int[] questItemIds = Items.clone(); + questItemIds[0] = 0; + questItemIds[2] = 0; // remove Ice Crystal and Divine Stone of Wisdom + registerQuestItems(questItemIds); + for (int Archon_Minion = 21646; Archon_Minion < 21652; Archon_Minion++) + { + addKillId(Archon_Minion); + } + int[] Archon_Hellisha_Norm = + { + 18212, + 18214, + 18215, + 18216, + 18218 + }; + addKillId(Archon_Hellisha_Norm); + for (int Guardian_Angel = 27214; Guardian_Angel < 27217; Guardian_Angel++) + { + addKillId(Guardian_Angel); + } + } + + private static void addSpawn(QuestState st, L2Npc mob) + { + SPAWN_LIST.put(mob, st.getPlayer().getObjectId()); + } + + private static void autoChat(L2Npc npc, String text) + { + npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), text)); + } + + private static void cast(L2Npc npc, L2Character target, int skillId, int level) + { + target.broadcastPacket(new MagicSkillUse(target, target, skillId, level, 6000, 1)); + target.broadcastPacket(new MagicSkillUse(npc, npc, skillId, level, 6000, 1)); + } + + private static void DeleteSpawn(QuestState st, L2Npc npc) + { + if (SPAWN_LIST.containsKey(npc)) + { + SPAWN_LIST.remove(npc); + npc.deleteMe(); + } + } + + private static L2Npc FindSpawn(L2PcInstance player, L2Npc npc) + { + if (SPAWN_LIST.containsKey(npc) && (SPAWN_LIST.get(npc) == player.getObjectId())) + { + return npc; + } + return null; + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-01.htm new file mode 100644 index 0000000000..1424e94021 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-01.htm @@ -0,0 +1,4 @@ +Grand Master Sedrick:
+I'm sure you've felt the dilemma of being a Paladin by now.
+How do you act when life, honor, truth, justice, faith and belief seem in conflict with each other? How can you reconcile that? It's not easy to find justice.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-010.htm new file mode 100644 index 0000000000..e1849a32ba --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-010.htm @@ -0,0 +1,3 @@ +Grand Master Sedrick:
+Come back when your body is as strong as your faith.
+ (Only a character of level 76 or above may transfer classes. Don't abandon the quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-02.htm new file mode 100644 index 0000000000..5e82260c15 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-02.htm @@ -0,0 +1,3 @@ +Grand Master Sedrick:
+Come back when your sword is shinier!
+(This quest may only be undertaken by a Paladin level is 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-03.htm new file mode 100644 index 0000000000..32ec9feac2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-03.htm @@ -0,0 +1,5 @@ +Grand Master Sedrick:
+Find Felix in Goddard. He was a Knight of Dion and fell in love with a maiden there.
+He betrayed his knighthood and ran away with her when the uprising of the peasants led to the oppression of the Knights.
+The records of the Knights Guild speak of the most powerful Knight being obsessed with his title and disappearing.
+It could be him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-04.htm new file mode 100644 index 0000000000..090c30fe23 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-04.htm @@ -0,0 +1,2 @@ +Grand Master Sedrick:
+See Felix in Goddard. With his skills, he might be working as a guard or master. He will know of the ancient training. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-05.htm new file mode 100644 index 0000000000..027f42c8f7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-05.htm @@ -0,0 +1,7 @@ +Grand Master Sedrick:
+
+Long ago, a peasant revolt broke out in a small village in Dion Territory. When talks failed, the local manor lord resorted to force. Obeying their orders, the top Knights of the guild fought for him.
+However, many young Knights followed their conscience and sided with the peasants. The order was split, each side feeling righteous.
+ I wonder if either side was right. Could a Knight just be defending his ego? There is no such thing as true justice. Whether a Paladin or Dark Avenger, one must choose and defend that choice with conviction!
+Will you take this training journey, as written in the book of ancient rites? Then you'll be able to answer my question!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-06.htm new file mode 100644 index 0000000000..57f76855ef --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-06.htm @@ -0,0 +1,4 @@ +Grand Master Sedrick:
+You seem different.
+Do you think you know about trust? What is most important is to be trusted by others and to trust yourself. Can you answer my question now?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-07.htm new file mode 100644 index 0000000000..b4329e7924 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-07.htm @@ -0,0 +1,5 @@ +Grand Master Sedrick:
+There are many perspectives on justice.
+You have to fight by the light of the justice in your heart.
+My traveling days are over. You have transcended your country or religion as a Knight or Paladin with your values.
+Lead your life by the candle in your heart! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-08.htm new file mode 100644 index 0000000000..1d91db61c7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-08.htm @@ -0,0 +1,4 @@ +Grand Master Sedrick:
+You need skill to protect justice.
+You have obtained enlightenment but still need the protection as a Knight of the temple.
+(Only a character of level 76 or above can transfer class. Do not abandon the quest until class transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-09.htm new file mode 100644 index 0000000000..8a52acc25d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/0-09.htm @@ -0,0 +1,3 @@ +Grand Master Sedrick:
+As long as the light in your heart is not extinguished, you may guard and protect justice without being bound by the rules of any organization.
+Hold the fire in your heart and live your life as a Knight re-born! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-01.htm new file mode 100644 index 0000000000..53aabc84f7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-01.htm @@ -0,0 +1,5 @@ +Chef Donath:
+ So, you want an Ice Cold Flower, eh? What do you need it for?
+ Oh no! Not Execution Grounds Fever!? Isn't... That fever caused by corpses?
+ The ingredients for Ice Cold Flower are hard to come by...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-02.htm new file mode 100644 index 0000000000..2cc7bd8b58 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-02.htm @@ -0,0 +1,3 @@ +Chef Donath:
+That's a very serious disease! Whoever gets it falls down and doesn't get back up!
+Ask Chef Jeremy about the ice crystal. Ask a fisherman for the fat white fish, or perhaps you could catch it yourself! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-03.htm new file mode 100644 index 0000000000..a4f0741adb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-03.htm @@ -0,0 +1,3 @@ +Chef Donath:
+ Here's the ice crystal... and, a fat white fish! You've brought both of them! The dish is very simple. This fish contains cold air. Cut it carefully into thin slices and wrap them around ice crystals... It makes a great sushi! It perfectly enhances the chill of the ice crystal and spreads the cold air around it. Use the scales to wrap it up and seal it. This dish is called Ice Cold Flower... And here it is!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-04.htm new file mode 100644 index 0000000000..7bb4d37669 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-04.htm @@ -0,0 +1,3 @@ +Chef Donath:
+Hey, what are you doing here? Didn't you say that Felix's daughter was dying?
+I've been working my ass off for you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-05.htm new file mode 100644 index 0000000000..6be26b7fcd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-05.htm @@ -0,0 +1,3 @@ +Chef Donath:
+ First, I'll need an ice crystal and a fat white fish. The dish's name is deceptive. It's actually a lovely cold dish made of fish. As ice crystals are the legendary food material, Chef Jeremy can tell you more of the details.
+ You can either get the fish from a fisherman or catch it yourself! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-06.htm new file mode 100644 index 0000000000..b80180219d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/1-06.htm @@ -0,0 +1,3 @@ +Chef Donath:
+ Put it near the patient's head and pull that string. The dish will open like a flower and chilled air will escape from it. Did you say the patient was Felix? Or his daughter? Anyways, that chill should cure the Execution Grounds Fever.
+ Now, you know what to do. Hurry back to your patient. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-01.htm new file mode 100644 index 0000000000..fbf4b17ad1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-01.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+As you approach the tablet, you feel a presence. Could it be the soul of the one who discouraged Sedrick and degraded the Fallen Knight Adil, here to prevent anyone from learning the secrets of the tablet?
+It looks back at you with the eyes of those you chose not to protect.
+Now the tablet is before your eyes! Is it an illusion?
+The sound of swordplay brings you back to reality.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-02.htm new file mode 100644 index 0000000000..3bcde6f7b6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Suddenly you feel a chill, and then see the flash of a blade!
+When you open your eyes you discover that a mortal blow was blocked... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-03.htm new file mode 100644 index 0000000000..4843c4b4b2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+You must speak with Eric over there. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-04.htm new file mode 100644 index 0000000000..2b108e024b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+There's a disturbance near the tablet, but it's not your business. Don't get involved.
+Come back when it's time. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-05.htm new file mode 100644 index 0000000000..e0588756c5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune begins emitting light as you near the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-06.htm new file mode 100644 index 0000000000..123ef1cf2e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-06.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+ A sharp blast of knowlege courses through your cranium! You hear the sound of distant laughter.
+A man announces the birth of another Hero.
+The woman in blue disagrees... This is the last time she'll see the child!
+A voice in your head tells you forgotten stories of ancient knights.
+You must tell Grand Master Sedrick what you've learned! He'll make you a Phoenix Knight! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-07.htm new file mode 100644 index 0000000000..6823da9ace --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Go back to Grand Master Sedrick in Aden Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/11-01.htm new file mode 100644 index 0000000000..63918ce138 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/11-01.htm @@ -0,0 +1,5 @@ +Master Felix:
+You haven't finished yet?
+I really appreciated you saving my daughter. I'll never forget that you protected my family.
+The fifth Stone of Commune? Ah, yes. I have it, but I can't give this one to you. A Knight gave me this an hour ago and told me to tell the next Knight who visits me how to get another one.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/11-02.htm new file mode 100644 index 0000000000..5dc757f7f9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/11-02.htm @@ -0,0 +1,2 @@ +Master Felix:
+ To get the stone, there are two ways. You can get it either by entering the Four Sepulchers or by slaying evil monsters in the Shrine of the Loyal by the Wall of Argos. Anyways, you must kill the Archon of Halisha. The Stone of Commune will let you know where the next tablet is. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/11-03.htm new file mode 100644 index 0000000000..bb4eaa0065 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/11-03.htm @@ -0,0 +1,4 @@ +Master Felix:
+To get the Stone of Commune, you must kill the Archon of Halisha, either by entering the Four Sepulchers or by slaying evil monsters in the Shrine of the Loyal by the Wall of Argos.
+Both paths will be difficult!
+The fifth stone tablet is in the northwest corner of the Wall of Argos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-01.htm new file mode 100644 index 0000000000..96d474ea6c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-01.htm @@ -0,0 +1,5 @@ +Master Felix:
+I used to have the pride of a Knight. I sacrificed it to save my family.
+Did Sedrick tell you I was the one who gave up everything and left?
+My wife has since died, and now my daughter is very sick.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-02.htm new file mode 100644 index 0000000000..c3e650859c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-02.htm @@ -0,0 +1,3 @@ +Master Felix:
+You don't have the Ice Cold Flower? See Donath in the hot springs area of Goddard!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-03.htm new file mode 100644 index 0000000000..e696b8c394 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-03.htm @@ -0,0 +1,6 @@ +Master Felix:
+Ice Cold Flower! I'll put this at her bedside when she sleeps.
+You must visit the six stone tablets placed by the gods around our world.
+The legendary Knight disappeared to undertake this pilgrimage! However...
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-04.htm new file mode 100644 index 0000000000..5aee1a1859 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-04.htm @@ -0,0 +1,4 @@ +Master Felix:
+Did you see the first stone tablet in the South of Tower of Insolence?
+I don't know about the Stone of Commune very well. However, Sedrick left this Stone of Commune with me long time ago...
+ Go to the tablet. Then, commune with the first stone tablet! This is all I know now. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-05.htm new file mode 100644 index 0000000000..88e333a2cc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-05.htm @@ -0,0 +1,4 @@ +Master Felix:
+My daughter has come down with Execution Grounds Fever. I need an Ice Cold Flower.
+Even if Sedrick has other plans for you, bring me one and I'll tell you what path to follow. Meet Chef Donath in the north, he'll help you get one.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-06.htm new file mode 100644 index 0000000000..76fd531fba --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/2-06.htm @@ -0,0 +1,7 @@ +Master Felix:
+You saved my daughter's life!
+Sedrick is the only guild member to succeed in this quest.
+Take this stone and commune with the stone tablet, then you'll be able to read the inscriptions on it.
+The legendary Knight is the guardian of the stone tablets. He was cursed and bound to the tablets, and will attack pilgrims.
+Find the first tablet to the south of the Tower of Insolence!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-01.htm new file mode 100644 index 0000000000..d8111a7527 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-01.htm @@ -0,0 +1,5 @@ +Grand Master Sedrick:
+From your wounds, I'd say you've fought with Adil.
+I wondered why we would undertake the pilgrimage when we couldn't even comprehend the inscriptions on the Tablets of Vision. I found out about the Stone of Commune in the ancient texts.
+I hit a wall, and my Stone of Commune was damaged beyond use.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-02.htm new file mode 100644 index 0000000000..bded94c7e1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-02.htm @@ -0,0 +1,4 @@ +Grand Master Sedrick:
+The advance base of the Ketra Orcs is in the northern part of Goddard Castle Town. Meet with Ketra's Messenger Wahkan. You can still change sides.
+Do you remember what a Knight seeks to defend?
+This task is relevant to that! If you fight for one side, you are fighting against the other! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-03.htm new file mode 100644 index 0000000000..89f8a318b0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-03.htm @@ -0,0 +1,4 @@ +Grand Master Sedrick:
+The Varka Silenos stronghold is located in the western section of Goddard Castle Town. Meet with Varka's Messenger Naran Ashanuk. You can still change sides.
+Do you remember what a Knight seeks to defend?
+This task is relevant to that! If you fight for one side, you are fighting against the other! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-04.htm new file mode 100644 index 0000000000..195679747e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-04.htm @@ -0,0 +1,2 @@ +Grand Master Sedrick:
+Go get the Divine Stone of Wisdom either from the Ketra Orcs or the Varka Silenos. Only then will this Stone of Commune work. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-05.htm new file mode 100644 index 0000000000..de930d12fa --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-05.htm @@ -0,0 +1,5 @@ +Grand Master Sedrick:
+Did you have to make a sacrifice to get the Divine Stone of Wisdom?
+Did you choose to defend your mission, the Ketra Orcs or the Varka Silenos?
+Sometimes you must make difficult choices.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-06.htm new file mode 100644 index 0000000000..ed8af6db80 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-06.htm @@ -0,0 +1,2 @@ +Grand Master Sedrick:
+ Go to the forth tablet in the north of the Varka Silenos Camp. Don't forget your new friendship or your sacrifice. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-07.htm new file mode 100644 index 0000000000..7bfb440f27 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-07.htm @@ -0,0 +1,7 @@ +Grand Master Sedrick:
+The Orc shaman Tarkai recently gave me instructions on how to activate the Stone of Commune.
+The Ketra Orcs and the Varka Silenos both possess and worship magical fragments called the Divine Stone of Wisdom.
+You need one of these fragments to restore power to the Stone of Commune! To get it, you'll have to win their trust.
+Which side will you get it from?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-08.htm new file mode 100644 index 0000000000..092a85d856 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/3-08.htm @@ -0,0 +1,2 @@ +Grand Master Sedrick:
+The Stone of Commune is whole once again! You can feel it, right? Take it and go to the forth tablet in the north of the Varka Silenos Camp. But don't forget. The works you've done to get this... and the lessons from your trials! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-01.htm new file mode 100644 index 0000000000..9b939892c1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-01.htm @@ -0,0 +1,3 @@ +Eric Ramsheart:
+Finally, someone shows up! I knew it would happen sooner or later!
+Do you know what you're fighting for? If so, put your conviction onto your sword and kill this seducer of knights! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-010.htm new file mode 100644 index 0000000000..c333b1426c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-010.htm @@ -0,0 +1,8 @@ +Eric Ramsheart:
+ Do you remember the oath you took when you first became a knight? To defend honor at all cost? Do you think the action of Sir Herod, who died a miserable death defending his honor, was a right one? What did you learn from the testimony of trust?
+Trust is what we knights have to give to people! Trust!
+Trust is also faith. You don't betray what you have faith in, nor those who have faith in you. There's only one more thing...
+You must discover how to earn trust from people....
+You probably already know all about this. I shouldn't need to explain it to you...
+Now, ask your last question to the stone tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-011.htm new file mode 100644 index 0000000000..c5cc38b1ec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-011.htm @@ -0,0 +1,7 @@ +Eric Ramsheart:
+Do you remember the oath you took when you first became a knight? To defend honor at all cost? Do you think the actions of Sir Herod, who died a miserable death defending his honor, were right? What did you learn from the testimony of trust?
+Trust is all we knights have to offer!
+Trust also means faith. You don't betray what you have faith in, nor those who have faith in you. There's only one more thing...
+You must discover how to earn trust from people...
+You probably already know all about this. I shouldn't need to explain it to you...
+Now, ask your last question to the stone tablet. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-02.htm new file mode 100644 index 0000000000..173bb0ea9a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-02.htm @@ -0,0 +1,2 @@ +Eric Ramsheart:
+Don't talk to me now! It's too dangerous! Stay away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-03.htm new file mode 100644 index 0000000000..bdf084822b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-03.htm @@ -0,0 +1,4 @@ +Eric Ramsheart:
+............ Damn the bad luck.....! He got away again!
+I think I'm in over my head...!
+.... If only some capable person would offer to help me.... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-04.htm new file mode 100644 index 0000000000..431e08ffa6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-04.htm @@ -0,0 +1,2 @@ +Eric Ramsheart:
+Don't hesitate to kill! This seducer digs its claws into the strongest of hearts! Countless brave knights have been corrupted by the mere whisper of this devil! Don't you have any self-respect? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-05.htm new file mode 100644 index 0000000000..cce2767338 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-05.htm @@ -0,0 +1,2 @@ +Eric Ramsheart:
+You're brave, but this isn't the time for you to fight! Stay away for now! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-06.htm new file mode 100644 index 0000000000..91ce60c602 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-06.htm @@ -0,0 +1,8 @@ +Eric Ramsheart:
+ There is an evil that lives deep within all knights' hearts... It's the spirit that ultimately corrupts knighthood.
+ Beleth is a seducer. His trap lies in the foundation of equality, an absolute virtue! He treats everybody equally. That is, he destroys and corrupts all.
+But, that's not. We're not all equal. From the moment you resolve in your heart to become a protector, all others become either predators, protectors or protected.
+The strength of your commitment is tested daily.
+ The path we walk flows deep with blood and gore. The longer you walk this path, the more that sticks to you, making your feet heavy and your sword dull.
+And that's not the worst of it!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-07.htm new file mode 100644 index 0000000000..567cc942f1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-07.htm @@ -0,0 +1,8 @@ +Eric Ramsheart:
+There is an evil that lives deep within all knights' hearts... It's the spirit that ultimately corrupts knighthood.
+Beleth is a seducer. His trap lies in the foundation of equality, an absolute virtue! He treats everybody equally. That is, he destroys and corrupts all.
+But, we're not all equal. From the moment you resolve in your heart to become a protector, all others become either predators, protectors or protected.
+The strength of your commitment is tested daily.
+The path we walk flows deep with blood and gore. The longer you walk this path, the more that sticks to you, making your feet heavy and your sword dull.
+And that's not the worst of it!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-08.htm new file mode 100644 index 0000000000..cc653d0684 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-08.htm @@ -0,0 +1,2 @@ +Eric Ramsheart:
+I've already given you everything I have to give! Don't listen to me! Get your answer from that stone tablet over there! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-09.htm new file mode 100644 index 0000000000..cc653d0684 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/4-09.htm @@ -0,0 +1,2 @@ +Eric Ramsheart:
+I've already given you everything I have to give! Don't listen to me! Get your answer from that stone tablet over there! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/5-01.htm new file mode 100644 index 0000000000..6bc53c30f6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you near the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/5-02.htm new file mode 100644 index 0000000000..f60f387d99 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/5-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if she were quietly laughing at you...
+You sense the presence of many armed guards protecting the Stone of Commune. They're in the northeastern part of the Valley of Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/5-03.htm new file mode 100644 index 0000000000..727d114ca0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet is futile. The next Stone of Commune can be found in the northeastern part of the Valley of Saints. Kill the guardians and take their Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/6-01.htm new file mode 100644 index 0000000000..32d1472dd0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The hieroglyphs on the tablet are indecipherable. The Guardians of Forbidden Knowledge have the Stone of Commune you need to access this tablet. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/6-02.htm new file mode 100644 index 0000000000..b75f2b219c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/6-03.htm new file mode 100644 index 0000000000..7bf4fb773a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if she were quietly laughing at you...
+Suddenly you sense the presence of a knight named Adil, he who gave up everything for what he desired... Victory!
+He waits inside the Wall of Argos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/6-04.htm new file mode 100644 index 0000000000..f3b758cd98 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/6-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet is futile.
+You must prepare to meet Adil, the corrupt knight, and take the Stone of Commune from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-01.htm new file mode 100644 index 0000000000..c1fc88f7b4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+As you near the Tablet of Vision, you sense a presence. Could it be someone you've learned about in the past?
+Might it be that you know the tale of the guardian of this tablet? Thoughts race through your mind. Have you read the book about Knight Adil?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-02.htm new file mode 100644 index 0000000000..d7075085e4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+A heavy sensation grips you tightly. The one who sacrificed everything for victory! Victory in battle was his only desire! Can you defeat him? Could you possibly win against such an opponent? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-03.htm new file mode 100644 index 0000000000..d1c6d465a0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The time has come to examine the Tablet of Vision. Adil's attack is coming constantly! Defeat him first! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-04.htm new file mode 100644 index 0000000000..b69d6b66cd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You sense a disturbance near the tablet.
+The time hasn't yet come for you to prove yourself. Come back later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-05.htm new file mode 100644 index 0000000000..2ef7530712 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-06.htm new file mode 100644 index 0000000000..eff17985e5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-06.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a woman's voice.
+A vision appears... A handsome young knight, entering Aden Castle Town with a Stone of Commune!
+Could it be... Sedrick? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-07.htm new file mode 100644 index 0000000000..4655376ff9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/7-07.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet is futile.
+Get the next Stone of Commune from Grand Master Sedrick at Sedrick's Training Hall in Aden Castle Town! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/8-01.htm new file mode 100644 index 0000000000..3565abbe24 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/8-02.htm new file mode 100644 index 0000000000..622364d561 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/8-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A vision appears of a mysterious dark knight...
+A man smiles broadly, because his daughter's illness was cured at Goddard Castle Town. He also has the Stone of Commune! Speak with Master Felix in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/8-03.htm new file mode 100644 index 0000000000..db6f09be22 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/8-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet would be pointless at this time.
+Speak with Master Felix in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/9-01.htm new file mode 100644 index 0000000000..6f8d53f21b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/9-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet lies still as if there was no change.
+The correct Stone of Commune is obtainable at the Imperial Tomb or the Shrine of the Loyal. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/9-02.htm new file mode 100644 index 0000000000..0012a65bef --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/9-03.htm new file mode 100644 index 0000000000..65797b2ec6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/9-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+A sharp blast of knowlege courses through your cranium! A vision of a black knight appears...
+Sedrick was defeated! The last Stone of Commune...
+It was the black knight who corrupted Adil! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/9-04.htm new file mode 100644 index 0000000000..cc17ed7377 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/9-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. The next Stone of Commune is in the Forest of the Dead in Rune Territory.
+The horror of Sedrick's defeat is burned into my memory. Can I defeat the black knight? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/Q00070_SagaOfThePhoenixKnight.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/Q00070_SagaOfThePhoenixKnight.java new file mode 100644 index 0000000000..6cf39926b4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00070_SagaOfThePhoenixKnight/Q00070_SagaOfThePhoenixKnight.java @@ -0,0 +1,105 @@ +/* + * 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.Q00070_SagaOfThePhoenixKnight; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Phoenix Knight (70) + * @author Emperorc + */ +public class Q00070_SagaOfThePhoenixKnight extends AbstractSagaQuest +{ + public Q00070_SagaOfThePhoenixKnight() + { + super(70); + _npc = new int[] + { + 30849, + 31624, + 31277, + 30849, + 31631, + 31646, + 31647, + 31650, + 31654, + 31655, + 31657, + 31277 + }; + Items = new int[] + { + 7080, + 7534, + 7081, + 7485, + 7268, + 7299, + 7330, + 7361, + 7392, + 7423, + 7093, + 6482 + }; + Mob = new int[] + { + 27286, + 27219, + 27278 + }; + classid = new int[] + { + 90 + }; + prevclass = new int[] + { + 0x05 + }; + npcSpawnLocations = new Location[] + { + new Location(191046, -40640, -3042), + new Location(46087, -36372, -1685), + new Location(46066, -36396, -1685) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-01.htm new file mode 100644 index 0000000000..d05bf1f395 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-01.htm @@ -0,0 +1,4 @@ +Master Sinden:
+When the Elder told me of a new guardian of the Mother Tree, I thought of you.
+I've seen a lot here in Aden. We should talk.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-010.htm new file mode 100644 index 0000000000..16369acbd4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-010.htm @@ -0,0 +1,3 @@ +Master Sinden:
+You haven't recovered yet. Come back later.
+(Only a character of level 76 or above is allowed to do a class transfer. Do not abandon quest before transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-02.htm new file mode 100644 index 0000000000..a8baf9590e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-02.htm @@ -0,0 +1,4 @@ +Master Sinden:
+This is too dangerous for you.
+Brother, don't be too proud! This pilgrimage is the path of legend. No one knows the danger that lies ahead. Come see me when you are better prepared!
+(This quest may only be undertaken by a Temple Knight of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-03.htm new file mode 100644 index 0000000000..f2a6e6cfd7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-03.htm @@ -0,0 +1,4 @@ +Master Sinden:
+This journey may uncover some shameful parts of our Elven history.
+Read the legend in this book about the guardian of the Mother Tree who vowed to stop this pilgrimage. He felt an Elf should always protect the Mother tree and only help other Elves.
+Meet with Master Bronwyn, a former guardian. He went into seclusion after relinquishing the fight against Humans. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-04.htm new file mode 100644 index 0000000000..8002cac1bd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-04.htm @@ -0,0 +1,2 @@ +Master Sinden:
+Meet with Master Bronwyn of Goddard Castle Town to begin the pilgrimage! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-05.htm new file mode 100644 index 0000000000..bc375efcef --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-05.htm @@ -0,0 +1,4 @@ +Master Sinden:
+The highest honor amongst Elves is to be a guardian of the Mother Tree. However, we are destined to leave the Mother Tree eventually. You sense this as well since you've been fighting so long.
+Here many people gather and live preparing the future. We are saddened not to have your skills to protect the Mother Tree, but I feel you could better serve us by going on a pilgrimage that has long been forbidden. Will you do it?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-06.htm new file mode 100644 index 0000000000..d049390cb8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-06.htm @@ -0,0 +1,4 @@ +Master Sinden:
+Have you learned much?
+I can't easily forget our past. I understand my limitations. Let me help you to find the right path.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-07.htm new file mode 100644 index 0000000000..b97602b72e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-07.htm @@ -0,0 +1,2 @@ +Master Sinden:
+You're no longer an ordinary Elven Knight! The Mother Tree you're protecting symbolizes the world that produced the tree. You're also guarding that world. From now on, live your life according to what you feel is right. That is the will of Eva! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-08.htm new file mode 100644 index 0000000000..5e4a353e4f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-08.htm @@ -0,0 +1,4 @@ +Master Sinden:
+You're no longer an ordinary Elven Knight! The Mother Tree you're protecting symbolizes the world that produced the tree. You're also guarding that world.
+You need more experience!
+(Only a character of level 76 or above is allowed to transfer class. Don't abandon quest before completing transfer!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-09.htm new file mode 100644 index 0000000000..b97602b72e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/0-09.htm @@ -0,0 +1,2 @@ +Master Sinden:
+You're no longer an ordinary Elven Knight! The Mother Tree you're protecting symbolizes the world that produced the tree. You're also guarding that world. From now on, live your life according to what you feel is right. That is the will of Eva! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-01.htm new file mode 100644 index 0000000000..432138c57f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-01.htm @@ -0,0 +1,4 @@ +Chef Donath:
+ What can I help you with? Ice of purity? What is that?
+ What? You mean from the ancient Elven book of recipes? Oh, that! You must've been sent by Elven Master Bronwyn!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-02.htm new file mode 100644 index 0000000000..fc90ec53e3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-02.htm @@ -0,0 +1,3 @@ +Chef Donath:
+You haven't obtained the ingredients yet? Without an ice crystal and the fish, I can't make the ice of purity!
+ Ask Chef Jeremy about the ice crystal, and you'll have to look for the fat white fish on your own. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-03.htm new file mode 100644 index 0000000000..559b084c6a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-03.htm @@ -0,0 +1,5 @@ +Chef Donath:
+ You brought the ice crystal and the fish?
+This fish is supposed to contain the water of the beginning. Thus, you can get the water which supposedly flowed from the Mother Tree at the beginning of time if you carefully distilled the juice of this fish.
+ When we let it flow over this ice crystal...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-04.htm new file mode 100644 index 0000000000..4287d7d710 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-04.htm @@ -0,0 +1,2 @@ +Chef Donath:
+I already gave you the ice of purity. Isn't Master Bronwyn waiting for you? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-05.htm new file mode 100644 index 0000000000..6b56c38c82 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-05.htm @@ -0,0 +1,4 @@ +Chef Donath:
+ Oh, I see. Once one had to go to the land of ice to obtain it. But now, it's possible to make it here.
+ I can do it. First of all, bring me the legendary food material, ice crystal and a fat white fish.
+You can get the ice crystal from Chef Jeremy. He'll likely want something in return. Who knows? He may ask you to fight a yeti! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-06.htm new file mode 100644 index 0000000000..6551f2c16d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/1-06.htm @@ -0,0 +1,3 @@ +Chef Donath:
+ Here is the ice of purity made with the purest of water. Long ago, while seeking high quality water, I asked Master Bronwyn for advice. He taught me this method. First you must find the purest water.
+ Since I couldn't find the ice crystal on my own, I put aside the information for later use. Now, return to Master Bronwyn. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-01.htm new file mode 100644 index 0000000000..054d1077c2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-01.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You sense someone's presence as you approach. The seal that binds Panacea, the withered Mother Tree.
+We Elves brought this curse on ourselves.
+Could that actually be the tablet there?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-02.htm new file mode 100644 index 0000000000..170a0187fc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Suddenly, you're paralyzed! You can barely breathe! Order of Tetrarch, Mask of Guardian! Perished Elves of Light! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-03.htm new file mode 100644 index 0000000000..22517a67f2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+Have a talk with Kastian here. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-04.htm new file mode 100644 index 0000000000..d4f7cb6db6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-04.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+You feel a presence as you approach the tablet.
+There's a disturbance going on somewhere. Best not to get involved.
+Wait and see what happens. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-05.htm new file mode 100644 index 0000000000..d247f92ca6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you draw near the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-06.htm new file mode 100644 index 0000000000..cc1c9a9d4b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-06.htm @@ -0,0 +1,7 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. It seems that I heard someone laughing.
+The man said. "One more hero you wanted is born here again."
+A lady with blue clothes answered. "No, he is just a baby who starts toddling. But, he won't be only under his mother's protection anymore"
+A goddess engraved on the way of pilgrimage like this: You are free beings. Yoke called Race, Negligence called Stability. The Elf that got hurt by betrayal,closed the door to the world and stopped breathing. The Mother Tree being rotten.
+A voice is heard from the head.
+Baby, you are now ready to help me. Then, go back to Aden and put an end to your pilgrimage. In my Temple, you will keep my honor. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-07.htm new file mode 100644 index 0000000000..a1f0fea982 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Go back to Master Sinden of Aden Castle Town and put an end to your pilgrimage. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/11-01.htm new file mode 100644 index 0000000000..a1c3607f56 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/11-01.htm @@ -0,0 +1,5 @@ +Priest Cerenas:
+Are you the pilgrim that I've been expecting? I heard about a long-sealed Elven pilgrim being released recently, but I certainly didn't expect to meet him!
+You must be here for the Stone of Commune. If I remember correctly, you should be getting the location of the next stone from the Tablet of Vision, right?
+Sorry, but this one belongs to me and you can't have it!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/11-02.htm new file mode 100644 index 0000000000..4ba9fa2889 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/11-02.htm @@ -0,0 +1,3 @@ +Priest Cerenas:
+ If you enter the Imperial Tomb, or fight in the Shrine of the Loyal near the Wall of Argos, you will be able to meet the Archon or Inferiors of Halisha. You can get this stone if you defeat them.
+Do you understand? If you want this stone, you need to defeat Halisha's Inferiors or Archon. The Stone of Commune will let you know where the fifth tablet is. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/11-03.htm new file mode 100644 index 0000000000..9627443ca4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/11-03.htm @@ -0,0 +1,4 @@ +Priest Cerenas :
+This is the material that I use for my study. Because the power of Goddess Eva and other powers are swriling in the stone...
+And another reason is that this Stone of Commune is not impossible to get. Those who have this Stone of Commune are Demon Halisha's Inferiors. If you enter the Imperial Tomb, or fight in the Shrine of the Loyal near the Wall of Argos, you will be able to meet the Archon or Inferiors of Halisha. You can get this stone if you defeat them.
+Do you understand? If you want this stone, you need to defeat Halisha's Inferiors or Archon. The Stone of Commune will let you know where the fifth tablet is. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-01.htm new file mode 100644 index 0000000000..c8aaa20315 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-01.htm @@ -0,0 +1,5 @@ +Master Bronwyn:
+ ... journey of the pilgrimage? Are you saying there is someone who still does that now? How surprising...! But, you can't leave for the journey of the pilgrimage now. I can't give you the blessing.
+Originally, I'm supposed to give back the stone of blessing to the one that is taking the journey, but I can't give it back to you now.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-02.htm new file mode 100644 index 0000000000..85c3a02860 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-02.htm @@ -0,0 +1,2 @@ +Master Bronwyn:
+First I need some Pure Ice. Chef Donath in the hot springs area of Goddard Territory knows how to find some. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-03.htm new file mode 100644 index 0000000000..18b1e8954e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-03.htm @@ -0,0 +1,5 @@ +Master Bronwyn:
+Pure Ice! I didn't know you could still get it. With this I can restore life to the stone of blessing!
+This pilgrimage started when the goddess Eva sent young Elves to explore and experience the outside world. Other guilds now use it as a test to find out who's the most capable.
+Now, you must visit the six tablets. The stone of blessing, or Stone of Commune, will lead you to the tablets.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-04.htm new file mode 100644 index 0000000000..40c2a14f2a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-04.htm @@ -0,0 +1,2 @@ +Master Bronwyn:
+Pilgrim of goddess, you still have not finished the pilgrimage. Go to the first stone tablet in the South of Tower of Insolence \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-05.htm new file mode 100644 index 0000000000..bb69999e74 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-05.htm @@ -0,0 +1,4 @@ +Master Bronwyn:
+To restore life to the stone of blessing, I need the Pure Ice and the breath of the ancestors. I can get the latter, but the Pure Ice...
+Head north to the hot springs region of Goddard Territory and meet with Chef Donath, the best chef in the land. He can help you find some, if he's the best chef as rumor has it.
+Or...oh, never mind. That's impossible. Find him. It's your only hope. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-06.htm new file mode 100644 index 0000000000..b9cc3bf762 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/2-06.htm @@ -0,0 +1,4 @@ +Master Bronwyn:
+Please wait. After I heat the Pure Ice and extract a drop, I can restore the stone of blessing.
+Now it contains the power of the goddess Eva. Find the first stone tablet south of the Tower of Insolence to begin your pilgrimage. While holding this stone, examine the tablet. The stone will take care of the rest.
+You're now a pilgrim of the goddess! May your path always be blessed. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-01.htm new file mode 100644 index 0000000000..94ca16b750 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-01.htm @@ -0,0 +1,4 @@ +Master Sinden:
+Panacea speaks the truth. That's why I gave up and came back. We should no longer rely on the great history of our race to guide us.
+Take pride in your heritage, but also understand and accept other races. If you only think of yourself, you can't protect and guide others.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-02.htm new file mode 100644 index 0000000000..f4865b1df3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-02.htm @@ -0,0 +1,4 @@ +Master Sinden:
+The Ketra Orcs are in a territorial war with the Varka Silenos.
+You'll end up fighting against the Varka Silenos if you help the Ketra Orcs. You can always switch sides. Remember, by choosing to fight for one side, you're fighting against the other!
+It's your choice. Now go get the Divine Stone of Wisdom! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-03.htm new file mode 100644 index 0000000000..fb0c0ac772 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-03.htm @@ -0,0 +1,3 @@ +Master Sinden:
+You choose to help the Varka Silenos in their territorial war with the Ketra Orcs? You can always switch sides.
+Remember though, by choosing to fight for one side, you are fighting against the other! Now go get the Divine Stone of Wisdom! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-04.htm new file mode 100644 index 0000000000..64f45922ea --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-04.htm @@ -0,0 +1,4 @@ +Master Sinden:
+You can't win their trust with force, you have to earn it.
+Approach them patiently with a sincere heart.
+Return when you have the Divine Stone of Wisdom! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-05.htm new file mode 100644 index 0000000000..92cc045f04 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-05.htm @@ -0,0 +1,5 @@ +Master Sinden:
+The Divine Stone of Wisdom!
+Panacea said entrusting the lesser Orcs with the key of binding would end up helping our enemies!
+Should we have acted differently?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-06.htm new file mode 100644 index 0000000000..f3ec18079e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-06.htm @@ -0,0 +1,2 @@ +Master Sinden:
+ Go to the fourth tablet in the north of the Varka Silenos Camp. Your travel of the pilgrimage hasn't finished yet. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-07.htm new file mode 100644 index 0000000000..cd3ae55feb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-07.htm @@ -0,0 +1,6 @@ +Master Sinden:
+Panacea had a fight with his younger brother, Kastien, who felt it wasn't right to stop the pilgrimage since it was established by the goddess Eva. He gave me the Stone of Commune and sealed it so that only by helping other races could it be used.
+The key of binding was divided in two and given to the lesser Orcs and the Silenos, who founded the Ketra Orc and Varka Silenos tribes.
+Which side will you get the key from?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-08.htm new file mode 100644 index 0000000000..faf6066e47 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/3-08.htm @@ -0,0 +1,4 @@ +Master Sinden:
+ I learned from a preacher in the wasteland that I can communicate with lesser Orcs or Silenos.
+Living beings may have different goals but we all share the same origin!
+The Stone of Commune has been activated! Take it and go to the fourth tablet in the north of the Varka Silenos Camp. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-01.htm new file mode 100644 index 0000000000..67535d2722 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-01.htm @@ -0,0 +1,3 @@ +Starling Knight Kastien:
+That's the darkness we Elves bear from our negligence! It allowed the Humans to betray us.
+Brother, we must succeed for the sake of our future! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-010.htm new file mode 100644 index 0000000000..e47011162c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-010.htm @@ -0,0 +1,7 @@ +Starling Knight Kastien:
+The pride that comes from leading all the races.
+Elves had to hold a vision for the future. That's why the goddess Eva created this pilgrimage.
+The betrayal caused us to separate ourselves from others, but we can't go on this way.
+Use this stone to commune with the tablet. Then you'll know what the goddess wanted.
+Good luck, maybe we'll meet again.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-011.htm new file mode 100644 index 0000000000..4308993f9a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-011.htm @@ -0,0 +1,5 @@ +Starling Knight Kastien:
+The pride that comes from leading all the races.
+Elves had to hold a vision for the future. That's why the goddess Eva created this pilgrimage.
+The betrayal caused us to separate ourselves from others, but we can't go on this way.
+Use this stone to commune with the tablet. Then you'll know what the goddess wanted. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-02.htm new file mode 100644 index 0000000000..25b063898c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-02.htm @@ -0,0 +1,2 @@ +Starling Knight Kastien:
+Stand back! This isn't your fight! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-03.htm new file mode 100644 index 0000000000..ac6fb81954 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-03.htm @@ -0,0 +1,3 @@ +Starling Knight Kastien:
+I missed again!
+I can't do this alone, I need help. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-04.htm new file mode 100644 index 0000000000..9dd29117f5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-04.htm @@ -0,0 +1,2 @@ +Starling Knight Kastien:
+Why are you hesitating? Raise your sword, Knight, and help break the chains that bind us to this darkness! Let's fight this together! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-05.htm new file mode 100644 index 0000000000..0d3a295736 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-05.htm @@ -0,0 +1,2 @@ +Starling Knight Kastien:
+Can't you see I'm busy! Stand back! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-06.htm new file mode 100644 index 0000000000..8662ef3fb6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-06.htm @@ -0,0 +1,6 @@ +Starling Knight Kastien:
+The devil is defeated!
+My brother's chains are broken.
+That beast represented the wall we Elves built to hide our broken pride. After being betrayed, we had to separate ourselves from other races.
+That's not our true nature. As a Knight, you must understand about the true pride of the Elves.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-07.htm new file mode 100644 index 0000000000..5c4be5a649 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-07.htm @@ -0,0 +1,6 @@ +Starling Knight Kastien:
+The devil is defeated!
+My brother's chains are broken.
+That beast represented the wall we Elves built to hide our broken pride. After being betrayed, we had to separate ourselves from other races.
+That's not our true nature. As a Knight, you must understand about the true pride of the Elves.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-08.htm new file mode 100644 index 0000000000..c12d8254da --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-08.htm @@ -0,0 +1,3 @@ +Starling Knight Kastien:
+You've already broken the chains. You don't need to join this fight.
+Find the answers you seek from the tablet! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-09.htm new file mode 100644 index 0000000000..a218046a10 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/4-09.htm @@ -0,0 +1,2 @@ +Starling Knight Kastien:
+I can't help you anymore. Find the answers you seek from the tablet! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/5-01.htm new file mode 100644 index 0000000000..14ac968fa7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/5-02.htm new file mode 100644 index 0000000000..5b0c4d901e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/5-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if the wind were singing...
+You sense that the stone is being held by sword-clad guards in the southern Valley of the Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/5-03.htm new file mode 100644 index 0000000000..836237184e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet is futile. The next Stone of Commune is being held by the Guardians of Forbidden Knowledge in the southern Valley of the Saints. Kill them and take it! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/6-01.htm new file mode 100644 index 0000000000..c2a4ac6a60 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Hieroglyphics are engraved on the tablet. The Stone of Commune for this tablet is being held by one of the Guardians of Forbidden Knowledge. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/6-02.htm new file mode 100644 index 0000000000..3109c41434 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/6-03.htm new file mode 100644 index 0000000000..1a5bc0287b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a woman's voice.
+Suddenly the noble face of a heroic Elven warrior appears before you. Betrayed by Humans, and then seemingly the entire world, he closed his mind and sealed the Elven holy land!
+He is waiting at the next tablet, near the border to the Northern Post. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/6-04.htm new file mode 100644 index 0000000000..380a06dc7b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/6-04.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Communing further with this tablet would be futile.
+Now you must confront Soul Trap Elf Panacea. Prepare for battle! + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-01.htm new file mode 100644 index 0000000000..c4dbf4f80c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+As you near the Tablet of Vision, you sense a presence. It's a familiar one... Could it be the guardian of the Mother Tree?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-02.htm new file mode 100644 index 0000000000..0fd9d3845c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+I feel his cold sense of abandonment and betrayal. Do my thought deceive me?
+The anger and sense of loss are overwhelming! Who would so cruelly block the way of pilgrims for centuries? Can I defeat him? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-03.htm new file mode 100644 index 0000000000..004d029dc5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The time has come to examine the Tablet of Vision. Panacea's attack continues! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-04.htm new file mode 100644 index 0000000000..5811331d54 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You sense a disturbance near the tablet.
+The time hasn't yet come for you to prove yourself. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-05.htm new file mode 100644 index 0000000000..dc6e2437a2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-06.htm new file mode 100644 index 0000000000..44ffaf5c72 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-06.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a woman's voice.
+A vision appears of an indecisive Knight...
+He turned back because he was persuaded by Panacea. He looks unfamiliar but common.
+He is Master Sinden of Aden Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-07.htm new file mode 100644 index 0000000000..9907df06eb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/7-07.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet is futile.
+Get the next Stone of Commune from Elven Master Sinden at Sedrick's Training Hall in Aden Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/8-01.htm new file mode 100644 index 0000000000..35d6e6f742 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/8-02.htm new file mode 100644 index 0000000000..5dc909cfec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/8-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A vision appears of a mysterious black knight...
+An Elven Tetrarch holding the Stone of Commune, and a man in agony...
+Find the Elven Tetrarch Cerenas in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/8-03.htm new file mode 100644 index 0000000000..b89ec276a8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/8-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Fiddling with this tablet further is futile.
+Find the Priest Cerenas, Elven Tetrarch in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/9-01.htm new file mode 100644 index 0000000000..7c4c2c2b6a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/9-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+The Stone of Commune that can access this tablet can be found at the Wall of Argos or the Imperial Tomb. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/9-02.htm new file mode 100644 index 0000000000..e9c285465c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/9-03.htm new file mode 100644 index 0000000000..b3c3ab5a0a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/9-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+A sharp blast of knowlege courses through your cranium! A vision appears of a black knight!
+And there is your old comrade Panacea! What is that substance holding him?! Chains that have bound him!
+You sense a power that rejects change because of a desire for rest...
+You sense that weariness coming over you. The next Stone of Commune is in the northern Forsaken Plains! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/9-04.htm new file mode 100644 index 0000000000..3ee19ad569 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/9-04.htm @@ -0,0 +1 @@ +Tablet of Vision:
You do not need this tablet anymore. The next Stone of Commune is at the northern part of the Prairie of Oblivion.
Cannot forget the plight of my friend Panacea! What was it? It seems not only familiar, but thrilling. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/Q00071_SagaOfEvasTemplar.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/Q00071_SagaOfEvasTemplar.java new file mode 100644 index 0000000000..5e4c084fdf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00071_SagaOfEvasTemplar/Q00071_SagaOfEvasTemplar.java @@ -0,0 +1,105 @@ +/* + * 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.Q00071_SagaOfEvasTemplar; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of Eva's Templar (71) + * @author Emperorc + */ +public class Q00071_SagaOfEvasTemplar extends AbstractSagaQuest +{ + public Q00071_SagaOfEvasTemplar() + { + super(71); + _npc = new int[] + { + 30852, + 31624, + 31278, + 30852, + 31638, + 31646, + 31648, + 31651, + 31654, + 31655, + 31658, + 31281 + }; + Items = new int[] + { + 7080, + 7535, + 7081, + 7486, + 7269, + 7300, + 7331, + 7362, + 7393, + 7424, + 7094, + 6482 + }; + Mob = new int[] + { + 27287, + 27220, + 27279 + }; + classid = new int[] + { + 99 + }; + prevclass = new int[] + { + 0x14 + }; + npcSpawnLocations = new Location[] + { + new Location(119518, -28658, -3811), + new Location(181215, 36676, -4812), + new Location(181227, 36703, -4816) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-01.htm new file mode 100644 index 0000000000..ac9d2da139 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-01.htm @@ -0,0 +1,5 @@ +Master Raien:
+So you're the Great Swordsinger I've heard about.
+You've comforted many a soldier with your songs of the glory of Eva.
+Some say they embody the wisdom of Eva, as the songs of a Swordsinger are taught by the goddess. Would you like to hear the story?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-010.htm new file mode 100644 index 0000000000..aecd18e205 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-010.htm @@ -0,0 +1,3 @@ +Master Raien:
+You must continue your training.
+(Class transfer is allowed only for characters of level 76 or above. Do not abandon quest before class transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-02.htm new file mode 100644 index 0000000000..ecccbabb6d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-02.htm @@ -0,0 +1,3 @@ +Master Raien:
+You must be well qualified to understand the way. I don't think you should do this. I don't think you can talk to him.
+I don't even want to think about him anymore. (This quest may only be undertaken by characters of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-03.htm new file mode 100644 index 0000000000..4d19a8e2c7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-03.htm @@ -0,0 +1,3 @@ +Master Raien:
+Don't mind his grotesque beard and ugly smile, Blacksmith Feynn of Goddard Castle Town knows of the source of Eva's songs.
+Take this book, it tells of the fall of a Swordsinger. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-04.htm new file mode 100644 index 0000000000..2add772a7e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-04.htm @@ -0,0 +1,2 @@ +Master Raien:
+Blacksmith Feynn of Goddard Castle Town knows of the source of Eva's songs. Find him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-05.htm new file mode 100644 index 0000000000..87fe53c1f9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-05.htm @@ -0,0 +1,5 @@ +Master Raien:
+Goddess Eva's songs and poems gave us intelligence, knowledge and magical power.
+It belonged only to the Elves. The traditional swordsong may be a far cry from its origins after mingling with the Humans, but it is still our tradition.
+The story tells of a tablet that contains the power of the original song. You'll have to solve one problem...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-06.htm new file mode 100644 index 0000000000..21ad37f2c2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-06.htm @@ -0,0 +1,4 @@ +Master Raien:
+I dreamed of your return. Do you understand Eva's will?
+The one who sings her true song is called Eva's Sword Muse.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-07.htm new file mode 100644 index 0000000000..121c2f2ec6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-07.htm @@ -0,0 +1,3 @@ +Master Raien:
+You should know better than I.
+I only need to give you the title you are due, one who sings Eva's swordsong... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-08.htm new file mode 100644 index 0000000000..62f61c22eb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-08.htm @@ -0,0 +1,4 @@ +Master Raien:
+You should know better than I.
+Your soul may be ready, but your body is lacking.
+(Class transfer is allowed only for characters of level 76 or above. Do not abandon quest before class transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-09.htm new file mode 100644 index 0000000000..799ab59fdb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/0-09.htm @@ -0,0 +1,2 @@ +Master Raien:
+Henceforth, you shall be known as a Sword Muse! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-01.htm new file mode 100644 index 0000000000..a0c41325c4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-01.htm @@ -0,0 +1,5 @@ +Chef Donath:
+ What can I help you with? What? Bitter Cold Beer? I've been getting a lot of requests for legendary dishes lately! Such is the plight of a great chef!
+Quality is always in demand! Listen!
+ You'll need to bring me the ingredients on your own. Understand?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-02.htm new file mode 100644 index 0000000000..0415341b06 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-02.htm @@ -0,0 +1,3 @@ +Chef Donath:
+ You haven't found the ingredients yet? Before this oil burns, you need to bring me a fat white fish and an ice crystal!
+Ask Chef Jeremy regarding the ice crystal. You'll have to find the fish on your own. Hurry! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-03.htm new file mode 100644 index 0000000000..fbdf4d0fe6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-03.htm @@ -0,0 +1,6 @@ +Chef Donath:
+ Oh, you brought the ice crystal and the fish!
+Great! Then, I'll make Bitter Cold Beer. According to legend, the original Bitter Cold Beer had a slightly fishy aroma. To get that, you need to roast this fish and capture the smell of it in the ice... In other words, cut up the fish and roast only its fins and bones...
+ Chop the ice crystal into small pieces. A regular knife freezes the moment it touches the ice crystal. I use a special knife.
+ This knife was made by the top maestro of the Black Anvil guild. He actually collected starlight and pummeled it! Making this beer is no easy task!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-04.htm new file mode 100644 index 0000000000..43ab955c90 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-04.htm @@ -0,0 +1,4 @@ +Chef Donath:
+Why are you still here? I've done everything I could do!
+ I just want to have my food enjoyed by as many people as possible, to give them joy in their lives!
+Now, take the beer to the Dwarf! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-05.htm new file mode 100644 index 0000000000..0c54eb130e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-05.htm @@ -0,0 +1,3 @@ +Chef Donath:
+ Now, I'll tell you what I'll need. Most important is the legendary ice crystal! Chef Jeremy will know where to get one. Knowing Jeremy, he'll want something in return.
+ You'll also need to bring a fat, white fish. I simply can't make Bitter Cold Beer without it! Bring these things to me. I'll get the fire ready... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-06.htm new file mode 100644 index 0000000000..c6ded3a5b2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/1-06.htm @@ -0,0 +1,5 @@ +Chef Donath:
+ Great! Now put the ice crystals into the beer and let the aroma of the fish just...
+And here we go! Bitter Cold Beer! As a bonus, I'll fry up the left-over fish for you to have with your beer. Beer and fried fish are excellent together!
+I don't know why you're doing this, but I hope the Dwarf enjoys it! It's just a pitcher of beer, but it took a lot of effort!
+Now, take it and go! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-01.htm new file mode 100644 index 0000000000..95fc0b6b51 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-01.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+As you approach the tablet, you sense a presence. Will you be able to overcome the temptation...?
+Hey, where did she go?
+A stage opens to thunderous applause, but you are the only audience...
+.....There is a tablet in front of you. Was that an illusion? A voice seems to float by on the breeze.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-02.htm new file mode 100644 index 0000000000..7661492e62 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+A vision appears of the devil you saw before... But who is that lady fighting him now? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-03.htm new file mode 100644 index 0000000000..623375f608 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is quiet.
+Talk with Moon Voice Irene. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-04.htm new file mode 100644 index 0000000000..38cae2f9a0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You feel a presence as you approach the tablet.
+There's a disturbance going on somewhere. Best not to get involved. It's too early to start fighting. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-05.htm new file mode 100644 index 0000000000..3b7b8e62d0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune emits light as you approach the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-06.htm new file mode 100644 index 0000000000..015bc7d837 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-06.htm @@ -0,0 +1,8 @@ +Tablet of Vision:
+Vast amounts of knowledge rush into your mind. You hear the sound of distant laughter.
+A voice whispers, "Another Hero is born."
+The lady in blue disagrees, but he doesn't need his mother's protection anymore.
+Song is the key. A song is complete only when there is a singer and a listener.
+The singer lives to heal the heart of the listener through song. This is the lost magic.
+You can sing Eva's song.
+Go back to Master Raien of Aden Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-07.htm new file mode 100644 index 0000000000..2070bb999f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You can't commune with this tablet. Meet Master Raien of Aden Castle Town and finish the pilgrimage. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/11-01.htm new file mode 100644 index 0000000000..4323622184 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/11-01.htm @@ -0,0 +1,9 @@ +Priest Cerenas:
+The Stone of Commune, eh? I'll bet you're looking for the tablet too, aren't you?
+Ah yes, the song of the Swordsinger... Surely you've heard the story of the legendary singer who followed the same path!? What was his name? Biel or something...?
+What? You fought him?
+So the stories were true! The merciful heart of Eva must have called you to help the one who has lost his way...
+Legend says that the goddess herself watches over Elves on that pilgrimage! That's you!
+If my memory serves, you'll find the location of the next stone from the tablet.
+Unfortunately, this one is mine and you can't have it!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/11-02.htm new file mode 100644 index 0000000000..d6477060b2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/11-02.htm @@ -0,0 +1,2 @@ +Priest Cerenas:
+To get the stone you must fight the Archon of Halisha in the Four Sepulchers or at the Shrine of the Loyal. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/11-03.htm new file mode 100644 index 0000000000..d42f5cd543 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/11-03.htm @@ -0,0 +1,5 @@ +Priest Cerenas:
+Eva would be quite displeased!
+My only function is to guide pilgrims on their way.
+You've already been on this path for a while, and seen several tablets. You are truly a pilgrim.
+This stone will prove your victory over the Archon of Halisha and his minions. Find them in the Four Sepulchers or in the Shrine of the Loyal near the Wall of Argos. If you fight the enemies and collect the marks of Halisha 700 or more, you can see the Archon of Halisha. You must slaughter the Archon of Halisha! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-01.htm new file mode 100644 index 0000000000..abaef1df9f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-01.htm @@ -0,0 +1,5 @@ +Blacksmith Feynn:
+ Ha ha! So you're here for the teachings of Eva, eh? Hmm... OK, but it won't come cheap! Get it? What's in it for me?
+ No, I don't want your money or gemstones... Nothing like that! I've got all of that kind of stuff I need, thanks...
+What can you offer the man who has everything?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-02.htm new file mode 100644 index 0000000000..0034eb2df2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-02.htm @@ -0,0 +1,4 @@ +Blacksmith Feynn:
+ What good is a song without a beer?
+Bring me a Bitter Cold Beer from Chef Jonas in Goddard Castle Town...
+That would even make the squealing of a pig sound like a beautiful aria! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-03.htm new file mode 100644 index 0000000000..cffa473e9a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-03.htm @@ -0,0 +1,7 @@ +Blacksmith Feynn:
+ Huh?
+Is that a beer?! Amazing! You really brought it! I thought you were just a weakling entertainer!
+I'm impressed! I guess if I live long enough, I'll see everything! You even brought snacks! You really take care of your customers, don't you?
+You passed the beer test with flying colors, but now comes the hard part!
+ I haven't heard you sing yet! Sing me a song and then I'll decide whether or not to tell you how to get the stone of pilgrimage!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-04.htm new file mode 100644 index 0000000000..fac90f3f9f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-04.htm @@ -0,0 +1,4 @@ +Blacksmith Feynn:
+Huh? Have you forgotten where the stone tablet is already? I told you, it's in the southern part of the Tower of Insolence. Got it?
+Do you have the Stone of Commune? Don't drop it on the way there!
+You have a long journey ahead. Be careful! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-05.htm new file mode 100644 index 0000000000..480c302176 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-05.htm @@ -0,0 +1,6 @@ +Blacksmith Feynn:
+You're really going to sing? This should be hilarious!
+Honestly, sometimes I just don't get you Elves! We Dwarves never listen to music sober! It's like eating pancakes without syrup!
+Have you ever tasted beer? From the moment it hits your tongue, a cold tingle shoots through you like an electric current... straight to your brain! Bring me some of the legendary beer and I'll listen to you sing!
+What do you say? I'll bet Chef Donath in the Hot Springs area of Goddard can make the legendary Bitter Cold Beer!
+If you get it from him, I'll listen to you sing! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-06.htm new file mode 100644 index 0000000000..c2572d824f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/2-06.htm @@ -0,0 +1,12 @@ +Blacksmith Feynn:
+Wait, let me take a drink first!... Gulp...Gulp...Gulp
+......
+....
+...
+.
+Oh yeah, great song, buddy!
+You passed the test! You know, a while back, a lady wearing a blue dress appeared to me in a dream!
+She said that soon I'd be visited by a singer seeking a test. She told me I should do it.
+Do you know the test? It was respect! To pass the test, the person would do as I asked, no matter how rude my manner was. And, he would sing a song with a sincere heart...
+Here is the Stone of Commune. Take it with you to the Tablet of Vision. The first tablet can be found in the south part of the Tower of Insolence.
+I'll pray that your song becomes popular! Oh, and thanks for the beer! Ha! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-01.htm new file mode 100644 index 0000000000..ad1739a203 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-01.htm @@ -0,0 +1,7 @@ +Beast Herder Tunatun:
+ What? The Stone of Commune?
+Uh... As a matter of fact, yes, I have it! But I can't give it to you!
+Let me explain... For as long as I can remember, I've had but one dream! It was the same every night, but forgotten soon after waking. But recently, I remembered it!
+I dream of being able to communicate with all other intelligent beings! I suppose I'm getting ahead of myself... Basically, I just want everyone to understand each other... And the animals! I've always loved animals and want people to be able to talk with them!
+I believe that this Stone of Commune will lead me there... But, if you really need it, I'll give it to you. Just trade me something of equal value for it.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-02.htm new file mode 100644 index 0000000000..64ba94ab96 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-02.htm @@ -0,0 +1,4 @@ +Beast Herder Tunatun:
+Helping the Ketra Orcs, eh? That's fine. They're currently at war with the Varka Silenos over a piece of land.
+ Honestly, my friend, I don't have a dog in that fight! So do me a favor...
+ If you change your mind, you can go over to the other side. But eventually you should bring me the Divine Stone of Wisdom first. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-03.htm new file mode 100644 index 0000000000..dd3056daea --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-03.htm @@ -0,0 +1,4 @@ +Beast Herder Tunatun:
+Helping the Varka Silenos, eh? That's fine. They're currently at war with the Ketra Orcs over a piece of land.
+ Honestly, my friend, I don't have a dog in that fight! So do me a favor...
+ If you change your mind, you can go over to the other side. But eventually you should bring me the Divine Stone of Wisdom first. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-04.htm new file mode 100644 index 0000000000..05ee38da9e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-04.htm @@ -0,0 +1,3 @@ +Beast Herder Tunatun:
+ Did you bring me the Divine Stone of Wisdom? That stone is proof of friendship. I won't give you this Stone of Commune until you bring me that stone!
+By the way, don't mention my name to anybody! I've got to live with these people after this is over! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-05.htm new file mode 100644 index 0000000000..68978cd3a4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-05.htm @@ -0,0 +1,7 @@ +Beast Herder Tunatun:
+ You've brought the Divine Stone of Wisdom, right?
+ All right. Now, I'll give you the Stone of Commune.
+ Actually, I'm hoping to get two stones of sacred wisdom! One from the Varka Silenos and one from the Ketra Orcs... If I had two stones, I could meet with the chiefs of both tribes!
+ If I could just get them talking, I think we could establish a peace that would let us share our common land to our mutual benefit!
+ Ah, yes! You wanted the Stone of Commune, right?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-06.htm new file mode 100644 index 0000000000..f634aa9314 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-06.htm @@ -0,0 +1,3 @@ +Beast Herder Tunatun:
+ The stone tablet that's linked with the Stone of Commune is located in the northern part of the Varka Silenos Barracks.
+You must find that stone tablet! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-07.htm new file mode 100644 index 0000000000..85e9029d22 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-07.htm @@ -0,0 +1,7 @@ +Beast Herder Tunatun:
+ Ah, yes, the Divine Stone of Wisdom. It's owned by the Ketra Orcs and the Varka Silenos.
+It holds a secret... the ability to communicate between tribes! Not only that, the fact that you have it is proof of your close friendship with them!
+ Although it's more than I can logically hope for, ultimately, it's my hope to communicate not only with animals but also with all other intelligent beings!
+ Bring it to me and I'll give you this Stone of Commune. Which tribe will you get the stone from?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-08.htm new file mode 100644 index 0000000000..ea4896184a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/3-08.htm @@ -0,0 +1,3 @@ +Beast Herder Tunatun:
+ Although it's certainly not my problem, I suppose I should let you in on where the Stone of Commune will take you! The Stone of Commune is linked with the stone tablet on the north of the Varka Silenos Barracks.
+You must find that stone tablet! Meanwhile, I'll study the Divine Stone of Wisdom and try to find what I'm looking for, so that someday all species will be able to communicate with each other! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-01.htm new file mode 100644 index 0000000000..528d912441 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-01.htm @@ -0,0 +1,2 @@ +Moonvoice Irene:
+Songs should be used for healing, not for seduction. Be careful how you use them! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-010.htm new file mode 100644 index 0000000000..73c0366d4f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-010.htm @@ -0,0 +1,5 @@ +Moonvoice Irene:
+You're a great singer!
+Take this Stone of Commune to complete your pilgrimage. I must recover from that attack.
+Hold onto your good heart and always embrace others with Eva's melody. Do not surrender to seduction!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-011.htm new file mode 100644 index 0000000000..084fe1ac80 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-011.htm @@ -0,0 +1,4 @@ +Moonvoice Irene:
+You're a great singer!
+Take this Stone of Commune to complete your pilgrimage. I must recover from that attack.
+Hold onto your good heart and always embrace others with Eva's melody. Do not surrender to seduction! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-02.htm new file mode 100644 index 0000000000..1a72bb96f2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-02.htm @@ -0,0 +1,3 @@ +Moonvoice Irene:
+Now's not a good time!
+This is dangerous, get back! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-03.htm new file mode 100644 index 0000000000..a6b027760d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-03.htm @@ -0,0 +1,2 @@ +Moonvoice Irene:
+He got away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-04.htm new file mode 100644 index 0000000000..5be0bcd9ec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-04.htm @@ -0,0 +1,4 @@ +Moonvoice Irene:
+I'm glad you're here.
+Together we will surely win.
+A trick of the dark arts forces people to listen and applaud. This is not the song of Eva! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-05.htm new file mode 100644 index 0000000000..aade3418c9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-05.htm @@ -0,0 +1,2 @@ +Moonvoice Irene:
+This is not a good time to chat! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-06.htm new file mode 100644 index 0000000000..73a021c062 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-06.htm @@ -0,0 +1,5 @@ +Moonvoice Irene:
+It's gone!
+That creature is trying to corrupt swordsingers.
+A singer doesn't just sing by herself, that would make you lonely! A singer exists for the audience, to make them happy and comfort them when they are sad.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-07.htm new file mode 100644 index 0000000000..571479ed18 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-07.htm @@ -0,0 +1,5 @@ +Moonvoice Irene:
+It's gone!
+That creature is trying to corrupt swordsingers.
+A singer doesn't just sing by herself, that would make you lonely! A singer exists for the audience, to make them happy and comfort them when they are sad.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-08.htm new file mode 100644 index 0000000000..4dd456e3d1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-08.htm @@ -0,0 +1,2 @@ +Moonvoice Irene:
+Sorry, I'm busy now. Go to the stone tablet! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-09.htm new file mode 100644 index 0000000000..5637e7d50d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/4-09.htm @@ -0,0 +1,3 @@ +Moonvoice Irene:
+Why haven't you communed with the stone tablet yet?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/5-01.htm new file mode 100644 index 0000000000..e79b7568a5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/5-02.htm new file mode 100644 index 0000000000..505faa40c5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/5-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if the wind were singing...
+You sense that the next Stone of Commune is being held by warriors beside the western wall in the Valley of the Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/5-03.htm new file mode 100644 index 0000000000..ef9c226273 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet is futile. The next Stone of Commune is being held by the Guardians of Forbidden Knowledge in the Valley of the Saints. Kill the guardians and take the stone! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/6-01.htm new file mode 100644 index 0000000000..c2a4ac6a60 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Hieroglyphics are engraved on the tablet. The Stone of Commune for this tablet is being held by one of the Guardians of Forbidden Knowledge. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/6-02.htm new file mode 100644 index 0000000000..9fd3e409eb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/6-03.htm new file mode 100644 index 0000000000..656a86f61f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/6-03.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a woman's voice.
+You see a vision of a male Elf, singing to thunderous applause!
+You once read about him in a book called "Critique of Biel's Song".
+Could he have the next Stone of Commune?
+He's waiting at the next Tablet of Vision, in the northeast corner of the Ketra Orc Outpost! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/6-04.htm new file mode 100644 index 0000000000..6c0cc1d9be --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/6-04.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+I have nothing to do with this Tablet
+Maybe, I will meet Biel, the cursed songster at the next Tablet.
+The next Tablet of Vision is in the northeast of the Ketra Orc Outpost. Prepare yourself and make haste. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-01.htm new file mode 100644 index 0000000000..ca064ffa99 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-01.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+As you near the Tablet of Vision, you sense a presence. Her desire for love from everyone left her completely alone!
+I read a critique once of the Song of Biel. Can I harmonize with her?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-02.htm new file mode 100644 index 0000000000..901c0175c5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Applause in an empty theater and a stage set for only one... She is truly in a world of her own!
+Eva herself must have sent me here! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-03.htm new file mode 100644 index 0000000000..008e0218ee --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
It is not time to examine the Tablet of Vision. You're the only audience! You may have to pay attention to her song, otherwise... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-04.htm new file mode 100644 index 0000000000..5811331d54 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You sense a disturbance near the tablet.
+The time hasn't yet come for you to prove yourself. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-05.htm new file mode 100644 index 0000000000..59262f7b81 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-06.htm new file mode 100644 index 0000000000..17d0169006 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-06.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Thoughts beyond understanding are seared into your brain. You hear the faint whisper of a woman's voice.
+A vision appears of a man who believes that the thing everyone gave up on is possible.
+He hopes that one day everyone will understand each other! He's the Beast Herder Tunatun in the north of Rune Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-07.htm new file mode 100644 index 0000000000..61917d2ec5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/7-07.htm @@ -0,0 +1 @@ +Tablet of Vision:
You do not need this tablet anymore. Get the next Stone of Commune from Beast Herder Tunatun. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/8-01.htm new file mode 100644 index 0000000000..9aa13f1228 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/8-02.htm new file mode 100644 index 0000000000..a6c58e1b73 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/8-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. I think I saw a man in black armor somewhere...
+I begin to visualize an image of the ElvenTetrarch and he's holding the Stone of Commune. He seems to be agonizing over something...
+Find the Priest Cerenas, Elven Tetrarch in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/8-03.htm new file mode 100644 index 0000000000..b89ec276a8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/8-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Fiddling with this tablet further is futile.
+Find the Priest Cerenas, Elven Tetrarch in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/9-01.htm new file mode 100644 index 0000000000..7c4c2c2b6a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/9-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+The Stone of Commune that can access this tablet can be found at the Wall of Argos or the Imperial Tomb. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/9-02.htm new file mode 100644 index 0000000000..ce592dcac2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/9-03.htm new file mode 100644 index 0000000000..84b297bada --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/9-03.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+A sharp blast of knowlege courses through your cranium! A vision appears of a black knight!
+And there's the demon who tempted Biel!
+It is a sweet but dangerous poison..!
+Why is he following that Elf? And what of the voice of the moon?
+She's headed to the sixth Tablet of Vision, south of Hunters Village, unaware that the demon awaits her there... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/9-04.htm new file mode 100644 index 0000000000..ada1f56037 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/9-04.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. The next Stone of Commune is near the Tablet of Vision that can be found south of Hunters Village.
+ I remember the sweet whisper of temptation from the demon. A song with irresistible magic and no audience to listen to it.
+Find the next tablet now. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/Q00072_SagaOfTheSwordMuse.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/Q00072_SagaOfTheSwordMuse.java new file mode 100644 index 0000000000..adad27190c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00072_SagaOfTheSwordMuse/Q00072_SagaOfTheSwordMuse.java @@ -0,0 +1,105 @@ +/* + * 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.Q00072_SagaOfTheSwordMuse; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Sword Muse (72) + * @author Emperorc + */ +public class Q00072_SagaOfTheSwordMuse extends AbstractSagaQuest +{ + public Q00072_SagaOfTheSwordMuse() + { + super(72); + _npc = new int[] + { + 30853, + 31624, + 31583, + 31537, + 31618, + 31646, + 31649, + 31652, + 31654, + 31655, + 31659, + 31281 + }; + Items = new int[] + { + 7080, + 7536, + 7081, + 7487, + 7270, + 7301, + 7332, + 7363, + 7394, + 7425, + 7095, + 6482 + }; + Mob = new int[] + { + 27288, + 27221, + 27280 + }; + classid = new int[] + { + 100 + }; + prevclass = new int[] + { + 0x15 + }; + npcSpawnLocations = new Location[] + { + new Location(161719, -92823, -1893), + new Location(124355, 82155, -2803), + new Location(124376, 82127, -2796) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-01.htm new file mode 100644 index 0000000000..b60620f575 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-01.htm @@ -0,0 +1,5 @@ +Grand Master Sedrick:
+ You learn quickly! Your skills remind me of Duelist Kaien of Oren!
+ By the way, do you know Kaien? He's the best gladiator ever!
+But I've been hearing some strange stories about him lately.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-010.htm new file mode 100644 index 0000000000..bade1b0fb4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-010.htm @@ -0,0 +1,4 @@ +Grand Master Sedrick:
+ You have a resolve like Kaien's, but you're skills are still lacking.
+Work a little bit harder. You don't want to end up like Iron!
+(Only a character of level 76 or above is allowed to do a class transfer. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-02.htm new file mode 100644 index 0000000000..5efea52b6d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-02.htm @@ -0,0 +1,4 @@ +Grand Master Bernhard:
+Thank you, but I'm afraid you're not ready to meet him yet.
+He says that only a warrior who seeks his absolute limits will understand what he says. Do you understand that? I don't!
+(This quest may only be undertaken by Gladiators of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-03.htm new file mode 100644 index 0000000000..12a6a3fd41 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-03.htm @@ -0,0 +1,6 @@ +Grand Master Sedrick:
+ He's watched the games for generations!
+ He says that only a warrior who seeks to venture beyond the horizon will understand him. If you knew Iron's history, you'd understand...
+But he criticized the Duelists and chose Sword Master Iron as the worst! I couldn't understand!
+See the Arena Manager at the Coliseum to find out more. He's the one who's pursuing this issue!
+Take this document about Iron to him. I'm curious to find out what he thinks. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-04.htm new file mode 100644 index 0000000000..1b58967587 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-04.htm @@ -0,0 +1,3 @@ +Grand Master Sedrick:
+See the Arena Manager at the Coliseum.
+His stories of the countless duels he's witnessed are worth listening to! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-05.htm new file mode 100644 index 0000000000..54c0df73cb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-05.htm @@ -0,0 +1,5 @@ +Grand Master Sedrick:
+He said that the title of Duelist is nothing but a sham! He also said that becoming a Duelist is not a popularity contest.
+He says that Swordmaster Iron, with his incredible reputation, shouldn't even be called a Duelist!
+He called him a fake! Will you go and see him for me?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-06.htm new file mode 100644 index 0000000000..1718f67431 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-06.htm @@ -0,0 +1,3 @@ +Grand Master Sedrick:
+You remind me of Kaien, Duelist of Oren, who strived for high ideals. When he couldn't reach them, he quit.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-07.htm new file mode 100644 index 0000000000..cea8b56b61 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-07.htm @@ -0,0 +1,3 @@ +Grand Master Sedrick:
+Kain said, a Duelist is covered in scars and fights on.
+You would be worthy of the title! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-08.htm new file mode 100644 index 0000000000..cdf6ab1072 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-08.htm @@ -0,0 +1,4 @@ +Grand Master Sedrick:
+ He said that the path of a Duelist is like walking a mountain pass made of countless sharp blades.
+You must sharpen your skills more.
+(Only a character of level 76 or above is allowed to do class transfer. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-09.htm new file mode 100644 index 0000000000..155d8b1167 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/0-09.htm @@ -0,0 +1,4 @@ +Grand Master Sedrick:
+You obviously seek your absolute limit.
+Kaien said a Duelist is covered in scars and fights on.
+You would be worthy of the title! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-01.htm new file mode 100644 index 0000000000..daec542601 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-01.htm @@ -0,0 +1,7 @@ +Master Chef Donath:
+ Ah, the legendary last meal of Duelists!
+ Is it for you? The last dish...
+ Did you know that dish actually contains the resolve one feels before going into mortal combat?
+And, of course, the ingredients must be gathered by the Duelist himself. Consuming food gathered at great risk allows the warrior to absorb the power of his opponent!
+If the meal is for you, you should collect and bring back the ingredients by yourself!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-02.htm new file mode 100644 index 0000000000..3f7c704ce5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-02.htm @@ -0,0 +1,3 @@ +Master Chef Donath:
+Did you bring the high quality meat I requested? Don't ask him for it directly! That son of a gun won't give it to you! Offer to deliver some to the village for him, and then steal a piece of it!
+Ask Chef Jeremy for the ice crystal. Bring both of those things to me when you get them. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-03.htm new file mode 100644 index 0000000000..9558675acd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-03.htm @@ -0,0 +1,5 @@ +Master Chef Donath:
+ Did you bring the meat and the ice crystal? I'm going to get started. It isn't going to be easy! You can wait if you want to. Maybe you could practice your skills or something!
+A certain amount of sacrifice by the chef is necessary, but you risked your life obtaining the ingredients, so I'll do my part!
+
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-04.htm new file mode 100644 index 0000000000..116a0e90a2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-04.htm @@ -0,0 +1,3 @@ +Master Chef Donath:
+What an extravagant feast, worthy of a Duelist! You haven't tasted it yet? Do you have a match scheduled tomorrow?
+This dish tastes best at the Coliseum of Aden, right before a fight! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-05.htm new file mode 100644 index 0000000000..1beaa1719c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-05.htm @@ -0,0 +1,4 @@ +Master Chef Donath:
+ First, bring me some meat! Umm... The pastureland of Rune would be a good place to start. Speak with the beast herder. Make sure you get a piece of Top Quality Meat! Oh, you can't just come out and ask him for it either! The guy's a real jerk! You should offer to deliver some of his meat to the village, and then steal a piece of it!
+ I'll also need an ice crystal. I need it to sterilize the meat and preserve it. You can get one from Chef Jeremy. He's nearby. He'll most likely ask you to do him a favor in exchange.
+After you get both ingredients, bring them to me. I'll start getting ready. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-06.htm new file mode 100644 index 0000000000..0d2b6e3526 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/1-06.htm @@ -0,0 +1,5 @@ +Master Chef Donath:
+.....
+You've waited for a long time for this! Here's the appetizer... and the main course... and over here, the dessert!
+Did you know that I made this food without using any fire whatsoever? I cooked it with the ice crystal! It's a very mysterious and difficult process! I'm exhausted!
+Why aren't you eating? Do you plan to share it with someone? If so, you'd better get it where you're going quickly, before it spoils! I've heard that people like to eat this food at the Coliseum of Aden before a match. Is that what it's for? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-01.htm new file mode 100644 index 0000000000..d73aab4c9c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-01.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+There's a disturbance near the tablet.
+Iron may be stronger than the warrior, but that doesn't guarantee the outcome of this battle.
+He bears the scars of countless battles, as do I.
+Is that the tablet, or is it an illusion? The sound of clashing swords snaps you out of your torpor.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-02.htm new file mode 100644 index 0000000000..e7fca2528a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+This devil you fight is the one that tempted Sword Master Iron with eternal life and defeated him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-03.htm new file mode 100644 index 0000000000..2474a47bf3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Talk with Kain van Halter. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-04.htm new file mode 100644 index 0000000000..f810ffa967 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Come back when it's your turn to fight. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-05.htm new file mode 100644 index 0000000000..e5d677dc23 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune emits light as you get closer to the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-06.htm new file mode 100644 index 0000000000..8ad178b09d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-06.htm @@ -0,0 +1,8 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. It seems that I heard someone laughing.
+The man said. "One more hero you wanted is born here again."
+A lady with blue clothes answered. "No, he is just a baby who starts toddling. But, he won't be raised under his mother's protection anymore."
+You are right. Defeat is Mother of Victory. I forgot this natural truth for such a long time, didn't I?
+What you can get something from Victory, that's because you staked your own life and resolution on it. Nothing ventured, nothing gained. Can the Victory without losing anything be called Victory...?
+To fight by staking everything in any fighting at any time. The resolution is the mark of a Duelist!
+Now, go back to Grand Master Sedrick of Aden Castle Town, and finish the pilgrimage. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-07.htm new file mode 100644 index 0000000000..f1b979acda --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Go back to Grand Master Sedrick in Aden Castle Town and finish the pilgrimage. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/11-01.htm new file mode 100644 index 0000000000..3206b35958 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/11-01.htm @@ -0,0 +1,3 @@ +Master Felix:
+You seek the Stone of Commune? Are you the powerful Knight I envisioned would come to help me?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/11-02.htm new file mode 100644 index 0000000000..59f8594d67 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/11-02.htm @@ -0,0 +1,3 @@ +Master Felix:
+To get the Stone of Commune, you must kill the Archon of Halisha.
+Find him by entering the Sepulchers or by hunting down about 700 monsters at the Shrine of the Loyal. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/11-03.htm new file mode 100644 index 0000000000..fd00733489 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/11-03.htm @@ -0,0 +1,8 @@ +Master Felix:
+Let me tell you. The devil Halisha made the Imperial Tomb its home during the Elmoreden era. Feudal lords paid tribute to dead emperors there.
+One of the devil's minions, the Archon of Halisha, has the stone. It can be found somewhere inside the Four Sepulchers.
+If it proves too difficult to enter the Sepulcher, there is another way. Go to the corner of the Wall of Argos at the entrance of the grave, and find the Shrine of the Loyal.
+The Archon will appear after you slay about 700 monsters at the shrine.
+The stone tablet matching the Stone of Commune is at the corner of the Wall of Argos.
+Either way is treacherous, but I have faith in you!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-01.htm new file mode 100644 index 0000000000..df1740ecd5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-01.htm @@ -0,0 +1,6 @@ +Arena Director:
+ Does the horizon beckon you to explore what lies beyond it?
+ You could, you know... The title of Duelist is only awarded to those who venture beyond the horizon. They all paid homage to the tablet and obtained power after achieving true enlightenment. Their wins and losses in battle, as well as their titles, are all meaningless now!
+ These days, the tablet is almost forgotten, and the rank of Duelist risks being turned into a popularity contest..
+ There is much I could tell you about becoming a Duelist...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-02.htm new file mode 100644 index 0000000000..8ae8604039 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-02.htm @@ -0,0 +1,4 @@ +Arena Director:
+ There's a dish that legend says Duelists ate before every battle..
+Bring it to me and I'll tell you everything I know! A master chef called Donath or something can probably make it.
+You know, I wouldn't be telling you this if I didn't think that you showed real potential! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-03.htm new file mode 100644 index 0000000000..bcea5f1d29 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-03.htm @@ -0,0 +1,5 @@ +Arena Director:
+ Ah, the legendary gourmet delight! This is the first time I've eaten it! Good. But I suppose I should finish my story first...
+Would you care to join me for dinner? Now, what is a Duelist? Nothing but the most legendary of all warriors! Duelists refine their skills to the utmost, and then go even further with the help of the goddess!
+ They've traveled all over the world, studied the tablet of wisdom and achieved enlightenment.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-04.htm new file mode 100644 index 0000000000..7ec8b042a8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-04.htm @@ -0,0 +1,3 @@ +Arena Director:
+Now do you better understand what it means to be a Duelist?
+The Tablet of Vision can be found south of the Tower of Insolence. Your journey starts there. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-05.htm new file mode 100644 index 0000000000..6f998aa862 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-05.htm @@ -0,0 +1,3 @@ +Arena Director:
+Okay. First you must go to Goddard and get the gourmet meal that was eaten by the Duelists before competitions and bring it to me. There's a great chef there who can make it for you. I think his name was Donath or something.
+ Bring it to me, I'll tell you everything I know about Duelists. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-06.htm new file mode 100644 index 0000000000..de2dbfc260 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/2-06.htm @@ -0,0 +1,6 @@ +Arena Director:
+Iron... He was truly a master swordsman, but he never managed to become a Duelist.
+ While on his pilgrimage, he obtained a mysterious power. He was able to defeat all opponents without even breaking a sweat.
+And then suddenly, he disappeared! From that day on, there were no more Duelists named... Grand Master Sedrick tried... He selected a few candidates whose skills were about equal to yours, and was about to name them all Duelists! I put a stop to that!
+ Now, take this Stone of Pilgrimage! You'll need it to earn the title of Duelist. Take it to the Stone of Commune south of the Ivory Tower.
+You'll find what it truly means to be a Duelist. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-01.htm new file mode 100644 index 0000000000..7042163e14 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-01.htm @@ -0,0 +1,6 @@ +Grand Magister Valdis:
+Hmm... The Stone of Commune, eh?
+Well, I'll give it to you if you're qualified to have it!
+But I need it to write my book, "Trial of Heroes - Rewards of the Legendary Pilgrimage". Do you have anything of equal value you want to trade?
+Will you help me? Let's see... If the legend is true, you must be on the pilgrimage!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-02.htm new file mode 100644 index 0000000000..3e73d26924 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-02.htm @@ -0,0 +1,5 @@ +Grand Magister Valdis:
+Killing alone won't win you a stone.
+First, go to the Ketra Orcs advance base and meet with Wahkan, Messenger of Ketra. He'll help you form an alliance.
+Fight hard alongside them to win their trust.
+Or you could change your mind and fight for the Varka Silenos, I don't care! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-03.htm new file mode 100644 index 0000000000..75b926c469 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-03.htm @@ -0,0 +1,5 @@ +Grand Magister Valdis:
+Just killing won't win you a stone.
+First, you must go to the Varka Silenos stronghold and meet with Naran Ashanuk, their messenger. He'll help you to form an alliance with them.
+You must win their trust by proving yourself in battle.
+Or, if you want, you can approach the Ketra Orcs. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-04.htm new file mode 100644 index 0000000000..013b7f3c99 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-04.htm @@ -0,0 +1,5 @@ +Grand Magister Valdis:
+ Have you forgotten what you need to do?
+You shouldn't doubt your abilities!
+Or did you really forget where to go? To help the Ketra Orcs, go to their advance base in the northern part of Goddard Castle Town and meet their messenger Wahkan.
+To help the Varka Silenos, go to their stronghold in the western part of Goddard Castle Town and meet with Naran Ashanuk, their messenger. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-05.htm new file mode 100644 index 0000000000..cb8ff775f7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-05.htm @@ -0,0 +1,5 @@ +Grand Magister Valdis:
+Have you brought the Divine Stone of Wisdom?
+Let me see it! If it's real, it will resonate with this fragment of the Stone of Commune and give me information. If not, it's a fake. I certainly don't mean to imply that you're trying to trick me, I simply must follow procedures!
+Let's see if it works!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-06.htm new file mode 100644 index 0000000000..0cd3019dff --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-06.htm @@ -0,0 +1,3 @@ +Grand Magister Valdis:
+The stone tablet linked to that Stone of Commune is north of the Varka Silenos stronghold.
+Go there! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-07.htm new file mode 100644 index 0000000000..161ab467ad --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-07.htm @@ -0,0 +1,7 @@ +Grand Magister Valdis:
+What a surprise! Maybe you are guided by the goddess!
+ You wouldn't know of that, would you? So, you're a Duelist?
+ Maybe you can meet King Van Halter someday. Alas, he is away so much he may lose his throne soon!
+If you're a pilgrim, get the Divine Stone of Wisdom and bring it to me. I heard that the Ketra Orcs and the Varka Silenos of Goddard Territory each have one. Which side will you choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-08.htm new file mode 100644 index 0000000000..5e46da0f9b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/3-08.htm @@ -0,0 +1,5 @@ +Grand Magister Valdis:
+Hmm.. There aren't many records of this.
+Just a few visions... I must find out more!
+To find out everything I can, I must communicate with the tablet... I'm not a pilgrim, so this won't work for me.
+This is a genuine Stone of Commune! Take this to the Tablet of Vision north of the Varka Silenos stronghold. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-01.htm new file mode 100644 index 0000000000..a926212f3a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-01.htm @@ -0,0 +1,3 @@ +Kain Van Halter:
+Are you a Gladiator, too?
+I feel awkward asking you to do this... But would you help me take this guy down? I know it's against our principles, but this guy is way too powerful for me to handle alone. Besides, this isn't a regular arena! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-010.htm new file mode 100644 index 0000000000..9e789f2d99 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-010.htm @@ -0,0 +1,6 @@ +Kain Van Halter:
+I see you're making the Pilgrimage of the Duelist!
+I've heard that what is written on the stone tablet isn't that important! You should try your best every time you fight. Think of every strike as your last...
+That sort of thinking produces miracles!
+Well, I must be going... Here, take this last Stone of Commune. I don't need it. You can probably put it to good use. Good luck!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-011.htm new file mode 100644 index 0000000000..da4eb830fa --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-011.htm @@ -0,0 +1,5 @@ +Kain Van Halter:
+I see you're making the Pilgrimage of the Duelist!
+I've heard that what is written on the stone tablet isn't that important! You should always try your best everytime you fight. Think of every strike as your last...
+That sort of thinking produces miracles!
+Well, I must be going... Here, take this last Stone of Commune. I don't need it. I'll bet you can put it to good use! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-02.htm new file mode 100644 index 0000000000..a7c7e67f89 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-02.htm @@ -0,0 +1,2 @@ +Kain Van Halter:
+Sorry, I'm busy now! Step back, it's too dangerous! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-03.htm new file mode 100644 index 0000000000..08e8ad6749 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-03.htm @@ -0,0 +1,2 @@ +Kain Van Halter:
+Humph! What do you want? I'm in a bad mood! He was in the palm of my hand and I let him get away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-04.htm new file mode 100644 index 0000000000..88c398fb45 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-04.htm @@ -0,0 +1,4 @@ +Kain Van Halter:
+Your skills are impressive! Aren't you proud to have the opportunity to fight such a powerful opponent?
+Now raise your weapon and attack that thing! You can't live forever, right?
+A fight isn't worth fighting without some risk! If you die, it only means your time is up! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-05.htm new file mode 100644 index 0000000000..477becc4e6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-05.htm @@ -0,0 +1,2 @@ +Kain Van Halter:
+Can't you see how busy I am? Watch and learn, buddy! I'm gonna make mincemeat out of this guy! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-06.htm new file mode 100644 index 0000000000..2f4a0a7e25 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-06.htm @@ -0,0 +1,6 @@ +Kain Van Halter:
+Humph! He got away!
+Oh well, let me introduce myself. I'm Kain. Don't worry about my last name! I forgot it years ago!
+Did you hear what that guy was saying? All that rubbish about eternal life blah blah blah! You shouldn't be manipulated by such gibberish! Well, if you want to believe that garbage, go right ahead, but all that will be left of you will be rotting flesh and maggots! Ha!
+I met a guy once named Swordsmaster Iron who believed all that crap! I just ignored him... Have you met him?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-07.htm new file mode 100644 index 0000000000..2b626007e5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-07.htm @@ -0,0 +1,6 @@ +Kain Van Halter:
+Humph! He got away!
+Oh well, let me introduce myself. I'm Kain. Don't worry about my last name! I forgot it years ago!
+Did you hear what that guy was saying? All that rubbish about eternal life, blah blah blah! Don't be manipulated by such gibberish! Well, if you want to believe that garbage, go right ahead, but all that will be left of you will be rotting flesh and maggots! Ha!
+I met a guy once named Swordsmaster Iron who believed all that crap! I just ignored him... Have you met him?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-08.htm new file mode 100644 index 0000000000..627f910ce0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-08.htm @@ -0,0 +1,3 @@ +Kain Van Halter:
+Huh? Isn't that the Stone of Commune? You haven't communed with it yet, have you?
+ I finally met a worthy opponent, and I'm busy dealing with him. Why don't you take care of your own business now. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-09.htm new file mode 100644 index 0000000000..a6f600f4e4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/4-09.htm @@ -0,0 +1,2 @@ +Kain Van Halter:
+Well, since you have the Stone of Commune, go ahead and use it with the Tablet of Vision. I'll train myself in the meantime. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/5-01.htm new file mode 100644 index 0000000000..766fb02fbc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/5-02.htm new file mode 100644 index 0000000000..09272038be --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/5-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if the wind were singing...
+You sense that the next Stone of Commune is held by warriors near the Wall of Argos in the Valley of Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/5-03.htm new file mode 100644 index 0000000000..4f21f40c9f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision :
+Further communion with this tablet is futile. The next Stone of Commune is being held by the Guardians of Forbidden Knowledge in the Northeast Valley of the Saints. Kill the guardians and take the stone! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/6-01.htm new file mode 100644 index 0000000000..feeafa5ca7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision :
+The tablet has incomprehensible hieroglyphs engraved upon it. Guardians of Forbidden Knowledge have the Stone of Commune . \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/6-02.htm new file mode 100644 index 0000000000..f930bfc168 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+When you go near the tablet, the Stone of Commune begins to emit light.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/6-03.htm new file mode 100644 index 0000000000..0a7bdd1465 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/6-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a woman's voice.
+A series of visions appear... Of an ancient Sword Master named Iron who aspired to become a Duelist, and eventually sold his soul to a demon.
+Now he stands before the monument to prevent any other Duelist from challenging his power.
+You'll find him at the southeast corner of the Ketra Orc Outpost. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/6-04.htm new file mode 100644 index 0000000000..b528d9193e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/6-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet would be futile.
+A warrior, ready for a challenge, awaits you at the Tablet of Vision in the Ketra Orc Outpost. Get going! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-01.htm new file mode 100644 index 0000000000..447197e3a6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-01.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+As you near the Tablet of Vision, you sense a presence. It's the one who sold out to the demon for absolute power! Sadly, he underestimated his own potential.
+No amount of worldly acclaim was enough for him.
+You have a book with the story of his terrible end with you! Have you read it? Can you defeat the Sword Master?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-02.htm new file mode 100644 index 0000000000..687f368600 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+He had absolute power, but if the outcome is already known, what's the point? Eternal life is no substitute for dignity. The title of Sword Master is a heavy burden.
+He forgot why he took up the sword in the first place! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-03.htm new file mode 100644 index 0000000000..6d83d0ebad --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The time has come to examine the Tablet of Vision, but don't take your eyes off of Iron for a second! You'll need all your skills against him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-04.htm new file mode 100644 index 0000000000..5811331d54 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You sense a disturbance near the tablet.
+The time hasn't yet come for you to prove yourself. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-05.htm new file mode 100644 index 0000000000..d6564a2ae5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-06.htm new file mode 100644 index 0000000000..17ffff67c1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-06.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a woman's voice.
+A vision appears of a man, smiling down upon the Stone of Commune! It appears he's in a vast library.
+It's Valdis, Grand Magister of Rune Castle Town Library! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-07.htm new file mode 100644 index 0000000000..a27c651653 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet is futile. You must get the next Stone of Commune from Valdis, the Grand Magister of Rune Castle Town Library. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/8-01.htm new file mode 100644 index 0000000000..cdf5a96093 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/8-02.htm new file mode 100644 index 0000000000..61cc60ef93 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/8-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A vision appears of a Mysterious dark Knight...
+He has the Stone of Commune, and is seeking help with some imminent threat.
+Speak with Master Felix in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/8-03.htm new file mode 100644 index 0000000000..db6f09be22 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/8-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet would be pointless at this time.
+Speak with Master Felix in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/9-01.htm new file mode 100644 index 0000000000..7c4c2c2b6a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/9-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+The Stone of Commune that can access this tablet can be found at the Wall of Argos or the Imperial Tomb. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/9-02.htm new file mode 100644 index 0000000000..7fe8f04505 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/9-03.htm new file mode 100644 index 0000000000..840d9f4a03 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/9-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+A sharp blast of knowlege courses through your cranium! A vision appears of a black knight!
+And there's the demon who corrupted the Ancient Sword Master Iron while he was on the Pilgrimage of the Duelist!
+He promised him eternal life and invincibility in battle!
+And now he's fighting a Gladiator in the Forest of the Dead in Rune Territory! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/9-04.htm new file mode 100644 index 0000000000..324b09d730 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/9-04.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. The next Stone of Commune is in the hand of a Duelist who will confront the devil in the Forest of the Dead in Rune Territory.
+What could've been the source of Iron's prideful behavior?
+The next tablet might have the answer. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/Q00073_SagaOfTheDuelist.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/Q00073_SagaOfTheDuelist.java new file mode 100644 index 0000000000..7db81d1eb3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/Q00073_SagaOfTheDuelist.java @@ -0,0 +1,137 @@ +/* + * 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.Q00073_SagaOfTheDuelist; + +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 quests.AbstractSagaQuest; + +/** + * Saga of the Duelist (73) + * @author Emperorc + */ +public class Q00073_SagaOfTheDuelist extends AbstractSagaQuest +{ + /** + * Third Class Transfer Quest - Duelist: The quest asks for "Top-grade Meat" which can now be acquired directly through NPC Tunatun, instead of through an additional quest from NPC Tunatun. + */ + private final int TUNATUN = 31537; + private final int TOPQUALITYMEAT = 7546; + + public Q00073_SagaOfTheDuelist() + { + super(73); + _npc = new int[] + { + 30849, + 31624, + 31226, + 31331, + 31639, + 31646, + 31647, + 31653, + 31654, + 31655, + 31656, + 31277 + }; + Items = new int[] + { + 7080, + 7537, + 7081, + 7488, + 7271, + 7302, + 7333, + 7364, + 7395, + 7426, + 7096, + 7546 + }; + Mob = new int[] + { + 27289, + 27222, + 27281 + }; + classid = new int[] + { + 88 + }; + prevclass = new int[] + { + 0x02 + }; + npcSpawnLocations = new Location[] + { + new Location(164650, -74121, -2871), + new Location(47429, -56923, -2383), + new Location(47391, -56929, -2370) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + + addTalkId(TUNATUN); + } + + @Override + public String onTalk(L2Npc npc, L2PcInstance player) + { + if (npc.getId() == TUNATUN) + { + String htmltext = getNoQuestMsg(player); + QuestState st = getQuestState(player, false); + if ((st != null) && st.isCond(3)) + { + if (!hasQuestItems(player, TOPQUALITYMEAT)) + { + giveItems(player, TOPQUALITYMEAT, 1); + return "tunatun_01.htm"; + } + return "tunatun_02.htm"; + } + return htmltext; + } + return super.onTalk(npc, player); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/tunatun_01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/tunatun_01.htm new file mode 100644 index 0000000000..7a09adafe2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/tunatun_01.htm @@ -0,0 +1,3 @@ +Beast Herder Tunatun:
+Donath said I should be expecting you. You must have had quite the journey getting here. As requested, Top Quality Meat.
+Now forgive my abruptness, but unless you have more business with me you should leave. This place is not for the aimless wanderer.. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/tunatun_02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/tunatun_02.htm new file mode 100644 index 0000000000..d58afce9b1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00073_SagaOfTheDuelist/tunatun_02.htm @@ -0,0 +1,3 @@ +Beast Herder Tunatun:
+I already gave you the Top Quality Meat, didn't I?
+Are you waiting around to get eaten or something? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-01.htm new file mode 100644 index 0000000000..80719a3e1b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-01.htm @@ -0,0 +1,4 @@ +Master Aiken:
+Warlords have always been at the forefront of major victories, from the war between Aden and Elmore to the recent conquest of the Tower of Insolence. We've had many nicknames, Terror of the Battlefield, Dragon's Descendants, and so on...
+Do you know which art of fighting the Warlords developed their techniques from?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-010.htm new file mode 100644 index 0000000000..ee81dba86e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-010.htm @@ -0,0 +1,4 @@ +Master Aiken:
+You must be stronger to control the energy of the dragon.
+To fulfill the vision in your mind you must have more experience.
+(Only a character of level 76 or above is allowed to do a class transfer. Do not abandon quest before transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-02.htm new file mode 100644 index 0000000000..6b652728af --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-02.htm @@ -0,0 +1,3 @@ +Master Aiken:
+I heard she was somewhere up north. You should take on a task more suited to your abilities.
+(This quest may only be undertaken by a Warlord of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-03.htm new file mode 100644 index 0000000000..3ee0a4c43f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-03.htm @@ -0,0 +1,4 @@ +Master Aiken:
+Meet with Guard Ulrich in Goddard Castle Town. He used to live in Giran.
+He sent me a letter about Leona, her battle and the fire dragon Valakas.
+He knows all the details. Read this book he sent me before you go. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-04.htm new file mode 100644 index 0000000000..8a6d8c92df --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-04.htm @@ -0,0 +1,2 @@ +Master Aiken:
+Guard Ulrich in Goddard Castle Town knows all the details. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-05.htm new file mode 100644 index 0000000000..1fe6d07813 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-05.htm @@ -0,0 +1,5 @@ +Master Aiken:
+Warlords studied the fighting techniques of dragons during the war of the gods. That's why we're rumored to be descended from dragons!
+Leona Blackbird, also known as the Bride of the Fire Dragon, was once captain of the guards in Giran. Before the era of chaos began she was defeated by Sighardt Ein. Now she's a wanderer.
+Her fighting technique was truly excellent. If you wish to improve yours, you should meet her.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-06.htm new file mode 100644 index 0000000000..5b15f6277a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-06.htm @@ -0,0 +1,4 @@ +Master Aiken:
+Things were more orderly during the war with Elmore. We have entered an era of chaos.
+Have you met the Bride of the Fire Dragon and acquired the vision of the dragon?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-07.htm new file mode 100644 index 0000000000..714be4c4a5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-07.htm @@ -0,0 +1,3 @@ +Master Aiken:
+I felt that power in you.
+It can instill fear in people, but it can also help us maintain peace in this land. I hereby bestow upon you the title of Dreadnought, dragon descendant! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-08.htm new file mode 100644 index 0000000000..b44ad5ebae --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-08.htm @@ -0,0 +1,3 @@ +Master Aiken:
+You're not strong enough to control the energy of the dragon. Come back when you have more training.
+(Only characters level 76 or above are allowed to do a class transfer. Do not abandon quest before transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-09.htm new file mode 100644 index 0000000000..abc82bb9a4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/0-09.htm @@ -0,0 +1,3 @@ +Master Aiken:
+You have proven your strength and learned the vision of the dragon.
+I hereby bestow upon you the title of Dreadnought, dragon descendant! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-01.htm new file mode 100644 index 0000000000..4463034667 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-01.htm @@ -0,0 +1,3 @@ +Chef Donath:
+ Ah, the fish soup of dead souls? What do you need it for? Who asked for it? There are many different kinds, you know! I need to know for whom and for what purpose it will be used so that I can make it correctly.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-02.htm new file mode 100644 index 0000000000..019ae25873 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-02.htm @@ -0,0 +1,3 @@ +Chef Donath:
+Have you brought the ice crystal and the fish?
+Ask Chef Jeremy for the ice crystal. A skilled fisherman could catch a fat, white fish for you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-03.htm new file mode 100644 index 0000000000..f3f527a5e5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-03.htm @@ -0,0 +1,3 @@ +Chef Donath:
+ Good job! I'll get started then! This is going to take a while. Please wait.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-04.htm new file mode 100644 index 0000000000..e796119caf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-04.htm @@ -0,0 +1,2 @@ +Chef Donath:
+Did Guard Ullrich's mother enjoy the soup I made? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-05.htm new file mode 100644 index 0000000000..c0e44ca284 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-05.htm @@ -0,0 +1,4 @@ +Chef Donath:
+ You mean Guard Ullrich of Goddard Castle Town?
+ Perhaps he's trying to extend someone's lifespan. That soup can have many different effects...
+You'll need to bring a fat white fish and an ice crystal. You can get the ice crystal from Chef Jeremy, nearby. And as for the fat white fish... you're on your own! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-06.htm new file mode 100644 index 0000000000..ad9a6ef32d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/1-06.htm @@ -0,0 +1,2 @@ +Chef Donath:
+Your food is ready! This fish is famous for its strong life force and vitality. The ice crystal captured this life force and infused it into the soup! I'm sure Guard Ullrich's mother will enjoy it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-01.htm new file mode 100644 index 0000000000..8f1b0f5308 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-01.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+As you approach the tablet, you hear a terrible racket, as if two giant powers had collided! You hear a woman scream.
+This is all familiar to you. There's that huge angel, and the lady with the power of a dragon!
+Warlords are many people's only hope and must have great strength. The blood of dragons boils in their veins. Dragons strike a blow...!
+.....There's the tablet! Is it real or an illusion? The sound of swordplay brings you back to reality.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-02.htm new file mode 100644 index 0000000000..295f385143 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The image of an angel stands before you. He was sent by a goddess to prevent Humans from reaching their true potential. A fearless woman stands against him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-03.htm new file mode 100644 index 0000000000..1a43cea0b9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+Leona looks as if she has something to say. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-04.htm new file mode 100644 index 0000000000..e4b458a954 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+There is a disturbance nearby.
+Don't get involved. Wait and see what happens. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-05.htm new file mode 100644 index 0000000000..11c18de65e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you draw near the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-06.htm new file mode 100644 index 0000000000..599b589911 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-06.htm @@ -0,0 +1,7 @@ +Tablet of Vision:
+A sharp blast of knowledge sears painfully into your brain. You hear the sound of distant laughter.
+A man announces the birth of another Hero.
+The woman in blue disagrees... A child no longer, but still young.
+The power of all dragons is Shilen's, and she fights with her children by her side. But only the strongest power can bring peace!
+Visions of dragons flash through your mind. A human who imitates the dragon in combat would command tremendous physical power when outnumbered!
+You feel this power coursing through you! Go back to Master Aiken in Aden Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-07.htm new file mode 100644 index 0000000000..1ab899960d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Speak with Master Aiken in Aden Castle Town and tell him what you've learned from Leona. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/11-01.htm new file mode 100644 index 0000000000..d38ada987c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/11-01.htm @@ -0,0 +1,4 @@ +Mysterious Wizard:
+The Stone of Commune? I never thought about that! I used it to watch over the bride of a fire dragon, but it led people to me.
+I can't give you this one because I'm still using it, but I'll tell you where you can get one.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/11-02.htm new file mode 100644 index 0000000000..fcb270da9c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/11-02.htm @@ -0,0 +1,3 @@ +Mysterious Wizard :
+This stone, you can get it if you defeat the Inferior of Halisha in the four Sepulchers or Shrine of the Loyal. Why don't you go there?
+After you get the stone, go to find the Tablet in the southwest of the Wall of Argos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/11-03.htm new file mode 100644 index 0000000000..1c0fb5e57b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/11-03.htm @@ -0,0 +1,6 @@ +Mysterious Wizard :
+This stone contains the power of Gran Kain, the God of Destruction. I'm not sure about it's composition, but I do know that the Stone of Commune was made from a material that Gran Kain cherished dearly.
+At the present... One of the Rulers of Hell is said to use this very same material. That would be Halisha. Maybe you could get it by defeating his Minions or Archon?
+Luckily, I have heard that Halisha is now sending many of his minions to the Four Sepulchers. It might be a good idea to go make every effort to get there quickly to see what you can obtain.
+Hmm.. the Evil Creatures in the Shrine of the Loyal are also Minions of Halisha. If you defeat them, much more powerful Minions will appear. Perhaps they also have the material you seek.
+After you find it, go to the Tablet in the southwest of the Wall of Argos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-01.htm new file mode 100644 index 0000000000..9c2dc634c1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-01.htm @@ -0,0 +1,4 @@ +Guard Ulrich:
+You must mean Leona Blackbird, the last lord of the manor in Giran. Yes, I saw her, all right! I summarized her accounts of her battles in this book!
+Considering your willingness to chase her, you must be an accomplished Warlord! Could I ask you a favor?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-02.htm new file mode 100644 index 0000000000..f1b86e509f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-02.htm @@ -0,0 +1,2 @@ +Guard Ulrich:
+I know this is quite sudden, but I don't have a choice. If you go to the hot springs region in the north and get some fish soup made by Chef Donath, I'll tell you everything Miss Leona told me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-03.htm new file mode 100644 index 0000000000..3a8e9b158f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-03.htm @@ -0,0 +1,5 @@ +Guard Ulrich:
+Thank you! My mother will be so happy to get this!
+ Now I'll tell you what Miss Leona told me. She recounted an old story told by Valakas about a stone tablet with legendary power.
+She explained that the skills of a Warlord can be learned by watching a dragon, but to understand how a dragon actually utilizes its power, one must commune with the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-04.htm new file mode 100644 index 0000000000..1df95b142f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-04.htm @@ -0,0 +1,3 @@ +Guard Ulrich:
+She said that the first Tablet of Vision can be found on the south side of the Tower of Insolence.
+Did you put the Stone of Commune I gave you in a safe place? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-05.htm new file mode 100644 index 0000000000..2b9f35b0ee --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-05.htm @@ -0,0 +1,4 @@ +Guard Ulrich:
+ My mother is seriously ill! I've heard that dead souls fish soup might cure her, but it must be prepared by an excellent chef!
+ Please visit Chef Donath in the hot springs region to the north and get some of this soup.
+ Bring it to me and I'll tell you a story. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-06.htm new file mode 100644 index 0000000000..10d6100353 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/2-06.htm @@ -0,0 +1,4 @@ +Guard Ulrich:
+ The Tablets of Vision contain the secret power of the gods. They were divided and scattered throughout the world. Each must be paired with its own Stone of Commune before the information within can be accessed.
+The first tablet can be found on the south side of the Tower of Insolence. The Stone of Commune for that tablet was left with me by Miss Leona.
+I'll give it to you. While I'm at it, I should tell you about a book called "The Army of the White Wings". It describes the guardians that Miss Leona encountered while she was on the pilgrimage of the stone tablets. You may run into them as well, and should learn all you can about them. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-01.htm new file mode 100644 index 0000000000..add67c38e6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-01.htm @@ -0,0 +1,4 @@ +Grand Master Bernhard:
+ Ha! Are you the successor mentioned by the bride of Antharas?
+ Of course! She visited me a while back. She said that someone was following her footsteps, seeking the power of the dragon! Can you solve the riddle?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-02.htm new file mode 100644 index 0000000000..9f7ae74919 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-02.htm @@ -0,0 +1,3 @@ +Grand Master Bernhard:
+Go to the Ketra Orcs advance base and meet with Messenger Wahkan! He will tell you how to befriend them.
+Since you're skilled, I'm sure they'll welcome you. Earn their trust, obtain the Divine Stone of Wisdom and return here! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-03.htm new file mode 100644 index 0000000000..f85e9b8ea9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-03.htm @@ -0,0 +1,3 @@ +Grand Master Bernhard:
+ First go to the Varka Silenos stronghold and meet with Naran Ashanuk, Varka's Messenger! He'll tell you how to befriend them.
+Since you're skilled I'm sure they'll welcome you. Earn their trust, obtain the Divine Stone of Wisdom and return here! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-04.htm new file mode 100644 index 0000000000..cf8c64a404 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-04.htm @@ -0,0 +1,4 @@ +Grand Master Bernhard:
+Have you earned their trust?
+Go to either the Varka Silenos or the Ketra Orcs to obtain a Divine Stone of Wisdom and bring it to me.
+Pick either one, it doesn't matter. Change your mind if you choose. Just get it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-05.htm new file mode 100644 index 0000000000..3ec859b97e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-05.htm @@ -0,0 +1,6 @@ +Grand Master Bernhard:
+ You're back! Did you bring the Divine Stone of Wisdom?
+ Good job! You are as capable as the bride of Antharas told me.
+ Now I'll give you the Stone of Commune. The stone tablet that forms a union with it is north of the Varka Silenos stronghold.
+ I'd like to see it myself, but I'm not a descendant of a dragon like you. The bride left a note with me.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-06.htm new file mode 100644 index 0000000000..40f7a706ec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-06.htm @@ -0,0 +1,2 @@ +Grand Master Bernhard:
+Didn't I tell you? Look for the Tablet of Vision! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-07.htm new file mode 100644 index 0000000000..f5a78d68ab --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-07.htm @@ -0,0 +1,5 @@ +Grand Master Bernhard:
+She asked me to keep the Stone of Commune until someone worthy came to me for it. She also says that it's not complete. To make it perfect you will need a Divine Stone of Wisdom! There are two pieces held by opposing forces, the Ketra Orcs and the Varka Silenos. Both threaten Goddard.
+Bring back either of the stones. It won't be easy! You must earn their absolute trust. Which side will you choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-08.htm new file mode 100644 index 0000000000..a46e05040c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/3-08.htm @@ -0,0 +1,6 @@ +Grand Master Bernhard:
+ Here it says,
+ "Since you're reading this, you must have defeated the white-winged fighters."
+ Is that so? Anyways...
+"You can follow in my footsteps and learn the vision of the dragon. Some will try to stop us. You'll see..."
+ I don't know what she means, but here's the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-01.htm new file mode 100644 index 0000000000..0cbf0872b5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-01.htm @@ -0,0 +1,2 @@ +Leona Blackbird:
+Finally, I get to meet you! We'll talk later. First, would you help me take care of this guy? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-010.htm new file mode 100644 index 0000000000..df799ff6c4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-010.htm @@ -0,0 +1,8 @@ +Leona Blackbird:
+I was suspicious for a while. Why, at that time, did the fire dragon come to me? What woke that beast from its sleep...? Especially damning was the fact that the seal of Shilen was broken!
+The era of chaos... The period the dragon warned about, had arrived at last. In times of chaos and violence, the most important thing to me was the power to realize my intentions...
+All the evil creatures and spirits were saying the same thing. Although Valakas was silent on the matter, I knew the truth. He wanted to tell me that if we were to realize the peace I sought, I needed a power that could shape things to my will.
+That applies to you as well! A Warlord can fight against multiple enemies. The more powerful a Warlord is, the fewer losses he suffers. I'll probably end up in hell for the deaths I'm responsible for, but still I continue, creating more death and destruction.
+No one dares challenge me!
+Take this last Stone of Commune... It will give you a new understanding. Complete the last communion and then visit Master Aiken in Aden Castle Town. Farewell!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-011.htm new file mode 100644 index 0000000000..3184384183 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-011.htm @@ -0,0 +1,7 @@ +Leona Blackbird:
+I was suspicious for a while. Why, at that time, did the fire dragon come to me? What woke that beast from its sleep...? Especially damning was the fact that the seal of Shilen was broken!
+The era of chaos... The period the dragon warned about, had arrived at last. In times of chaos and violence, the most important thing to me was the power to realize my intentions...
+All the evil creatures and spirits were saying the same thing. Although Valakas was silent on the matter, I knew the truth. He wanted to tell me that if we were to realize the peace I sought, I needed a power that could shape things to my will.
+That applies to you as well! A Warlord can fight against multiple enemies. The more powerful a Warlord is, the fewer losses he suffers. I'll probably end up in hell for the deaths I'm responsible for, but still I continue, creating more death and destruction.
+No one dares challenge me!
+Take this last Stone of Commune... It will give you a new understanding. Complete the last communion and then visit Master Aiken in Aden Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-02.htm new file mode 100644 index 0000000000..4f41afa8b6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-02.htm @@ -0,0 +1,2 @@ +Leona Blackbird:
+Sorry, but as you can see, this isn't the time for me to sit down for a chat! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-03.htm new file mode 100644 index 0000000000..28dc699fa8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-03.htm @@ -0,0 +1,3 @@ +Leona Blackbird:
+Hmm? He..he ran away?
+Well, that's OK! I didn't really need to kill him anyway! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-04.htm new file mode 100644 index 0000000000..cb2cb50714 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-04.htm @@ -0,0 +1,3 @@ +Leona Blackbird:
+I have a lot of things I'd like to tell you. But for now, it's important for you to help me in defeating this guy.
+In order to obtain more power, you will need to overcome hardship! A real challenge like this one! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-05.htm new file mode 100644 index 0000000000..3db2ec54f0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-05.htm @@ -0,0 +1,2 @@ +Leona Blackbird:
+What do you want from me? You shouldn't get so close when Warlords fight! You could get hurt! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-06.htm new file mode 100644 index 0000000000..c5ce100111 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-06.htm @@ -0,0 +1,6 @@ +Leona Blackbird:
+ Good job!
+ Pleased to meet you. I'm Leona Blackbird. Some call me such things as the Bride of the Fire Dragon, but believe me, I never married Valakas!
+Ha! At one time I was captain of the guard in Giran. That's when the fire dragon told me about this pilgrimage, which I didn't follow at that time. I didn't expect Sighardt Ein to attack at a time like that.
+ When I think back on it now, I understand. I've been expecting someone like you to come looking for me.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-07.htm new file mode 100644 index 0000000000..3771bda201 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-07.htm @@ -0,0 +1,5 @@ +Leona Blackbird:
+Good job! Pleased to meet you. I'm Leona Blackbird. Some call me such things as the Bride of the Fire Dragon, but believe me, I never married Valakas! Ha!
+At one time I was captain of the guard in Giran. That's when the fire dragon told me about this pilgrimage, which I didn't follow at that time. I didn't expect Sighardt Ein to attack at a time like that.
+When I think back on it now, I understand. So, I've been expecting someone like you to come looking for me.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-08.htm new file mode 100644 index 0000000000..fb99095252 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-08.htm @@ -0,0 +1,3 @@ +Leona Blackbird:
+We meet again! Have you gotten the last vision of the dragon?
+The Tablet of Vision beside you holds the knowledge you seek. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-09.htm new file mode 100644 index 0000000000..ab726e2bb0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/4-09.htm @@ -0,0 +1,2 @@ +Leona Blackbird:
+Take the stone and commune with the last stone tablet to learn the vision of the dragon... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/5-01.htm new file mode 100644 index 0000000000..99aafcbd97 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/5-02.htm new file mode 100644 index 0000000000..267c2a3dbf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/5-02.htm @@ -0,0 +1,2 @@ +Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if the wind were singing...
+I feel the next Stone of Commune is in the possession of many warriors. I must get that stone if I am to achieve enlightenment! The monument said to look toward the south of the Valley of Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/5-03.htm new file mode 100644 index 0000000000..e789025573 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision :
+Further communion with this tablet is futile. The Guardians of Forbidden Knowledge have the next Stone of Commune in the south of the Valley of Saints. Kill the guardians and take their stone! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/6-01.htm new file mode 100644 index 0000000000..feeafa5ca7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision :
+The tablet has incomprehensible hieroglyphs engraved upon it. Guardians of Forbidden Knowledge have the Stone of Commune . \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/6-02.htm new file mode 100644 index 0000000000..5f05d25577 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/6-03.htm new file mode 100644 index 0000000000..e9c27f8e83 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/6-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a woman's voice.
+In a vision you see the guardian who once feared the power of Dragons and Gods... yet eventually he claimed that power for himself! That guardian now waits for those who seek to confront the Dragons, near the third Tablet of Vision in the southwest of the Wall of Argos. You cannot fight them by normal means, so you must learn from Leona's experience! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/6-04.htm new file mode 100644 index 0000000000..5b5e956366 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/6-04.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Further communion with this tablet would be futile.
+The next challenge awaits you at the Tablet of Vision near the southwest part of the Wall of Argos!
+You must prepare yourself for battle! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-01.htm new file mode 100644 index 0000000000..c3af9285f3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-01.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+As you near the Tablet of Vision, you sense a presence. It must be a guardian, whose only purpose is to deny Humans the ultimate knowledge!
+You fear that you must find a way to defeat this foe beyond what you already know. The past may hold the key.
+What would Leona do?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-02.htm new file mode 100644 index 0000000000..260167766d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The woman who would deny Humans the power of dragons has sent soldiers to enforce her will. White Wing Combat Corps forever! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-03.htm new file mode 100644 index 0000000000..4fa0bd78b1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet means nothing until we defeat the guardian! Destroy the guardian and take his Stone of Commune! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-04.htm new file mode 100644 index 0000000000..b3c9dc8cff --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You sense a disturbance near the Tablet of Vision.
+Now isn't the time to prove yourself. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-05.htm new file mode 100644 index 0000000000..7fa8dea432 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-06.htm new file mode 100644 index 0000000000..f16d297630 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-06.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a woman's voice.
+A vision appears... It's Grand Master Bernhart of the Warrior Guild in Goddard Castle Town! The Stone of Commune lies weakening in his powerful grasp... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-07.htm new file mode 100644 index 0000000000..e6820c1b3b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this Tablet of Vision would be futile. You must get the next Stone of Commune from Grand Master Bernhart in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/8-01.htm new file mode 100644 index 0000000000..398f071a7a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/8-02.htm new file mode 100644 index 0000000000..7282d0862f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/8-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A vision appears of a mysterious dark knight...
+I also see a man in a long, black robe, smiling and holding the Stone of Commune!
+He's up to no good and has everyone in Rune Territory fooled!
+Speak with the mysterious wizard in the Forest of the Dead. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/8-03.htm new file mode 100644 index 0000000000..c473b79527 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Communion with this tablet is complete. Get the next Stone of Commune from the mysterious wizard in the Forest of the Dead. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/9-01.htm new file mode 100644 index 0000000000..7c4c2c2b6a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/9-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+The Stone of Commune that can access this tablet can be found at the Wall of Argos or the Imperial Tomb. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/9-02.htm new file mode 100644 index 0000000000..6ee6b6ed82 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/9-03.htm new file mode 100644 index 0000000000..14ac8ada7a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/9-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
A sharp blast of knowlege courses through your cranium! A vision appears of a black knight!
There's a woman trying to prevent a man from getting the power of the dragon.
White wings and the overwhelming presence of power! This is similar to the fear of a soldier facing the Lord of War on the battlefield.
But the descendants of dragons have nothing to fear, like Leona.
The Tablet of Vision can be found in the southern part of the Forest of the Dead where Leona is! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/9-04.htm new file mode 100644 index 0000000000..4b3d5a1519 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. The next Stone of Commune is near the sixth Tablet of Vision in the Forest of the Dead. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/Q00074_SagaOfTheDreadnought.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/Q00074_SagaOfTheDreadnought.java new file mode 100644 index 0000000000..460f470251 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00074_SagaOfTheDreadnought/Q00074_SagaOfTheDreadnought.java @@ -0,0 +1,105 @@ +/* + * 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.Q00074_SagaOfTheDreadnought; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Dreadnought (74) + * @author Emperorc + */ +public class Q00074_SagaOfTheDreadnought extends AbstractSagaQuest +{ + public Q00074_SagaOfTheDreadnought() + { + super(74); + _npc = new int[] + { + 30850, + 31624, + 31298, + 31276, + 31595, + 31646, + 31648, + 31650, + 31654, + 31655, + 31657, + 31522 + }; + Items = new int[] + { + 7080, + 7538, + 7081, + 7489, + 7272, + 7303, + 7334, + 7365, + 7396, + 7427, + 7097, + 6480 + }; + Mob = new int[] + { + 27290, + 27223, + 27282 + }; + classid = new int[] + { + 89 + }; + prevclass = new int[] + { + 0x03 + }; + npcSpawnLocations = new Location[] + { + new Location(191046, -40640, -3042), + new Location(46087, -36372, -1685), + new Location(46066, -36396, -1685) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-01.htm new file mode 100644 index 0000000000..78f8f3e3dd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-01.htm @@ -0,0 +1,4 @@ +Perfect Tazki:
+Tejarka Paagrio!
+I've been waiting for you! The Hestui totem spirit has revealed many ancient Orcish secrets to me!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-010.htm new file mode 100644 index 0000000000..eb2ad48196 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-010.htm @@ -0,0 +1,3 @@ +Prefect Tazki:
+Train your body and spark the ancient flame that burns within you!
+(Only players of level 76 or above may transfer class. Don't abandon quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-02.htm new file mode 100644 index 0000000000..1b042cf90b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-02.htm @@ -0,0 +1,5 @@ +Perfect Tazki:
+Tejarka Paagrio! Your soul will lead you to enlightenment!
+Follow the path of Paagrio that opens before you!
+You shall gain unimaginable strength!
+(This quest may only be undertaken by Destroyers of level 76 and above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-03.htm new file mode 100644 index 0000000000..bef7e9a049 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-03.htm @@ -0,0 +1,5 @@ +Prefect Tazki:
+Tejarka Paagrio! Your spirit shall lead you to the source of ancient Orcish power!
+Long ago, a legendary warrior abandoned his path, and devoted all his time to training a disciple.
+The youth thrived, and soon became as strong as his master. Then, without warning, he disappeared!
+Here's all the information we've been able to gather about him. You should speak with Prefect Lakan of Goddard Castle Town. At one time he was the strongest warrior of the Atuba tribe! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-04.htm new file mode 100644 index 0000000000..1bdb06a2ea --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-04.htm @@ -0,0 +1,2 @@ +Prefect Tazki:
+Find Prefect Lakan in Goddard Castle Town and you'll meet the strongest warrior of the Atuba tribe! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-05.htm new file mode 100644 index 0000000000..e1e14e68cd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-05.htm @@ -0,0 +1,4 @@ +Prefect Tazki:
+Tejakar Hestui! In ancient times, only Orcish warriors were strong enough to confront the fearsome giants!
+Do you wish to receive this power?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-06.htm new file mode 100644 index 0000000000..9f09351bdd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-06.htm @@ -0,0 +1,4 @@ +Prefect Tazki:
+Tejakar Orca!
+The ancient Orcish fire is on your breath, warrior! Have you achieved the power that can defeat the giants?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-07.htm new file mode 100644 index 0000000000..86e0fcd21a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-07.htm @@ -0,0 +1,5 @@ +Prefect Tazki:
+Tejakar Paagrio!
+Your soul emits fire and your body rivals those of the ancient giants!
+Your fighting spirit burns like a volcano! You can't lose!
+You shall take the name of the legendary fighter who fought so valiantly at the Temple of Giants. Henceforth you shall be known as a Titan! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-08.htm new file mode 100644 index 0000000000..f6e1e6dcac --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-08.htm @@ -0,0 +1,5 @@ +Prefect Tazki:
+Tejakar Paagrio!
+Your soul burns like a volcano, but your body could use some work!
+Do not neglect your training. Come back when you're stronger!
+(Only players of level 76 or above may transfer class. Don't abandon the quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-09.htm new file mode 100644 index 0000000000..3571cf2c14 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/0-09.htm @@ -0,0 +1,4 @@ +Prefect Tazki:
+Your soul emits fire and your body rivals those of the ancient giants!
+Your fighting spirit burns like a volcano! You can't lose!
+You shall take the name of the legendary fighter who fought so valiantly at the Temple of Giants. Henceforth you shall be known as a Titan! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-01.htm new file mode 100644 index 0000000000..75e118e64c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-01.htm @@ -0,0 +1,3 @@ +Chef Donath:
+Bitter Cold Vodka? Isn't that the Orcish liquor made by mixing the flames of Paagrio with the power of 99 dead spirits? You can't just ask me to make such a....
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-02.htm new file mode 100644 index 0000000000..142c5956de --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-02.htm @@ -0,0 +1,4 @@ +Chef Donath:
+Although it's hard to make genuine Bitter Cold Vodka, I can get pretty close!
+But I must have a divine ingredient... Find Chef Jeremy nearby and ask him for an ice crystal.
+I can't make Bitter Cold Vodka without it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-03.htm new file mode 100644 index 0000000000..5dc4828236 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-03.htm @@ -0,0 +1,4 @@ +Chef Donath:
+You brought the ice crystal! Excellent!
+Now I'll make the Bitter Cold Vodka. I must warn you, the power of the spirits within the liquor is not that strong, and over time, it loses its effect. Will that be acceptable?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-04.htm new file mode 100644 index 0000000000..462568bb95 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-04.htm @@ -0,0 +1,2 @@ +Chef Donath:
+Take this Bitter Cold Vodka and return to Prefect Lakan. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-05.htm new file mode 100644 index 0000000000..ddf32f8aab --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-05.htm @@ -0,0 +1,4 @@ +Chef Donath:
+Hmm... if that's what you want, I'll do it. I should able to get pretty close to the original!
+ It will work for a simple ritual, but not in a formal religious rite.
+ I must have a divine ingredient known as an ice crystal. Chef Jeremy can tell you where to find one. I can't make Bitter Cold Vodka without it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-06.htm new file mode 100644 index 0000000000..ebd20ebd35 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/1-06.htm @@ -0,0 +1,3 @@ +Chef Donath:
+Well, if you say so...
+Here you go. Take it to Lakan. This should do the trick. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-01.htm new file mode 100644 index 0000000000..ee2c5d3c0a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-01.htm @@ -0,0 +1,7 @@ +Tablet of Vision:
+You hear a disturbance as you approach the tablet.
+Sounds of rocks crashing, and the roar of a warrior resisting them!
+No fear of the most awesome opponent, eager for death in battle!
+They say Orcs were stronger back in the day and I'm inclined to believe them. But I also know that their fiery blood hasn't changed!
+Is that actually the tablet? The sound of swordplay is carried on the wind.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-02.htm new file mode 100644 index 0000000000..3aa42caf07 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+A warrior with a tattoo of the Hestui tribe is fighting relics of the era of giants! His passionate bravery is a fiercely blazing flame, inextinguishable! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-03.htm new file mode 100644 index 0000000000..f9b60cfb6f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+Hestui Warrior Shak Dun looks at the tablet and then at you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-04.htm new file mode 100644 index 0000000000..5b1d3ffd07 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You feel a presence as you approach the tablet.
+There's a disturbance going on somewhere. Best not to get involved. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-05.htm new file mode 100644 index 0000000000..cc7b246dfe --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you draw near the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-06.htm new file mode 100644 index 0000000000..1a4bf14e62 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-06.htm @@ -0,0 +1,8 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. I can hear laughter as though coming from the back of my head.
+A man's voice states, "Another hero is born."
+A lady, dressed in blue, responds, "No, he has much to learn and experience. I'm afraid I can't give him much power now. But do not worry.
+My brother's vacancy will be filled by a conjured soul."
+The ancient Orc was with the flame of Paagrio. But the present Orc doesn't have it.
+The source of all the Flame Races is obviously fire. Fire can create a limitless power with its strong will. It is the power to be able to fight with a Giant. The will of the Flame Race that has a massive power as well as a Giant can not be defeated...!!
+Is this the power needed, that Perfect Tazki said, to fight against a Giant! Go back to him and tell him about the things that have happened so far. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-07.htm new file mode 100644 index 0000000000..67c5594e95 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Go and see Prefect Tazki in Rune Castle Town and show him how an Orc deals with giants! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/11-01.htm new file mode 100644 index 0000000000..4c904d7a94 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/11-01.htm @@ -0,0 +1,5 @@ +Seer Skahi:
+Duda-Mara!
+You came to see me again as the spider foretold!
+I can't give you the Stone of Commune given me by Hestui's child, but I can tell you how to get one.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/11-02.htm new file mode 100644 index 0000000000..208a328fb2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/11-02.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+Find the Archon of Halisha inside the Four Sepulchers at the Human Imperial Tomb.
+If entering is too difficult, go to the Shrine of the Loyal and fight Halisha's minions. He'll show up if you kill enough of them!
+Defeat him and get the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/11-03.htm new file mode 100644 index 0000000000..1e448bf635 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/11-03.htm @@ -0,0 +1,5 @@ +Seer Skahi:
+Dear Warrior who is looking for the power of the ancient Orcs...!
+The power of this stone was created by the gods but stolen by devils! Find the Archon of Halisha inside the Four Sepulchers at the Human Imperial Tomb!
+If entering is too difficult, go to the Shrine of the Loyal and fight Halisha's minions! He'll show up if you kill enough of them.
+Defeat him and get the Stone of Commune! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-01.htm new file mode 100644 index 0000000000..0a10cd278f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-01.htm @@ -0,0 +1,5 @@ +Prefect Lakan:
+The most powerful warrior? Yeah, right!
+True, I was once a brave warrior of the Atuba tribe, but that was long ago.
+Now I'll never live down the shame of my disgrace...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-02.htm new file mode 100644 index 0000000000..b50dddb594 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-02.htm @@ -0,0 +1,3 @@ +Prefect Lakan:
+I've already said too much. If you want to get me talking, bring me some Bitter Cold Vodka!
+Chef Donath in the hot springs resort can make it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-03.htm new file mode 100644 index 0000000000..137ff829a6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-03.htm @@ -0,0 +1,7 @@ +Prefect Lakan:
+This Bitter Cold Vodka is truly the nectar of the gods!
+It seems like an eternity since I've tasted it! The burn melts my heart and brings back old memories, even though it lacks the true flame of Paagrio!
+I'll tell you my story now, my friend.
+My mistake was failing in my attempt to seize the Tower of Insolence! I haven't been a warrior since! I tried teaching for a while, but I was abandoned by my disciple.
+And that's not all!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-04.htm new file mode 100644 index 0000000000..8386fc49da --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-04.htm @@ -0,0 +1,3 @@ +Prefect Lakan:
+Take this stone south of the Tower of Insolence and commune with the tablet there.
+While you're at it, see if you can find out what happened to my disciple and determine what the exile from the Hestui tribe is up to. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-05.htm new file mode 100644 index 0000000000..bc0f677bf9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-05.htm @@ -0,0 +1,3 @@ +Prefect Lakan:
+I can't bear to face my own people!
+I've even forsaken Oroka since I was betrayed by my disciple, Muhark! I'll tell you what brought me to this sorry state if you bring me some Bitter Cold Vodka, the nectar of the gods! Master Chef Donath in the hot springs area knows how to make it! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-06.htm new file mode 100644 index 0000000000..1dac6679e6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/2-06.htm @@ -0,0 +1,6 @@ +Prefect Lakan:
+Umarak Buka!
+Have you heard of the conquest of the Tower of Insolence? Did you know that there was an exile of the Hestui tribe among the conquerors?!
+That exile was capable of feats that even I, previously known as the strongest of all Orcs, could not do. He followed the path of self-discipline that my disciple abandoned!
+Now you know the depths of my shame. Take this stone and go south of the Tower of Insolence. You'll find a tablet there. Use the stone to commune with it.
+While you're at it, try and find out what happened to my disciple and what the exile of the Hestui tribe is up to. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-01.htm new file mode 100644 index 0000000000..dd91291e51 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-01.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+The spidersilk of Duda-Mara told me you would come.
+This won't be our only meeting.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-02.htm new file mode 100644 index 0000000000..e9dee20761 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-02.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+Go to the Ketra Orc outpost and see Messenger Wahkan. Gain their trust by lending your strength.
+Show the spirit of a warrior!
+But don't forget! If you feel betrayed, there is another way. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-03.htm new file mode 100644 index 0000000000..7699b30246 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-03.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+Meet the Varka Silenos Messenger Naran Ashanuk in their stronghold. Gain their trust by lending your strength!
+To fight the betrayer Orcs is the spirit of a warrior!
+If your suffering is too great, there is another way! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-04.htm new file mode 100644 index 0000000000..c45c8425b6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-04.htm @@ -0,0 +1,3 @@ +Seer Skahi:
+Warrior, you must bring the Divine Stone of Wisdom! To get it you must choose sides in this war. Find Messenger Wahkan of the Ketra Orcs or Messenger Naran Ashanuk of the Varka Silenos.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-05.htm new file mode 100644 index 0000000000..9c4c557a5a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-05.htm @@ -0,0 +1,5 @@ +Seer Skahi:
+Warrior, you have shown the qualities of a king and passed the test by getting the Divine Stone of Wisdom!
+Don't forget the people you helped or the blood you spilled. Never forget that Duda-Mara's spidersilk protects you.
+Hand me the stone!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-06.htm new file mode 100644 index 0000000000..e58a2b01a0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-06.htm @@ -0,0 +1,2 @@ +Seer Skahi :
+Go to the northe of the Varka Silenos Barracks and commune with the Tablet! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-07.htm new file mode 100644 index 0000000000..b5cdf0fd9c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-07.htm @@ -0,0 +1,7 @@ +Seer Skahi:
+Duda-Mara's spirit is preparing us for the eternal winter.
+Here is your test. The Ketra Orcs, a lower race who betrayed us long ago, and the Varka Silenos are at war. They each have a Divine Stone of Wisdom, but you must earn their absolute trust to get it.
+Bring either stone to pass the test.
+Which side do you choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-08.htm new file mode 100644 index 0000000000..fcee62d1f7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/3-08.htm @@ -0,0 +1,3 @@ +Seer Skahi :
+Soul in the stone, wake up and restore the power of the Stone of Commune!
+Warrior, receive this Stone of Commune that you have restored! Go to the Varka Silenos Barracks and tell the resting Tablet to the north what you have done! Eternal Flame is watching you all the time! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-01.htm new file mode 100644 index 0000000000..8bfea9e0b2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-01.htm @@ -0,0 +1,2 @@ +Sake Dun Zu Hestui:
+Show me what you're capable of, Destroyer. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-010.htm new file mode 100644 index 0000000000..3d573b48eb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-010.htm @@ -0,0 +1,5 @@ +Sake Dun Zu Hestui:
+No need to tell me, I'm the Orc who was expelled from the Hestui race and who helped conquer the Tower of Insolence! Luckily I'm relieved of those old burdens.
+I came here to defend my honor and test my strength. Take this stone, you need it more than I.
+I must give chase, see you again in battle someday!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-011.htm new file mode 100644 index 0000000000..704d5785df --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-011.htm @@ -0,0 +1,3 @@ +Sake Dun Zu Hestui:
+No need to tell me, I'm the Orc who was expelled from the Hestui race and who helped conquer the Tower of Insolence! Luckily I'm relieved of those old burdens.
+I came here to defend my honor and test my strength. Take this stone, you need it more than I. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-02.htm new file mode 100644 index 0000000000..1ec5d2f69b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-02.htm @@ -0,0 +1,2 @@ +Sake Dun Zu Hestui:
+This is dangerous, stand back! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-03.htm new file mode 100644 index 0000000000..ab2266534a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-03.htm @@ -0,0 +1,2 @@ +Sake Dun Zu Hestui:
+He escaped! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-04.htm new file mode 100644 index 0000000000..41152d1c63 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-04.htm @@ -0,0 +1,3 @@ +Sake Dun Zu Hestui:
+Tejakar Orka!
+Warrior, raise your sword! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-05.htm new file mode 100644 index 0000000000..c7ca447c10 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-05.htm @@ -0,0 +1,3 @@ +Sake Dun Zu Hestui:
+We meet again.
+It's too dangerous now, stand back! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-06.htm new file mode 100644 index 0000000000..8d654f7ea2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-06.htm @@ -0,0 +1,3 @@ +Sake Dun Zu Hestui:
+Not too shabby, Warrior. You've proven yourself by helping me.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-07.htm new file mode 100644 index 0000000000..8d654f7ea2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-07.htm @@ -0,0 +1,3 @@ +Sake Dun Zu Hestui:
+Not too shabby, Warrior. You've proven yourself by helping me.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-08.htm new file mode 100644 index 0000000000..f6df6e6d02 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-08.htm @@ -0,0 +1,2 @@ +Shak Dun Hestui:
+Don't you need the stone to restore the lost flame of Paagrio? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-09.htm new file mode 100644 index 0000000000..a4588c72b1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/4-09.htm @@ -0,0 +1,3 @@ +Shak Dun Hestui:
+Don't you need the stone to restore the lost flame of Paagrio?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/5-01.htm new file mode 100644 index 0000000000..9291c54fea --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/5-02.htm new file mode 100644 index 0000000000..119cac2498 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/5-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if the wind were singing...
+You sense that the next Stone of Commune is held by many warriors in a place west of the Valley of Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/5-03.htm new file mode 100644 index 0000000000..60c96e2c72 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision :
+Further communion with this tablet is futile. The Guardians of Forbidden Knowledge have the next Stone of Commune in the west of the Valley of Saints. Kill the guardians and take their stone! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/6-01.htm new file mode 100644 index 0000000000..9b98cef8e5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The hieroglyphs on the tablet are indecipherable. The Guardians of Forbidden Knowledge possess the Stone of Commune for this Tablet of Vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/6-02.htm new file mode 100644 index 0000000000..066382b3e5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/6-03.htm new file mode 100644 index 0000000000..447346d102 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if she were quietly laughing at you...
+You sense an Orc named Muhark, who sacrificed his Orcish pride in search of awesome power. He was banned from all tribes for his sacrilege!
+Now he is preventing the birth of an Orc to rival the Giants, by selling its spirit to the Guil tribe. Muhark is standing beside the Tablet of Vision over the border in the former Northern outpost. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/6-04.htm new file mode 100644 index 0000000000..24ddac266c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/6-04.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+You scratch your noggin and wonder why nothing else happens with this Tablet.
+We must prepare by reading books about Fallen Orc Muhar before going into mortal combat with him.
+He awaits us at the north of the Ancient Battleground which lies yonder over the border. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-01.htm new file mode 100644 index 0000000000..7f87476d05 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+As you near the Tablet of Vision, you sense the presence of one who sacrificed his spirit to attain the power to conquer giants!
+Even though his body remains strong, the flame of Paagrio that once burned within him is extinquished. He is a mighty warrior, but can be defeated!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-02.htm new file mode 100644 index 0000000000..e2d8e56eed --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Behold! Before your very eyes! Muhark the Destroyer, the Fallen Noble Orc, the Genius Warrior of the Atuba tribe and the only disciple of Prefect Lakan. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-03.htm new file mode 100644 index 0000000000..a255fa7503 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision is inscribed with incomprehensible hieroglyphs.
+Mudaha's attack continues! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-04.htm new file mode 100644 index 0000000000..5811331d54 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You sense a disturbance near the tablet.
+The time hasn't yet come for you to prove yourself. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-05.htm new file mode 100644 index 0000000000..7de7042a4a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you near the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-06.htm new file mode 100644 index 0000000000..b480f30182 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-06.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a woman's voice.
+A vision appears of a worried man, concerned about the coming winter. He awaits a qualified recruit, and is holding the Stone of Commune!
+Find Seer Skahi in Goddard Castle Town! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-07.htm new file mode 100644 index 0000000000..defb11e896 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/7-07.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet is futile.
+Get the next Stone of Commune from Seer Skahi in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/8-01.htm new file mode 100644 index 0000000000..9b2d20a8f2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/8-02.htm new file mode 100644 index 0000000000..04ad8a5a32 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/8-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A vision appears of a mysterious dark knight...and there is a warrior meeting with Seer Skahi. The Warrior seems lonely but his mind is strong. After he gives the stone to Skahi, he turns his back and disappears. He must be one of the Hestui tribe, and one of their best! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/8-03.htm new file mode 100644 index 0000000000..d0b7b3b88b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/8-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet would be pointless at this time.
+Speak with Seer Skahi in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/9-01.htm new file mode 100644 index 0000000000..f5969da9bf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/9-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+The Stone of Commune that can access this tablet may be obtained at the Imperial Tomb or the Shrine of the Loyal. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/9-02.htm new file mode 100644 index 0000000000..b1278b8534 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/9-03.htm new file mode 100644 index 0000000000..f845557257 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/9-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
A sharp blast of knowlege courses through your cranium! A vision appears of a black knight!
And a huge machine, obeying an ancient command...
Following orders to protect the giant, it hinders the Orc from gaining the power to confront the giant and tricked Muhark into becoming its personal guardian!
The Hestui exile is confronting it with a sword.
You can find the Tablet of Vision in the land of the giants, just north of the Forsaken Plains! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/9-04.htm new file mode 100644 index 0000000000..bc34767ffa --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. The next Stone of Commune is hidden within a giant machine on the Forsaken Plains. Askalius has it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/Q00075_SagaOfTheTitan.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/Q00075_SagaOfTheTitan.java new file mode 100644 index 0000000000..c1ce49088b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00075_SagaOfTheTitan/Q00075_SagaOfTheTitan.java @@ -0,0 +1,105 @@ +/* + * 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.Q00075_SagaOfTheTitan; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Titan (75) + * @author Emperorc + */ +public class Q00075_SagaOfTheTitan extends AbstractSagaQuest +{ + public Q00075_SagaOfTheTitan() + { + super(75); + _npc = new int[] + { + 31327, + 31624, + 31289, + 31290, + 31607, + 31646, + 31649, + 31651, + 31654, + 31655, + 31658, + 31290 + }; + Items = new int[] + { + 7080, + 7539, + 7081, + 7490, + 7273, + 7304, + 7335, + 7366, + 7397, + 7428, + 7098, + 0 + }; + Mob = new int[] + { + 27292, + 27224, + 27283 + }; + classid = new int[] + { + 113 + }; + prevclass = new int[] + { + 0x2e + }; + npcSpawnLocations = new Location[] + { + new Location(119518, -28658, -3811), + new Location(181215, 36676, -4812), + new Location(181227, 36703, -4816) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-01.htm new file mode 100644 index 0000000000..3a3520680d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-01.htm @@ -0,0 +1,4 @@ +Amulet Seller Hakran:
+ We've got a big problem! Do you remember Hubai, Khavatari's eldest son?
+ He knows more about the arts of Khavatari than anyone!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-010.htm new file mode 100644 index 0000000000..e361d00522 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-010.htm @@ -0,0 +1,3 @@ +Amulet Seller Hakran:
+When your wounds have healed and your body has recovered, come back and see me. I need to tell you something.
+(Only a character of level 76 or above may transfer to another class. Don't abandon the quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-02.htm new file mode 100644 index 0000000000..d6fb747b9d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-02.htm @@ -0,0 +1,4 @@ +Amulet Seller Hakran:
+ I probably should even mention the temple's disgrace to you!
+You're bound to find out eventually...? But I don't want to unnecessarily alarm you! Train more...! For now, just prepare for disaster...!
+(Quest available for Tyrants of Level 76 or above only.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-03.htm new file mode 100644 index 0000000000..936b693649 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-03.htm @@ -0,0 +1,7 @@ +Amulet Seller Hakran:
+ He was assassinated.....!
+You're the most accomplished tyrant I've ever seen! I'll wager you could track down that scoundrel...!
+Take this. It's one of three of the Khavatari scrolls left by Hubai!
+The other two are missing, and Khavatari Kashu and Khavatari Urzu, Hubai's disciples, have disappeared as well!
+They were the designated successors of Hubai! I'm afraid that one of them killed Hubai and stole the scrolls!
+Go and see the Duda-Mara totem spirit! He's laid out spider webs in all directions looking for them. He should know by now which way they're headed..! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-04.htm new file mode 100644 index 0000000000..8609315917 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-04.htm @@ -0,0 +1,2 @@ +Amulet Seller Hakran:
+ Visit the Duda-Mara totem spirit. He's laid out webs everywhere. He should know by now which way they're headed..! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-05.htm new file mode 100644 index 0000000000..2a99426a95 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-05.htm @@ -0,0 +1,4 @@ +Amulet Seller Hakran:
+ Exactly! Your old trainer, Khavatari Rosheek, and Khavatari Toruku are disciples of Khavatari Hubai.
+ Such a pity about what happened to Hubai...!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-06.htm new file mode 100644 index 0000000000..f9f71faa54 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-06.htm @@ -0,0 +1,4 @@ +Amulet Seller Hakran:
+Kashu has returned to the village. But you have more business to do, don't you?
+From now on, Khavatari Hubai's job will be done by Khavatari Kashu. He asked me to relay his gratitude for avenging Hubai's death. Have you completed your pilgrimage of the vision?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-07.htm new file mode 100644 index 0000000000..f396c33119 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-07.htm @@ -0,0 +1,3 @@ +Amulet Seller Hakran:
+Very well. As of today, you've officially become Grand Khavatari! This is a reason to celebrate! Grand Khavataris have appeared at the same time!
+Yes, we've lost Hubai... but our future no longer seems so bleak! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-08.htm new file mode 100644 index 0000000000..77c178c110 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-08.htm @@ -0,0 +1,4 @@ +Amulet Seller Hakran:
+Wonderful!
+Go rest for a while and then come back and see me. I have something tell you after you recover your strength.
+(Only a character of level 76 or above can transfer to another class. Don't abandon this quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-09.htm new file mode 100644 index 0000000000..59e1be1dc0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/0-09.htm @@ -0,0 +1,4 @@ +Amulet Seller Hakran:
+Are you well-rested?
+If you''ve completed your pilgrimage of the vision, today you are a Grand Khavatari! Not many have completed that pilgrimage!
+I pray that you and Kashu further develop the arts of Khavatari. Tejakar Khavatari! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-01.htm new file mode 100644 index 0000000000..04ea3dca36 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-01.htm @@ -0,0 +1,3 @@ +Chef Donath:
+Bitter Cold Vodka? Isn't that the Orcish liquor made by mixing the flames of Paagrio with the power of 99 dead spirits? You can't just ask me to make such a....
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-02.htm new file mode 100644 index 0000000000..0c97605f35 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-02.htm @@ -0,0 +1,4 @@ +Chef Donath:
+Although it's practically impossible to make genuine Bitter Cold Vodka, I can get pretty close!
+ I'll need a divine ingredient known as an ice crystal. Chef Jeremy can tell you where to find one.
+I can't make Bitter Cold Vodka without it! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-03.htm new file mode 100644 index 0000000000..141785e6c9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-03.htm @@ -0,0 +1,4 @@ +Chef Donath:
+You brought the ice crystal! Excellent!
+Now I'll make the Bitter Cold Vodka. I must warn you, the power of the spirits within the liquor is not that strong, and over time, it loses its effect. Will that be acceptable?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-04.htm new file mode 100644 index 0000000000..26a320498a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-04.htm @@ -0,0 +1,3 @@ +Chef Donath:
+Maybe a dead spirit could notice the difference, but without the actual flames of Paagrio and the dead spirits, this is the best that I can do.
+Take it and go. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-05.htm new file mode 100644 index 0000000000..57e589303b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-05.htm @@ -0,0 +1,4 @@ +Chef Donath:
+Hmm... if that's what you want, I'll do it, but only if you're sure that's what you really want!
+I should be able to get pretty close to the original. It'll do for a simple ritual, but not for a formal religious rite.
+ I must have a divine ingredient known as an ice crystal! Chef Jeremy can tell you where to get one. I can't make Bitter Cold Vodka without it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-06.htm new file mode 100644 index 0000000000..287710753c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/1-06.htm @@ -0,0 +1,3 @@ +Chef Donath:
+If you say so, it's all right with me!
+Here we go! Working with dead spirits always makes me so nervous! Take it and go! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-01.htm new file mode 100644 index 0000000000..cfde761fc4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+You hear fighting and the yell of Khavatari.
+The opponent is the god of flame, who can't be defeated alone!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-02.htm new file mode 100644 index 0000000000..e5efca85d3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Khavatari Kashu, Hubai's disciple, fights with the evil Spirit of Flame. Go help! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-03.htm new file mode 100644 index 0000000000..7f437bfcac --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet doesn't respond.
+Khavatari Kashu looks as if she has something to say. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-04.htm new file mode 100644 index 0000000000..7c9ff01993 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You feel someone's presence as you approach.
+This is not your fight. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-05.htm new file mode 100644 index 0000000000..682fd8450d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune emits light as you approach the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-06.htm new file mode 100644 index 0000000000..030f1a705f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-06.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+Vast amounts of knowledge rush into your mind. You hear the sound of distant laughter.
+A voice whispers, "Another Hero is born."
+The lady in blue disagrees...
+Khavatari talks of the stream cooling the soul of flame, that is Paagrio's union with the gods!
+The flame is within you. Follow Kashu and see Amulet Seller Hakran in Rune Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-07.htm new file mode 100644 index 0000000000..8c21bec2fb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Communion with this tablet would be futile. Go see Amulet Seller Hakran in Rune Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/11-01.htm new file mode 100644 index 0000000000..3c16443fe7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/11-01.htm @@ -0,0 +1,6 @@ +Seer Skahi:
+Tejakar Duda-Mara!
+You came to see me again as the spider foretold!
+Khavatari Kashu has left for the last stone tablet!
+Hurry, he'll need your help!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/11-02.htm new file mode 100644 index 0000000000..208a328fb2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/11-02.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+Find the Archon of Halisha inside the Four Sepulchers at the Human Imperial Tomb.
+If entering is too difficult, go to the Shrine of the Loyal and fight Halisha's minions. He'll show up if you kill enough of them!
+Defeat him and get the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/11-03.htm new file mode 100644 index 0000000000..9c2a4f23f8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/11-03.htm @@ -0,0 +1,5 @@ +Seer Skahi:
+The power of the ancient Orcs that you seek was created by the gods, but stolen by devils.
+Find the Archon of Halisha inside the Four Sepulchers at the Human Imperial Tomb!
+If entering is too difficult, go to the Shrine of the Loyal and fight Halisha's minions! He'll show up if you kill enough of them.
+Defeat him and get the Stone of Commune! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-01.htm new file mode 100644 index 0000000000..80baea6c8c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-01.htm @@ -0,0 +1,4 @@ +Duda-Mara Totem Spirit:
+ Heh heh... a young Orc seeking information...
+ I know exactly why you're here! You're trying to find the two Orcs who murdered Khavatari Hubai, aren't you?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-02.htm new file mode 100644 index 0000000000..9f154a8698 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-02.htm @@ -0,0 +1,3 @@ +Duda-Mara Totem Spirit:
+How dare you come here empty-handed! Don't you know who I am?
+Show the proper respect! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-03.htm new file mode 100644 index 0000000000..75447c9d5f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-03.htm @@ -0,0 +1,5 @@ +Duda-Mara Totem Spirit:
+ Have you brought liquor for the ritual?
+Well, it's not enough, but it's certainly better than nothing!
+ Give me your hand.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-04.htm new file mode 100644 index 0000000000..3efe2f48cf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-04.htm @@ -0,0 +1,2 @@ +Duda-Mara Totem Spirit:
+The time has come for your last journey of training as a tyrant. Go to the Tablet of Vision, my child. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-05.htm new file mode 100644 index 0000000000..b540361c0c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-05.htm @@ -0,0 +1,3 @@ +Duda-Mara Totem Spirit:
+You rascal! You dare ask for my help without bringing anything for me?! The least you could've done is brought me some Bitter Cold Vodka!
+You're lucky I don't skin you alive! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-06.htm new file mode 100644 index 0000000000..70afc229fd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/2-06.htm @@ -0,0 +1,5 @@ +Duda-Mara Totem Spirit:
+ Take this stone that the god of fire has entrusted with your tribe. Two of Hubai's disciples stole it from him. Things did not go well as they left on their last training mission as tyrants...
+ I'm afraid one of them killed Hubai, and the other is relentlessly pursuing the killer!
+ To find them, you must undertake the last training journey of a tyrant.
+ First you must learn from the stone of vision near the Tower of Insolence. You should get going! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-01.htm new file mode 100644 index 0000000000..5a1766c6fb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-01.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+The spidersilk of Duda-Mara told me you would come.
+This won't be our only meeting.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-02.htm new file mode 100644 index 0000000000..1cb8fb07b0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-02.htm @@ -0,0 +1,4 @@ +Seer Skahi :
+Warrior, then, go to Ketra Orc Outpost first and see Ketra's Messenger Wahkan. So, gain their trust and give them a hand!
+I, the Seer, will consider you as great one through your mind to help Betrayer Orc! Do what you want!
+But, don't forget! There are more than one stone! When you are betrayed and suffered, another way is also waiting for you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-03.htm new file mode 100644 index 0000000000..6839c93d9d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-03.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+Meet Varka's Messenger Naran Ashanuk in the Varka Silenos stronghold. Gain their trust by lending your strength!
+To kill betrayer Orcs is the spirit of a warrior!
+If your suffering is too great, there is another way! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-04.htm new file mode 100644 index 0000000000..ca01006bdd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-04.htm @@ -0,0 +1,2 @@ +Seer Skahi:
+Warrior, you must bring the Divine Stone of Wisdom! To get it you must choose sides in this war. Find Messenger Wahkan of the Ketra Orcs or Messenger Naran Ashanuk of the Varka Silenos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-05.htm new file mode 100644 index 0000000000..8618f61e26 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-05.htm @@ -0,0 +1,5 @@ +Seer Skahi:
+Warrior, you have shown the qualities of a king and passed the test by getting the Divine Stone of Wisdom!
+Don't forget the people you helped or the blood you spilled. Never forget that Duda-Mara's totem spirit protects you.
+Hand me the stone!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-06.htm new file mode 100644 index 0000000000..e58a2b01a0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-06.htm @@ -0,0 +1,2 @@ +Seer Skahi :
+Go to the northe of the Varka Silenos Barracks and commune with the Tablet! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-07.htm new file mode 100644 index 0000000000..ce11327fba --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-07.htm @@ -0,0 +1,7 @@ +Seer Skahi:
+Flame Spirit Ajirua is preparing you for Khavatari's test.
+Here it is. The Ketra Orcs, a lower race who betrayed us long ago, and the Varka Silenos are at war. They each have a Divine Stone of Wisdom, but you must earn their absolute trust to get it.
+Bring either stone to pass the test.
+Which side do you choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-08.htm new file mode 100644 index 0000000000..6932f3dccf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/3-08.htm @@ -0,0 +1,3 @@ +Seer Skahi :
+Soul in the stone, Wake up and restore the power of the Stone of Commune!
+Warrior, receive this Stone of Commune you have restored! Go to Varka Silenos Barracks and say what you have done to the Tablet in the north! Eternal Flame is watching you all the time! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-01.htm new file mode 100644 index 0000000000..5c840ea449 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-01.htm @@ -0,0 +1,2 @@ +Khavatari Kashu:
+Welcome, brother! Come and fight with me! Follow the teachings of the vision! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-010.htm new file mode 100644 index 0000000000..3a06e00f4c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-010.htm @@ -0,0 +1,5 @@ +Khavatari Kashu:
+With your help, I was able to defeat my opponent! Here, take this.
+ You'll need this to complete the final stage of the pilgrimage of vision the master told you about..
+I'm content with the fact that I slaughtered the enemy of my master. I'll return now. Take your time, and return when you finish your mission!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-011.htm new file mode 100644 index 0000000000..09529d6857 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-011.htm @@ -0,0 +1,5 @@ +Khavatari Kashu:
+With your help, I was able to defeat my opponent! Here, take this.
+ You'll need this to complete the final stage of the pilgrimage of vision the master told you about..
+I'm content with the fact that I slaughtered the enemy of my master. I'll return now. Take your time, and return when you finish your mission!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-02.htm new file mode 100644 index 0000000000..9666d1aa71 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-02.htm @@ -0,0 +1,2 @@ +Khavatari Kashu:
+It's too dangerous! You can't beat this guy unless you possess the flow of Khavatari! Step back! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-03.htm new file mode 100644 index 0000000000..bc39a46904 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-03.htm @@ -0,0 +1,2 @@ +Khavatari Kashu:
+Argh..., I'm hurt! I need to rest. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-04.htm new file mode 100644 index 0000000000..6f08cd6c42 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-04.htm @@ -0,0 +1,3 @@ +Khavatari Kashu:
+Watch out!
+Don't lose your calm and fight the flow! We must concentrate all of our energy into this fight! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-05.htm new file mode 100644 index 0000000000..63f7024331 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-05.htm @@ -0,0 +1,2 @@ +Khavatari Kashu:
+Long time no see, my brother! Why don't you take a break? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-06.htm new file mode 100644 index 0000000000..b08911966d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-06.htm @@ -0,0 +1,7 @@ +Khavatari Kashu:
+Did he withdraw?
+Excellent! Even with both of us fighting against him, we faced a serious risk of being turned into blackened pieces of Charcoal!
+Your level of Khavatari is quite impressive! Well, I guess that's obvious since you've made it this far, right...?
+Skahi told me about you when we lost our brother to that beast! At that moment, I placed all my trust in you!
+Now, give me your hand.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-07.htm new file mode 100644 index 0000000000..ed7bb0d811 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-07.htm @@ -0,0 +1,7 @@ +Khavatari Kashu:
+Did he withdraw?
+Excellent! Even with both of us fighting against him, we faced a serious risk of being turned into blackened pieces of Charcoal!
+Your level of Khavatari is quite impressive! Well, I guess that's obvious since you've made it this far, right...?
+Skahi told me about you when we lost our brother to that beast! At that moment, I placed all my trust in you!
+Now, give me your hand.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-08.htm new file mode 100644 index 0000000000..33ea6f0635 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-08.htm @@ -0,0 +1,3 @@ +Khavatari Kashu:
+Use that stone to finish your pilgrimage of the vision!
+Pay no attention to me! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-09.htm new file mode 100644 index 0000000000..7d7d423dda --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/4-09.htm @@ -0,0 +1,2 @@ +Khavatari Kashu:
+Take the stone and finish your pilgrimage of vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/5-01.htm new file mode 100644 index 0000000000..66125f08d5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/5-02.htm new file mode 100644 index 0000000000..d4b7e9fb91 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/5-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if the wind were singing...
+You sense that the next Stone of Commune is held by many warriors in a place northeast of the Valley of Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/5-03.htm new file mode 100644 index 0000000000..82f58f6ffd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision :
+Further communion with this tablet is futile. Now you must go to the Valley of Saints. Kill the Guardians of Forbidden Knowledge and take the Stone of Commune held by them in the northeast of the Valley of Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/6-01.htm new file mode 100644 index 0000000000..46d8480c17 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The hieroglyphs on the tablet are indecipherable. The Guardians of Forbidden Knowledge hold the Stone of Commune you'll need to access this tablet. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/6-02.htm new file mode 100644 index 0000000000..f3261b57b8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/6-03.htm new file mode 100644 index 0000000000..a8b0e7d0c9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/6-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a woman's voice.
+You see a vision of the tyrant, tempted by power, killing his teacher and fleeing to the Ketra Orc Outpost. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/6-04.htm new file mode 100644 index 0000000000..e01d198162 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/6-04.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Further communion with this tablet is futile.
+Use the scroll of Khavatari to destroy the apostate Orc!
+He can be found in the Ketra Orc Outpost. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-01.htm new file mode 100644 index 0000000000..06677a731d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-01.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+As you near the Tablet of Vision, you sense a presence. It's the peculiar flame of jealousy for the one tempted by the devil Khavatari!
+It promises quick training, but eventually leads to destruction. You see an Orc who has taken this path.
+He's watching you as well!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-02.htm new file mode 100644 index 0000000000..ad161f7d9e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+It's Uruz, the senior disciple! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-03.htm new file mode 100644 index 0000000000..99e2df0d08 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision is inscribed with incomprehensible hieroglyphs.
+ Uruz's attack continues! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-04.htm new file mode 100644 index 0000000000..5811331d54 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You sense a disturbance near the tablet.
+The time hasn't yet come for you to prove yourself. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-05.htm new file mode 100644 index 0000000000..f52741a53d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-06.htm new file mode 100644 index 0000000000..504221e068 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-06.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a female's voice...
+Two tyrants asked Khavatari Hubai to name his successor. Though Hubai thought it was not the right time, he couldn't ignore Uruz and told him to teach the secrets to the one who finished the Pilgrimage of Vision.
+But Uruz was tempted by Ajirua on the way. Ajirua...! That devil showed up several times in the history of Khavatari!
+Find out more from Seer Skahi at the Orc Guild in Goddard Castle Town! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-07.htm new file mode 100644 index 0000000000..defb11e896 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/7-07.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet is futile.
+Get the next Stone of Commune from Seer Skahi in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/8-01.htm new file mode 100644 index 0000000000..48778e03a4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/8-02.htm new file mode 100644 index 0000000000..95597de51b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/8-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A vision appears of a mysterious dark knight...
+A lonely warrior of Khavatari meets with Seer Skahi. The Warrior is lonely but his mind is strong. He disappeared with the Stone of Commune after talking with Skahi. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/8-03.htm new file mode 100644 index 0000000000..d0b7b3b88b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/8-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet would be pointless at this time.
+Speak with Seer Skahi in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/9-01.htm new file mode 100644 index 0000000000..f5969da9bf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/9-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+The Stone of Commune that can access this tablet may be obtained at the Imperial Tomb or the Shrine of the Loyal. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/9-02.htm new file mode 100644 index 0000000000..ea8d12f464 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/9-03.htm new file mode 100644 index 0000000000..c30e5f5ae7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/9-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. I think I saw a man in black armor somewhere...
+The visions continue... The image of Ajirua coiled in dry flames...
+It is the flame of the founder and of eternity. It is a huge flame that seemingly swallows itself as it spins inversely. It begins to change shape and reveals Khavatari Uruz who is waiting for Khavatari Kashu who is near the Hunters Village.
+Khavatari Kashu want to confront Uruz alone! Let's hurry and help him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/9-04.htm new file mode 100644 index 0000000000..c5ee85cdb9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Find the evil spirit Ajirua near Hunters Village! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/Q00076_SagaOfTheGrandKhavatari.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/Q00076_SagaOfTheGrandKhavatari.java new file mode 100644 index 0000000000..1bf6fc6d52 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00076_SagaOfTheGrandKhavatari/Q00076_SagaOfTheGrandKhavatari.java @@ -0,0 +1,105 @@ +/* + * 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.Q00076_SagaOfTheGrandKhavatari; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Grand Khavatari (76) + * @author Emperorc + */ +public class Q00076_SagaOfTheGrandKhavatari extends AbstractSagaQuest +{ + public Q00076_SagaOfTheGrandKhavatari() + { + super(76); + _npc = new int[] + { + 31339, + 31624, + 31589, + 31290, + 31637, + 31646, + 31647, + 31652, + 31654, + 31655, + 31659, + 31290 + }; + Items = new int[] + { + 7080, + 7539, + 7081, + 7491, + 7274, + 7305, + 7336, + 7367, + 7398, + 7429, + 7099, + 0 + }; + Mob = new int[] + { + 27293, + 27226, + 27284 + }; + classid = new int[] + { + 114 + }; + prevclass = new int[] + { + 0x30 + }; + npcSpawnLocations = new Location[] + { + new Location(161719, -92823, -1893), + new Location(124355, 82155, -2803), + new Location(124376, 82127, -2796) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-01.htm new file mode 100644 index 0000000000..93d00faf4b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-01.htm @@ -0,0 +1,4 @@ +Grand Seer Rahorakti:
+Welcome, young Overlord!
+Have you heard of the recent goings-on among the six Orc tribes?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-010.htm new file mode 100644 index 0000000000..c41afdd3fc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-010.htm @@ -0,0 +1,3 @@ +Grand Seer Rahorakti:
+Although you have what it takes to be a king, you should go and get stronger. Authority without power is meaningless!
+(Only a character of level 76 may transfer class. Don't abandon the quest before class transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-02.htm new file mode 100644 index 0000000000..14766ab4ec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-02.htm @@ -0,0 +1,3 @@ +Grand Seer Rahorakti:
+Flame Lord Kakai has amazing powers, but even they aren't enough alone! I have great hopes for you, but you're not ready yet.
+(This quest may only be undertaken by an Overlord of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-03.htm new file mode 100644 index 0000000000..69af59535e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-03.htm @@ -0,0 +1,4 @@ +Grand Seer Rahorakti:
+ Flame Lord Kakai has truly amazing power! Without him we would never survive the endless winter! But alas, he has no successor. If he dies now, who will save us?
+ Overlords are quite rare in these parts. Among them, those worthy of becoming king are even fewer! I've lost touch with Cardia of the Hestui tribe and Akkan of the Neruga tribe... Even Atlus of the Gandi tribe has disappeared without a trace!
+ You're my only hope! All I could find out from the Dudamara was where Flame Successor Akkan may be headed! Please go after him, my Overlord! I've heard that a Ketra Orc Messenger of the Betrayer Lesser Orcs has met with him. You must find Akkan! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-04.htm new file mode 100644 index 0000000000..2301907a8f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-04.htm @@ -0,0 +1,2 @@ +Grand Seer Rahorakti:
+ All I could find out from the Dudamara was where Flame Successor Akkan may be headed! Please go after him, my Overlord! I've heard that a Ketra Orc Messenger of the Betrayer Lesser Orcs has met with him. You must find Akkan! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-05.htm new file mode 100644 index 0000000000..6a524a1ed5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-05.htm @@ -0,0 +1,3 @@ +Grand Seer Rahorakti:
+In the beginning, the six Orc tribes were equal. Over time, the Hestuis rose to prominence, and the other tribes began following them. The Atubas were in charge of raising Warriors, the Dudamaras were in charge of Khavatari and the Hestui tribe performed all the rituals for the ancestors. Now, with the endless winter upon us, we are threatened by total chaos!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-06.htm new file mode 100644 index 0000000000..d531344172 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-06.htm @@ -0,0 +1,4 @@ +Grand Seer Rahorakti:
+Thank you, Overlord! Although you couldn't find Atlus of the Gandi tribe, thanks to you, Flame Successor Akkan has returned to us!
+Let me tell you one more thing. Your success means that you've completed the Pilgrimage of the King! No one's done that since ancient times!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-07.htm new file mode 100644 index 0000000000..e3eaa2a374 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-07.htm @@ -0,0 +1,4 @@ +Grand Seer Rahorakti:
+According to historical documents, whoever completes the Pilgrimage of the King obtains the right to rule! Flame Successor Akkan has recommended that you become one of the successors of the sacred flame! Of course, this doesn't mean that you could be king, but at least now you stand a better chance of becoming a chief!
+Judging by the way the Dudamara told me you led the king's pilgrim, you definitely have what it takes to lead a tribe!
+You must remember to always behave accordingly! Your world is what you make it! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-08.htm new file mode 100644 index 0000000000..b55600aa70 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-08.htm @@ -0,0 +1,4 @@ +Grand Seer Rahorakti:
+You now have the opportunity to become a ruler.
+Flame Successor Akkan has recommended you personally to Flame Lord Kakai! You'll be right at the top with Akkan and Cardia, my friend! Why don't you go try to get a little stronger?
+(Only a character of level 76 may transfer class. Do not abandon the quest before class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-09.htm new file mode 100644 index 0000000000..c40c6328e6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/0-09.htm @@ -0,0 +1,3 @@ +Grand Seer Rahorakti:
+According to the Dudamara, you have what it takes to rule a tribe.
+Act accordingly! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-01.htm new file mode 100644 index 0000000000..55f6bad73f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-01.htm @@ -0,0 +1,3 @@ +Chef Donath:
+Bitter Cold Vodka? Isn't that the Orcish liquor made by mixing the flames of Paagrio with the power of 99 dead spirits? You can't just ask me to make such a....
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-02.htm new file mode 100644 index 0000000000..5c193a83f4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-02.htm @@ -0,0 +1,4 @@ +Chef Donath:
+ Genuine Bitter Cold Vodka is practically impossible to make, but I can get pretty close!
+ I'll need a divine ingredient known as an ice crystal. Chef Jeremy can tell you where to find one.
+I can't make Bitter Cold Vodka without it! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-03.htm new file mode 100644 index 0000000000..f5612b2dee --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-03.htm @@ -0,0 +1,4 @@ +Chef Donath:
+You brought the ice crystal! Excellent!
+Now I'll make the Bitter Cold Vodka. I must warn you, the power of the spirits within the liquor is not that strong, and over time, it loses its effect. Will that be acceptable?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-04.htm new file mode 100644 index 0000000000..0e17b1781c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-04.htm @@ -0,0 +1,2 @@ +Chef Donath:
+Take the vodka at the absolute zero point, and return to Ketra's Messenger Wahkan. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-05.htm new file mode 100644 index 0000000000..ddf32f8aab --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-05.htm @@ -0,0 +1,4 @@ +Chef Donath:
+Hmm... if that's what you want, I'll do it. I should able to get pretty close to the original!
+ It will work for a simple ritual, but not in a formal religious rite.
+ I must have a divine ingredient known as an ice crystal. Chef Jeremy can tell you where to find one. I can't make Bitter Cold Vodka without it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-06.htm new file mode 100644 index 0000000000..a34a11b956 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/1-06.htm @@ -0,0 +1,3 @@ +Chef Donath:
+ Okay, then.
+ Here it is! Take this, and return to Ketra's Messenger Wahkan. It should work fine! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-01.htm new file mode 100644 index 0000000000..0be4cc7a8f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-01.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You hear angry screams and the sounds of battle.
+The power of a tyrant is present here.
+The tablet is before your eyes.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-02.htm new file mode 100644 index 0000000000..b958ef64e0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Darkness surrounds the king who is not king. Flame Successor Akkan rules the kingdom in all but name. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-03.htm new file mode 100644 index 0000000000..20cabe734a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+Akkan turns this way and smiles. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-04.htm new file mode 100644 index 0000000000..e5ec13c78d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+There is someone else here.
+You hear fighting. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-05.htm new file mode 100644 index 0000000000..ec415ccbf8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune emits light as you approach.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-06.htm new file mode 100644 index 0000000000..a867eed9a4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-06.htm @@ -0,0 +1,8 @@ +Tablet of Vision:
+Great knowledge rushes into your mind. You hear the sound of distant laughter.
+A voice whispers, "Another Hero is born."
+A lady in blue answers, "No, he's just beginning. I can't give him much power yet, but he conjured the soul himself and filled my brother's vacancy."
+As the power of a king rises, so does the darkness surrounding him.
+A king must know his boundaries as his power can be defeated by shadow or light.
+A tyrant that seeks power above all else may lose his following, yet one who cowers behind the light must call upon people with greater powers than his own.
+Speak with Grand Seer Rahorakti. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-07.htm new file mode 100644 index 0000000000..a221398ff8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Everything has been solved! Speak with Rahorakti in Rune Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/11-01.htm new file mode 100644 index 0000000000..6a338483ac --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/11-01.htm @@ -0,0 +1,5 @@ +Seer Skahi:
+Tejakar Paagrio!
+You returned! Flame Successor Akkan has learned that the greater your deeds are, the darker your shadow is.
+Wisdom and strength are not the only qualities of a king. What do you think it means to be a king?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/11-02.htm new file mode 100644 index 0000000000..208a328fb2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/11-02.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+Find the Archon of Halisha inside the Four Sepulchers at the Human Imperial Tomb.
+If entering is too difficult, go to the Shrine of the Loyal and fight Halisha's minions. He'll show up if you kill enough of them!
+Defeat him and get the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/11-03.htm new file mode 100644 index 0000000000..6156e14e2b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/11-03.htm @@ -0,0 +1,6 @@ +Seer Skahi:
+Follow him to get to the truth. You must find the Stone of Commune.
+The power of the king that you seek was created by the gods, but stolen by devils.
+Find the Archon of Halisha inside the Four Sepulchers at the Human Imperial Tomb!
+If entering is too difficult, go to the Shrine of the Loyal and fight Halisha's minions! He'll show up if you kill enough of them.
+Defeat him and get the Stone of Commune! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-01.htm new file mode 100644 index 0000000000..c95eaae9b7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-01.htm @@ -0,0 +1,3 @@ +Ketra's Messenger Wahkan:
+Does your visit have anything to do with the Flame Successor who recently passed by?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-02.htm new file mode 100644 index 0000000000..abb2f07b87 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-02.htm @@ -0,0 +1,2 @@ +Ketra's Messenger Wahkan:
+Not done yet? Find Master Chef Donath. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-03.htm new file mode 100644 index 0000000000..9f217c3aca --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-03.htm @@ -0,0 +1,4 @@ +Ketra's Messenger Wahkan:
+Our chief shaman uses something similar to perform a ritual, but what you have clearly has more divine power!
+The Flame Successor is one of very few Orcs who has the qualities of a king!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-04.htm new file mode 100644 index 0000000000..42c5d07477 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-04.htm @@ -0,0 +1,2 @@ +Ketra's Messenger Wahkan:
+Take the stone to the south of the Tower of Insolence! That's all we know of the King's journeys. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-05.htm new file mode 100644 index 0000000000..97f7092295 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-05.htm @@ -0,0 +1,4 @@ +Ketra's Messenger Wahkan:
+Want to know more, huh?
+First do me a favor! Bring me the Bitter Cold Vodka that the 6 Noble Orcs stole to dedicate to the 99 souls. You must not be caught by the Lord of Flame!
+Meet Master Chef Donath in the northern hot springs area. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-06.htm new file mode 100644 index 0000000000..58f887c163 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/2-06.htm @@ -0,0 +1,5 @@ +Ketra's Messenger Wahkan:
+An Overlord should know about the qualities of a King! It's not about the power.
+There are so many cultures lost because of the Humans. You must look beyond your roots to understand.
+Despite our long bloodlines, the Orc Kingdom is descended from you, the family of flame! This sacred stone of vision holds the mystery of the King's path.
+He was on the forgotten pilgrimage of the Orcs. This is all that I know. Take this stone to the south of the Tower of Insolence! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-01.htm new file mode 100644 index 0000000000..7bbe97a2a2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-01.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+The spidersilk of Duda-Mara told me you would come.
+We will meet again, but you must do something first.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-02.htm new file mode 100644 index 0000000000..8529424076 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-02.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+Go to the Ketra Orc outpost and see Messenger Wahkan. Gain their trust by lending your strength.
+Show the spirit of a warrior!
+If you feel betrayed, there is another way. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-03.htm new file mode 100644 index 0000000000..668e29e92a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-03.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+Meet Varka's Messenger Naran Ashanuk in the Varka Silenos stronghold. Gain their trust by lending your strength!
+To fight the betrayer Orcs is the spirit of a warrior!
+If your suffering is too great, there is another way! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-04.htm new file mode 100644 index 0000000000..ca01006bdd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-04.htm @@ -0,0 +1,2 @@ +Seer Skahi:
+Warrior, you must bring the Divine Stone of Wisdom! To get it you must choose sides in this war. Find Messenger Wahkan of the Ketra Orcs or Messenger Naran Ashanuk of the Varka Silenos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-05.htm new file mode 100644 index 0000000000..41f35e2a42 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-05.htm @@ -0,0 +1,5 @@ +Seer Skahi:
+Warrior, you have shown the qualities of a king and passed the test by getting the Divine Stone of Wisdom!
+Don't forget the people you helped or the blood you spilled. Never forget that Duda-Mara's spidersilk protects you.
+Hand me the stone!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-06.htm new file mode 100644 index 0000000000..e58a2b01a0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-06.htm @@ -0,0 +1,2 @@ +Seer Skahi :
+Go to the northe of the Varka Silenos Barracks and commune with the Tablet! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-07.htm new file mode 100644 index 0000000000..827bda1d22 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-07.htm @@ -0,0 +1,7 @@ +Seer Skahi:
+You'd be called a king if you had a throne!
+Here is your test. The Ketra Orcs, a lower race who betrayed us long ago, and the Varka Silenos are at war. They each have a Divine Stone of Wisdom, but you must earn their absolute trust to get it.
+Bring either stone to pass the test.
+Which side do you choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-08.htm new file mode 100644 index 0000000000..85d57773c3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/3-08.htm @@ -0,0 +1,3 @@ +Seer Skahi :
+Hear my words Soul that is contained within the stone! Wake up and restore the power of the Stone of Commune!
+The one who has the quality of a king, receive this Stone of Commune you restored! Go to the Tablet in the north of the Varka Silenos Barracks and tell it what you have done! The Eternal Flame is watching you always! Tejakar Oroka! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-01.htm new file mode 100644 index 0000000000..10666caeed --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-01.htm @@ -0,0 +1,2 @@ +Flame Successor Akkan:
+At last, someone to help me deal with that despot! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-010.htm new file mode 100644 index 0000000000..051efe6b2f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-010.htm @@ -0,0 +1,5 @@ +Flame Successor Akkan:
+ My older sister Cardia told me long ago that she wasn't fit to be queen.
+Now I know why! I'll never forget what I felt during those fights! I'm not sure what's coming next, but at least I know myself!
+Take this Stone of Commune, you'll need it on your pilgrimage. Now I must return to Flame Lord Kakai. Goodbye for now!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-011.htm new file mode 100644 index 0000000000..9dfd4506a2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-011.htm @@ -0,0 +1,4 @@ +Flame Successor Akkan:
+My elder sister Cardia told me long ago she wasn't fit to be queen.
+I can't say exactly what's next, but now I know how big my vessel is!
+You'll need this Stone of Commune for the Pilgrimage of the King. Now I must return to Flame Lord Kakai. Goodbye for now! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-02.htm new file mode 100644 index 0000000000..0ebf0fcc5e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-02.htm @@ -0,0 +1,2 @@ +Flame Successor Akkan:
+That man is a despot! If you don't leave, you might be sacrificed! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-03.htm new file mode 100644 index 0000000000..e28945e2ea --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-03.htm @@ -0,0 +1,2 @@ +Flame Successor Akkan:
+I can't let this go. I need some help dealing with this despot. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-04.htm new file mode 100644 index 0000000000..f0abfb9fcc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-04.htm @@ -0,0 +1,2 @@ +Flame Successor Akkan:
+I can't pretend I don't know anything like that old man of Elmore did. By Atlus of Gandi, I also won't be like Hallate, who said he saw something when he didn't! I must be of sound mind for the upcoming winter! Help me defeat him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-05.htm new file mode 100644 index 0000000000..ee2a8610da --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-05.htm @@ -0,0 +1,2 @@ +Flame Successor Akkan:
+This is not your fight! I command you to leave! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-06.htm new file mode 100644 index 0000000000..9b9eec1f40 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-06.htm @@ -0,0 +1,4 @@ +Flame Successor Akkan:
+ Thanks to you, I defeated the despot!
+ I now know what I must do.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-07.htm new file mode 100644 index 0000000000..614a0d3f2e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-07.htm @@ -0,0 +1,4 @@ +Flame Successor Akkan:
+Thanks, you saved my life!
+ Now I know what I must do.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-08.htm new file mode 100644 index 0000000000..681fe530ca --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-08.htm @@ -0,0 +1,3 @@ +Flame Successor Akkan:
+ You haven't finished the Pilgrimage of the King yet?
+ Use the Stone of Commune to find the stone tablet. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-09.htm new file mode 100644 index 0000000000..681fe530ca --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/4-09.htm @@ -0,0 +1,3 @@ +Flame Successor Akkan:
+ You haven't finished the Pilgrimage of the King yet?
+ Use the Stone of Commune to find the stone tablet. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/5-01.htm new file mode 100644 index 0000000000..8b5ce92003 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/5-02.htm new file mode 100644 index 0000000000..d28b7e8ee2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/5-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if the wind were singing...
+You sense that the next Stone of Commune is held by many warriors in a place south of the Valley of Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/5-03.htm new file mode 100644 index 0000000000..e789025573 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision :
+Further communion with this tablet is futile. The Guardians of Forbidden Knowledge have the next Stone of Commune in the south of the Valley of Saints. Kill the guardians and take their stone! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/6-01.htm new file mode 100644 index 0000000000..505f98d23a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The hieroglyphs on the tablet are indecipherable. Retrieve the Stone of Commune from the Guardians of Forbidden Knowledge. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/6-02.htm new file mode 100644 index 0000000000..4782d0aa01 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/6-03.htm new file mode 100644 index 0000000000..a5fecf4efc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/6-03.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a woman's voice.
+You see Kadia, the Hestui who threw herself into the nest of Antharas in order to find herself, and Akkan, the Successor of Flame, who missed her so badly that he decided to become a king and went on a pilgrimage.
+And Atrus, in search of the ancient conqueror!
+Kadia found herself and Akkan found he wasn't really cut out to be a king. But Atrus... Well, she gave into the temptations of power!
+Now she stands before the Tablet of Vision holding the Stone of Commune! You can find her near the Ketra Orc Outpost! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/6-04.htm new file mode 100644 index 0000000000..b066c9ea41 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/6-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet is futile.
+Kill Atrus of the Gandi tribe and take her Stone of Commune! You'll find her near the Ketra Orc Outpost. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-01.htm new file mode 100644 index 0000000000..8d202d9296 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+As you near the Tablet of Vision, you sense the presence of the one who sought ultimate power by currying the favor of the King. It's the tyrant!
+He smiles smugly while rubbing the Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-02.htm new file mode 100644 index 0000000000..312f9dd893 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Overlord Atrus has no more qualities of a king than any common Orc! He's no more than a tyrant! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-03.htm new file mode 100644 index 0000000000..2f06a9e6e5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is engraved with indecipherable hieroglyphs.
+Atrus's offensive continues! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-04.htm new file mode 100644 index 0000000000..65891336d7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You sense a disturbance near the Tablet of Vision.
+The time has not yet come for you to prove yourself. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-05.htm new file mode 100644 index 0000000000..e14403fa42 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-06.htm new file mode 100644 index 0000000000..d640a4d982 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-06.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a female's voice...
+What is a king? A king holds his people, land, army and magic in his arms. What an awesome responsibility!
+The Silvery Spidersilk shines in the dark. The seer of the Orc Guild in Goddard Castle Town has Skahi's ear. Skahi looks this way and motions you to come along quickly. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-07.htm new file mode 100644 index 0000000000..6edcfaa9f1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/7-07.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet is futile. You must find the next Stone of Commune!
+The one who has the next Stone of Commune is Seer Skahi in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/8-01.htm new file mode 100644 index 0000000000..cdf5270106 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/8-02.htm new file mode 100644 index 0000000000..9ef7bfa315 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/8-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A vision appears of a mysterious dark knight...
+The King is tormented, and his mind is slipping. His inability to discern right from wrong has already led to needless deaths. In an epic battle between light and darkness, the King seems to be allowing the dark side to control him.
+The man walks with a heavy weight on his shoulders. He gave the Stone of Commune to Skahi! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/8-03.htm new file mode 100644 index 0000000000..d0b7b3b88b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/8-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet would be pointless at this time.
+Speak with Seer Skahi in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/9-01.htm new file mode 100644 index 0000000000..f5969da9bf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/9-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+The Stone of Commune that can access this tablet may be obtained at the Imperial Tomb or the Shrine of the Loyal. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/9-02.htm new file mode 100644 index 0000000000..a31daaa85e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/9-03.htm new file mode 100644 index 0000000000..897dfe0fec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/9-03.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+A sharp blast of knowlege courses through your cranium! A vision appears of a black knight!
+And a long line of ancient kings! King of Unification Raul, Old King van Halter, King of Insolence Baium, Founding Emperor Shunaiman and the Queen of Elves Beora.... Those were the days! An Orc was the advance guard and an Elf was the page. And there is the King of the Giants! He was the best king, but his insolence poisoned his relationship with the goddess...
+A king of evil creeping in darkness with the power of a ruler!
+A kingdom rises or falls depending on the heart of its King! Only a very few are worthy to be called King! What does it mean to be King?
+Successor of Flame Akkan left to meet a tyrant with that question on his mind. He wants to know the difference between a king and a tyrant! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/9-04.htm new file mode 100644 index 0000000000..97e0a58534 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Confront the tyrant at the final Tablet of Vision in the Forest of the Dead! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/Q00077_SagaOfTheDominator.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/Q00077_SagaOfTheDominator.java new file mode 100644 index 0000000000..5e495fd287 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00077_SagaOfTheDominator/Q00077_SagaOfTheDominator.java @@ -0,0 +1,105 @@ +/* + * 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.Q00077_SagaOfTheDominator; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Dominator (77) + * @author Emperorc + */ +public class Q00077_SagaOfTheDominator extends AbstractSagaQuest +{ + public Q00077_SagaOfTheDominator() + { + super(77); + _npc = new int[] + { + 31336, + 31624, + 31371, + 31290, + 31636, + 31646, + 31648, + 31653, + 31654, + 31655, + 31656, + 31290 + }; + Items = new int[] + { + 7080, + 7539, + 7081, + 7492, + 7275, + 7306, + 7337, + 7368, + 7399, + 7430, + 7100, + 0 + }; + Mob = new int[] + { + 27294, + 27226, + 27262 + }; + classid = new int[] + { + 115 + }; + prevclass = new int[] + { + 0x33 + }; + npcSpawnLocations = new Location[] + { + new Location(162898, -76492, -3096), + new Location(47429, -56923, -2383), + new Location(47391, -56929, -2370) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-01.htm new file mode 100644 index 0000000000..41cc8ae9e9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-01.htm @@ -0,0 +1,4 @@ +Grand Seer Rahorakti:
+Beware the coming eternal winter!
+Beware, oh child of fire! You who speak with dead souls... Certainly you've heard of it from them! Have you laid in provisions for an eternity?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-010.htm new file mode 100644 index 0000000000..3f4bded093 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-010.htm @@ -0,0 +1,3 @@ +Grand Seer Rahorakti:
+ With the eternal winter bearing down upon us, you shall lead based upon what you learn from the dead souls.
+ (Only a character at level 76 or above may transfer class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-02.htm new file mode 100644 index 0000000000..e115b418fe --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-02.htm @@ -0,0 +1,4 @@ +Grand Seer Rahorakti:
+You're actually real? I thought all those stories about you were only legends! You definitely aren't ready for the eternal winter yet.
+Shield the precious flame in your heart! Listen to your dead souls!
+(This quest may only be undertaken by a Warcryer of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-03.htm new file mode 100644 index 0000000000..c5e5d7eea6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-03.htm @@ -0,0 +1,6 @@ +Grand Seer Rahorakti:
+Tarkai Zu Dudamara! A wandering Warcryer and a seer of webs! He rides on a web, and you can actually trace his path by looking at the webs he leaves behind!
+He visited me a while back and told me to prepare for the eternal winter.
+Unless I misunderstood him, you're the one he was talking about... You'll weave the coat that'll last all winter! Take this book that Tarkai left here, and proudly walk the path of a Warcryer!
+Follow the trail first blazed by Tarkai! The Dudamara totem spirit will show you the way.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-04.htm new file mode 100644 index 0000000000..42a6a3d1c9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-04.htm @@ -0,0 +1,2 @@ +Grand Seer Rahorakti:
+The Dudamara totem spirit can tell you where Tarkai is! Tejakar Oroka! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-05.htm new file mode 100644 index 0000000000..001af78fdb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-05.htm @@ -0,0 +1,4 @@ +Grand Seer Rahorakti:
+Everyone is in an uproar about the coming winter! How do you prepare for something that might last forever?! Look at the Humans and the Dwarves! They have nice, thick winter coats and logs in their fireplaces! And meanwhile we, the keepers of the eternal fire, are threatened with extinction! We can't survive the endless winter without preparation! We should look to the Humans and Dwarves for an answer!
+Have you heard anything from Tarkai?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-06.htm new file mode 100644 index 0000000000..1c332776f0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-06.htm @@ -0,0 +1,5 @@ +Grand Seer Rahorakti:
+Is this the one he requested?
+The flame that we need to sustain us through the endless winter! Along with countless dead souls... I can't just stand by and do nothing! I'll analyze the reports from you seers of the battlefield and manage the deployment of dead souls.
+It won't be easy for you guides of dead souls... Warcryer! Can you understand the minds of dead souls and speak on their behalf?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-07.htm new file mode 100644 index 0000000000..c0dc243e1d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-07.htm @@ -0,0 +1,4 @@ +Grand Seer Rahorakti:
+If you can commune with even one dead soul, you will transcend the power of a Warcryer!
+Now your power will exceed that of the one who can communicate with 99 dead souls! You will communicate with all dead souls at once, and your cries will ring out every place you go!
+You'll become like a lamp, shining brightly, guiding everyone along the path as the winter approaches! The ancestors and dead souls will commune with all Orcs through you! Your roars shall pierce the most severe winter, oh Doom Cryer! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-08.htm new file mode 100644 index 0000000000..21bc1fcd9f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-08.htm @@ -0,0 +1,4 @@ +Grand Seer Rahorakti:
+ If you can commune with even one dead soul, you will transcend the power of a Warcryer!
+ Now your power will exceed even that of the one who can communicate with 99 dead souls! You'll actually communicate with all dead souls at once, and your cries will ring out every place you go!
+But I fear that you lack the strength to get us through the winter. Develop your mind and body to endure the rigors of winter. (Only a character at level 76 or above may transfer class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-09.htm new file mode 100644 index 0000000000..862dc71b34 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/0-09.htm @@ -0,0 +1,4 @@ +Grand Seer Rahorakti:
+ If you can commune with even one dead soul, you will transcend the power of a Warcryer!
+ Now your power will exceed that of the one who can communicate with 99 dead souls! You will communicate with all dead souls at once, and your cries will ring out every place you go!
+You'll become like a lamp, shining brightly, guiding everyone along the path as the winter approaches! The ancestors and dead souls will commune with all Orcs through you! Your roars shall pierce the most severe winter, oh Doom Cryer! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-01.htm new file mode 100644 index 0000000000..6ee101a066 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-01.htm @@ -0,0 +1,3 @@ +Chef Donath:
+Bitter Cold Vodka? Isn't that the Orcish liquor made by mixing the flames of Paagrio with the power of 99 dead spirits? You can't just ask me to make such a....
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-02.htm new file mode 100644 index 0000000000..8928dee647 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-02.htm @@ -0,0 +1,4 @@ +Chef Donath:
+Genuine Bitter Cold Vodka is practically impossible to make, but I can get pretty close!
+I'll need a divine ingredient known as an ice crystal. Chef Jeremy can tell you where to find one.
+I can't make Bitter Cold Vodka without it! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-03.htm new file mode 100644 index 0000000000..17da2a0b15 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-03.htm @@ -0,0 +1,4 @@ +Chef Donath:
+You've brought the ice crystal! Excellent!
+Now I can make the Bitter Cold Vodka! I must warn you however, the power of the spirits within the liquor is not very strong, and over time, it loses its effect. Is that acceptable?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-04.htm new file mode 100644 index 0000000000..da8503eff9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-04.htm @@ -0,0 +1,3 @@ +Chef Donath:
+A dead spirit might notice the difference... But without the flames of Paagrio and 99 dead spirits, this is the best I can do!
+Here you go! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-05.htm new file mode 100644 index 0000000000..57e589303b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-05.htm @@ -0,0 +1,4 @@ +Chef Donath:
+Hmm... if that's what you want, I'll do it, but only if you're sure that's what you really want!
+I should be able to get pretty close to the original. It'll do for a simple ritual, but not for a formal religious rite.
+ I must have a divine ingredient known as an ice crystal! Chef Jeremy can tell you where to get one. I can't make Bitter Cold Vodka without it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-06.htm new file mode 100644 index 0000000000..933f92f3db --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/1-06.htm @@ -0,0 +1,3 @@ +Chef Donath:
+If you say so, that's good enough for me!
+All right! Making this liquor always makes me nervous! Here you go! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-01.htm new file mode 100644 index 0000000000..eea3a98d70 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-01.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+You hear fighting as you approach.
+Powerful forces of light and dark, oppression and domination. Pain and rejection by the one who once ruled the land.
+The totem spirit rejects the wisdom of the spidersilk.
+...A dream? The tablet is before you.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-02.htm new file mode 100644 index 0000000000..1e2441c532 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Tarkai screams and the lizard totem spirit attacks. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-03.htm new file mode 100644 index 0000000000..f939ceaf9d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Tarkai takes a look and smiles. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-04.htm new file mode 100644 index 0000000000..d5366d8443 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You feel a presence and hear the sound of swordplay. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-05.htm new file mode 100644 index 0000000000..5adf49a9c8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune emits light as you approach the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-06.htm new file mode 100644 index 0000000000..fce8808ac7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-06.htm @@ -0,0 +1,7 @@ +Tablet of Vision:
+Vast amounts of knowledge rush into your mind. You hear the sound of distant laughter.
+A voice whispers, "Another Hero is born."
+The lady in blue disagrees...
+As the power of a king rises, so does the darkness that surrounds him.
+There are 99 souls in the world related to Orcs, on the ground, in the tribe and in the seal. Tarkai is the only seer to prepare for the coming winter. He believes this isn't enough, so new souls must be conjured.
+Speak with Great Seer Rahorakti. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-07.htm new file mode 100644 index 0000000000..361c9b7f42 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Speak with Rahorakti in Rune Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/11-01.htm new file mode 100644 index 0000000000..11d9d5df5c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/11-01.htm @@ -0,0 +1,6 @@ +Seer Skahi:
+Tejakar Duda-Mara!
+You returned as the spider foretold.
+Tarkai asked me to guide you with these stones.
+Did you let Sharuhi escape? It will be difficult to follow Tarkai, but someone must pave the way!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/11-02.htm new file mode 100644 index 0000000000..208a328fb2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/11-02.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+Find the Archon of Halisha inside the Four Sepulchers at the Human Imperial Tomb.
+If entering is too difficult, go to the Shrine of the Loyal and fight Halisha's minions. He'll show up if you kill enough of them!
+Defeat him and get the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/11-03.htm new file mode 100644 index 0000000000..14680e2e3a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/11-03.htm @@ -0,0 +1,6 @@ +Seer Skahi:
+May we be the light in the darkness of the coming winter.
+The power of the ancient Orcs that you seek was created by the gods, but stolen by devils.
+Find the Archon of Halisha inside the Four Sepulchers at the Human Imperial Tomb!
+If entering is too difficult, go to the Shrine of the Loyal and fight Halisha's minions! He'll show up if you kill enough of them.
+Defeat him and get the Stone of Commune! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-01.htm new file mode 100644 index 0000000000..746f223e35 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-01.htm @@ -0,0 +1,4 @@ +Duda-Mara Totem Spirit:
+Ah, yes, Tarkai! That punk told me what happened!
+Can you become a red-hot live fire that will last throughout the winter, one that can warm everyone up during the long, cold winter?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-02.htm new file mode 100644 index 0000000000..5bf5265fef --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-02.htm @@ -0,0 +1,2 @@ +Duda-Mara Totem Spirit:
+I guess you haven't met Donath yet. He's the only one who can make Bitter Cold Vodka without using the power of dead spirits. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-03.htm new file mode 100644 index 0000000000..7af602259d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-03.htm @@ -0,0 +1,5 @@ +Duda-Mara Totem Spirit:
+ Did you bring the liquor for the ritual?
+ This will do! It's different from the one Kakai has, it should satisfy the spirits.
+You want to know where Tarkai went? Here, give me your hand.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-04.htm new file mode 100644 index 0000000000..9421eb93cc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-04.htm @@ -0,0 +1,2 @@ +Duda-Mara Totem Spirit:
+I granted Tarkai's request. If you want to find him, first you must go to the Tablet of Vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-05.htm new file mode 100644 index 0000000000..f2e2be07a9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-05.htm @@ -0,0 +1,5 @@ +Duda-Mara Totem Spirit:
+Oh, really? OK, go ahead and tell me...
+First, see if you can find any ritual liquor!
+But don't get it from Kakai's warehouse. If you want to become a hot roaring fire that will last throughout the winter, you must first learn to soothe the spirits while in peril, get it?
+I've heard of a chef named Donath in the northern part of Goddard Territory near the hot springs that makes Bitter Cold Vodka. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-06.htm new file mode 100644 index 0000000000..d472dce648 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/2-06.htm @@ -0,0 +1,4 @@ +Duda-Mara Totem Spirit:
+Take this stone that the god of fire himself entrusted to me! It contains many powers... The greatest of all is the power to recover forgotten memories from the era of heroes...
+The memories are stored in Tablets of Vision, distributed throughout the world... You'll find the first just south of the Tower of Insolence.
+When you've communed with all the stone tablets, you'll know whether or not you'll endure the coming winter. Now, go! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-01.htm new file mode 100644 index 0000000000..3f432df95d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-01.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+The spidersilk of Duda-Mara told me you would come.
+This won't be our only meeting.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-02.htm new file mode 100644 index 0000000000..8529424076 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-02.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+Go to the Ketra Orc outpost and see Messenger Wahkan. Gain their trust by lending your strength.
+Show the spirit of a warrior!
+If you feel betrayed, there is another way. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-03.htm new file mode 100644 index 0000000000..668e29e92a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-03.htm @@ -0,0 +1,4 @@ +Seer Skahi:
+Meet Varka's Messenger Naran Ashanuk in the Varka Silenos stronghold. Gain their trust by lending your strength!
+To fight the betrayer Orcs is the spirit of a warrior!
+If your suffering is too great, there is another way! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-04.htm new file mode 100644 index 0000000000..ca01006bdd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-04.htm @@ -0,0 +1,2 @@ +Seer Skahi:
+Warrior, you must bring the Divine Stone of Wisdom! To get it you must choose sides in this war. Find Messenger Wahkan of the Ketra Orcs or Messenger Naran Ashanuk of the Varka Silenos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-05.htm new file mode 100644 index 0000000000..60647d2e02 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-05.htm @@ -0,0 +1,5 @@ +Seer Skahi:
+Warrior, you have shown the qualities of a king and passed the test by getting the Divine Stone of Wisdom!
+Don't forget the people you helped or the blood you spilled. Never forget that Duda-Mara's spidersilk protects you.
+Hand me the stone!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-06.htm new file mode 100644 index 0000000000..e58a2b01a0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-06.htm @@ -0,0 +1,2 @@ +Seer Skahi :
+Go to the northe of the Varka Silenos Barracks and commune with the Tablet! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-07.htm new file mode 100644 index 0000000000..48e6e99e86 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-07.htm @@ -0,0 +1,8 @@ +Seer Skahi:
+Tarkai gave me your instructions.
+The Human soul you released can't rest in peace, you must find him again!
+Here's your test. The Ketra Orcs, a lower race who betrayed us long ago, and the Varka Silenos are at war. They each have a Divine Stone of Wisdom, but you must earn their absolute trust to get it.
+Bring either stone to pass the test.
+Which side do you choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-08.htm new file mode 100644 index 0000000000..68afa0dc51 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/3-08.htm @@ -0,0 +1,3 @@ +Seer Skahi:
+The power is restored in this Stone of Commune!
+Take it to the tablet in the Varka Silenos barracks. May the eternal flame watch over you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-01.htm new file mode 100644 index 0000000000..81518cc6ed --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-01.htm @@ -0,0 +1,2 @@ +Tarkai Zu Duda-Mara:
+You must use all your abilities to defeat this soul on my behalf. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-010.htm new file mode 100644 index 0000000000..06dffe70fe --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-010.htm @@ -0,0 +1,6 @@ +Tarkai Zu Duda-Mara:
+This is a pilgrimage to find the power the gods left for those who would step beyond their limitations.
+Secret teachings from ancient times.
+Take this to the last tablet and you will understand what to do in the coming winter and the meaning of worship.
+I must go. You'll be the seed of flame to keep us warm in winter.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-011.htm new file mode 100644 index 0000000000..caabc8ea3b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-011.htm @@ -0,0 +1,4 @@ +Tarkai Zu Duda-Mara:
+This is a pilgrimage to find the power the gods left for those who would step beyond their limitations.
+Secret teachings from ancient times.
+Take this to the last tablet and you will understand what to do in the coming winter and the meaning of worship. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-02.htm new file mode 100644 index 0000000000..c35e89467d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-02.htm @@ -0,0 +1,2 @@ +Tarkai Zu Duda-Mara:
+Stand back! This isn't your fight. Don't interfere! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-03.htm new file mode 100644 index 0000000000..9c6ceafedc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-03.htm @@ -0,0 +1,3 @@ +Tarkai Zu Duda-Mara:
+You choose to keep your distance?
+This will be a harsh winter if we don't stick together. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-04.htm new file mode 100644 index 0000000000..aa8716c0f3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-04.htm @@ -0,0 +1,2 @@ +Tarkai Zu Duda-Mara:
+Sharuhi's soul is on a rampage! We must fight against his wrath! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-05.htm new file mode 100644 index 0000000000..5eb03f96c3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-05.htm @@ -0,0 +1,2 @@ +Tarkai Zu Duda-Mara:
+This is not your fight! Stand back! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-06.htm new file mode 100644 index 0000000000..9840caf31e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-06.htm @@ -0,0 +1,4 @@ +Tarkai Zu Duda-Mara:
+Sharuhi has been defeated! It's soul will help the Orc races through you, the seed of flame.
+I place this in your hands.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-07.htm new file mode 100644 index 0000000000..51c168f3a1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-07.htm @@ -0,0 +1,4 @@ +Tarkai Zu Duda-Mara:
+I've defeated Sharuhi! It's soul will help the Orc races through you, the seed of flame.
+I place this in your hands.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-08.htm new file mode 100644 index 0000000000..652f60588e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-08.htm @@ -0,0 +1,2 @@ +Tarkai Mu Duda-Mara:
+Look beside the burning seed of flame for the Tablet of Vision. It will teach you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-09.htm new file mode 100644 index 0000000000..4cf288e12f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/4-09.htm @@ -0,0 +1,3 @@ +Tarkai Mu Duda-Mara:
+Is the seed of flame burning yet?
+The Tablet of Vision beside it will teach you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/5-01.htm new file mode 100644 index 0000000000..ae7dcc5632 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/5-02.htm new file mode 100644 index 0000000000..b2802e7cdf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/5-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if the wind were singing...You sense that the next Stone of Commune is held by many warriors in a place south of the Valley of Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/5-03.htm new file mode 100644 index 0000000000..1aa0faa168 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet is futile. Now you must go to the Valley of Saints. The next Stone of Commune is being held by the Guardians of Forbidden Knowledge there. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/6-01.htm new file mode 100644 index 0000000000..9b98cef8e5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The hieroglyphs on the tablet are indecipherable. The Guardians of Forbidden Knowledge possess the Stone of Commune for this Tablet of Vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/6-02.htm new file mode 100644 index 0000000000..5d168cdf2e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/6-03.htm new file mode 100644 index 0000000000..5113c22d0a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/6-03.htm @@ -0,0 +1,7 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a woman's voice.
+A vision appears of a small lizard, trapped in a box. The harder he struggles, the tighter his prison becomes. This is a closed totem.
+Mudaha misrepresented himself to Varanka as Sharuhi Mouth, and received unspeakable powers that are forbidden to Warcryers!
+Alas, the power of the totem eventually grew too strong for Mudaha, and now he struggles just to keep the power in check!
+You can find him inside the maze at the Wall of Argos.
+That Stone of Commune will be the end of him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/6-04.htm new file mode 100644 index 0000000000..90569aaecd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/6-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet is futile.
+Find the Warcryer who pretended to be Sharuhi! His power is overwhelming! Prepare yourself for battle and find him at the Wall of Argos! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-01.htm new file mode 100644 index 0000000000..92e2a83de3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-01.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+As you near the Tablet of Vision, you sense a presence. It has an eternal, primal ferocity. To escape unending torture, the insane totem spirit is striking out blindly at everything around it.
+He was eaten by a vicious creature when he tried to enforce the unenforceable. He seeks a way to remove the extra power since he can not control it.
+Have you read any books about possession? Fierce attacks are coming!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-02.htm new file mode 100644 index 0000000000..6f9e33d5d4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Mudaha, slavering and deranged, once claimed to be the Warcryer Sharuhi! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-03.htm new file mode 100644 index 0000000000..b464ba98a1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The hieroglyphs are indecipherable.
+Mudaha's attack continues! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-04.htm new file mode 100644 index 0000000000..5811331d54 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You sense a disturbance near the tablet.
+The time hasn't yet come for you to prove yourself. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-05.htm new file mode 100644 index 0000000000..d93846b342 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-06.htm new file mode 100644 index 0000000000..dbd331c204 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-06.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear the faint whisper of a woman's voice.
+The temptation of Varangkam brought forth the ability to maintain control over the spirit. Ghosts are divine and full of power. Ironically, they can still be quite helpful yet difficult to control.
+As such, there is much stryfe between the seer and the ghost.
+You see Sharuhi going out of Mudaha's body. He becomes a spirit and protects the land...
+The person that was overlooked is Goddard Castle Town's seer, Skahi. Go find him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-07.htm new file mode 100644 index 0000000000..defb11e896 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/7-07.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet is futile.
+Get the next Stone of Commune from Seer Skahi in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/8-01.htm new file mode 100644 index 0000000000..148d35834e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/8-02.htm new file mode 100644 index 0000000000..7623f7ee81 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/8-02.htm @@ -0,0 +1,7 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A vision appears of a mysterious dark knight.
+Sharuhi got what was coming to him.
+Prepare for the coming winter! Walk through the snow bravely, leading your comrades to safety!
+What will be there in the end?
+You see a man who walks in the dark, using only one Spidersilk to guide him.
+This is what Seer Skahi was talking about! Tarkai gave him the stone and told him someone was following him. Speak with Seer Skahi. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/8-03.htm new file mode 100644 index 0000000000..d0b7b3b88b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/8-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet would be pointless at this time.
+Speak with Seer Skahi in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/9-01.htm new file mode 100644 index 0000000000..f5969da9bf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/9-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+The Stone of Commune that can access this tablet may be obtained at the Imperial Tomb or the Shrine of the Loyal. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/9-02.htm new file mode 100644 index 0000000000..fdf829af5c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as you approach the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/9-03.htm new file mode 100644 index 0000000000..ac11c89da0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/9-03.htm @@ -0,0 +1,7 @@ +Tablet of Vision:
+A sharp blast of knowlege courses through your cranium! A vision appears of a black knight!
+And Mudaha, the former follower of Sharuhi! He channeled the very spirit of Sharuhi, and no other Warcryer could beat him!
+After a while his name became synonomous with Sharuhi's. But now, only memories engraved in spidersilk are left to speak of those days.
+Sharuhi trembles in loneliness. But he won't listen to other Warcryers!
+Find him and make a Contract! Conjure the 100th spirit and channel it into the consciousness of Oroka. That is what you must do!
+Tarkai's request makes sense now. Find the lizard totem Sharuhi! You must find the Tablet of Vision in the Forest of the Dead! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/9-04.htm new file mode 100644 index 0000000000..2a2707ad66 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Find the lizard totem Sharuhi in the Forest of the Dead! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/Q00078_SagaOfTheDoomcryer.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/Q00078_SagaOfTheDoomcryer.java new file mode 100644 index 0000000000..dd18b61d73 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00078_SagaOfTheDoomcryer/Q00078_SagaOfTheDoomcryer.java @@ -0,0 +1,105 @@ +/* + * 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.Q00078_SagaOfTheDoomcryer; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Doomcryer (78) + * @author Emperorc + */ +public class Q00078_SagaOfTheDoomcryer extends AbstractSagaQuest +{ + public Q00078_SagaOfTheDoomcryer() + { + super(78); + _npc = new int[] + { + 31336, + 31624, + 31589, + 31290, + 31642, + 31646, + 31649, + 31650, + 31654, + 31655, + 31657, + 31290 + }; + Items = new int[] + { + 7080, + 7539, + 7081, + 7493, + 7276, + 7307, + 7338, + 7369, + 7400, + 7431, + 7101, + 0 + }; + Mob = new int[] + { + 27295, + 27227, + 27285 + }; + classid = new int[] + { + 116 + }; + prevclass = new int[] + { + 0x34 + }; + npcSpawnLocations = new Location[] + { + new Location(191046, -40640, -3042), + new Location(46087, -36372, -1685), + new Location(46066, -36396, -1685) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-01.htm new file mode 100644 index 0000000000..2467fcd533 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-01.htm @@ -0,0 +1,3 @@ +Black Cat:
+Are you from the union? Then please, listen carefully to what I'm about to say.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-010.htm new file mode 100644 index 0000000000..bb4fef4e40 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-010.htm @@ -0,0 +1,5 @@ +Black Cat:
+ Within your body hides an amazing power, but you are not skilled enough to control it yet.
+ What a pity!
+ Improve your skills and come back.
+(Only a character of level 76 or above is allowed to transfer to another class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-02.htm new file mode 100644 index 0000000000..d882644149 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-02.htm @@ -0,0 +1,3 @@ +Black Cat:
+Bernard sent the wrong person again! I'm afraid he's completely lost his mind since he started collecting coins!
+(Only a character of level 76 or above and of the Treasure Hunter class may pursue this quest.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-03.htm new file mode 100644 index 0000000000..319ff4625d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-03.htm @@ -0,0 +1,4 @@ +Black Cat:
+All right! Finally, he sent the right person! Klaus is the only one who's ever even come close to achieving it. Alas, he too failed in the end... Now he spends his days loafing about Goddard Castle Town, getting drunk and fishing. He could tell you some things about forbidden power!
+Here's a description of the beast that maimed me...
+Now, go find Klaus, and don't come back until you've gotten the power! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-04.htm new file mode 100644 index 0000000000..c2e2d3532c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-04.htm @@ -0,0 +1,2 @@ +Black Cat:
+You can probably find him hanging around the Fishermen's Guild in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-05.htm new file mode 100644 index 0000000000..c0420c8f1d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-05.htm @@ -0,0 +1,8 @@ +Black Cat:
+At one time, I was considered the most likely to succeed in the Hunters Union! Unfortunately, I made the mistake of challenging the power that was forbidden by the gods! This power allows whoever controls it to transcend Human limitations! But look where it got me!
+My body was totally ruined, and when I could no longer challenge the power, I was expelled from the union by my jealous rivals!
+I sank into a mass of self-pity and regret!
+But then, I had an idea! Maybe I can't do it personally, but I can certainly train and send someone on my behalf! Using my brain rather than physical force, and overcoming many political obstacles, I took control of the union! While in that position, I never found the competent person I needed. When I resigned, I was promised by the president of the union that I would be supplied with a competent person!
+He seemed credible then, he wasn't so obsessed with his coins at that point...
+Are you up to the challenge? Are you willing to risk injuries such as mine, or worse? Are you brave enough to seek the power?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-06.htm new file mode 100644 index 0000000000..44102e8096 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-06.htm @@ -0,0 +1,4 @@ +Black Cat:
+Sometimes I doubt whether anyone will ever bring the power to me.
+You showed great promise... Could you have really gotten it this time?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-07.htm new file mode 100644 index 0000000000..defdcf6788 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-07.htm @@ -0,0 +1,5 @@ +Black Cat:
+At last, my lifetime of work has borne fruit!
+Great job! You've made me very proud.
+I'll have Bernard announce it to the guild. We have a very special honor to bestow upon you who have overcome such unimaginable hardships.
+Henceforth you shall be known as an Adventurer! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-08.htm new file mode 100644 index 0000000000..bb4fef4e40 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-08.htm @@ -0,0 +1,5 @@ +Black Cat:
+ Within your body hides an amazing power, but you are not skilled enough to control it yet.
+ What a pity!
+ Improve your skills and come back.
+(Only a character of level 76 or above is allowed to transfer to another class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-09.htm new file mode 100644 index 0000000000..7ae10227e8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/0-09.htm @@ -0,0 +1,5 @@ +Black Cat:
+At last, my lifetime of work has borne fruit!
+Great job! You've made me very proud.
+I'll have Bernard announce it to the guild. We have a very special honor to bestow upon you who have overcome such unimaginable hardships.
+Henceforth you shall be known as an Adventurer! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-01.htm new file mode 100644 index 0000000000..8dcbe711be --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-01.htm @@ -0,0 +1,5 @@ +Valentine:
+ Did Klaus order some ice liquor?
+Hmm... How strange! He knows very well how rare that stuff is!
+ If I'm to make some, I'll need some ingredients. Would you be willing to bring them to me?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-02.htm new file mode 100644 index 0000000000..62298ceb6a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-02.htm @@ -0,0 +1,2 @@ +Valentine:
+Bring me an ice crystal and I'll make ice liquor. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-03.htm new file mode 100644 index 0000000000..c841edaf97 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-03.htm @@ -0,0 +1,3 @@ +Valentine:
+What impeccable timing you have! I'm about ready to start brewing. Hand over the ice crystal and I'll make the liquor right away.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-04.htm new file mode 100644 index 0000000000..16019cb2ba --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-04.htm @@ -0,0 +1,2 @@ +Black Cat:
+Klaus must be very thirsty by now! Hurry up! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-05.htm new file mode 100644 index 0000000000..cc2f7f84df --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-05.htm @@ -0,0 +1,2 @@ +Valentine:
+Very well, if you feel that strongly about it, I'll tell you! Ice liquor can only be made from ice crystals. You should meet with Chef Jeremy. Perhaps if you help him, he might let you know where to find ice crystals. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-06.htm new file mode 100644 index 0000000000..3560d81a9f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/1-06.htm @@ -0,0 +1,2 @@ +Valentine:
+Here it is! You gave me more than enough ice crystals, so I made a few extra bottles of ice liquor for myself! I should be the one who's grateful! Ha! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-01.htm new file mode 100644 index 0000000000..a62e827220 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You feel something strange.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-02.htm new file mode 100644 index 0000000000..c1e961ed22 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You feel a huge surge of energy. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-03.htm new file mode 100644 index 0000000000..c077bda796 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Speak with the Hero. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-04.htm new file mode 100644 index 0000000000..99f1cbf806 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone is already communing with the Tablet of Vision. Please try again later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-05.htm new file mode 100644 index 0000000000..ca5f557f00 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-06.htm new file mode 100644 index 0000000000..57cc949b4f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-06.htm @@ -0,0 +1,9 @@ +Tablet of Vision:
+A familiar feeling rushes through your body. And then when it seems unbearable, a new vision appears...
+All the pleasure, pain, anger and love ever felt by all the previous challengers of this power courses at once through your veins!
+The emotions rush over you like a waterfall, and the screams you hear are your own as you slip into unconsciousness...
+
+...
+...
+And then you awake... You mouth moves, but no words are formed...
+Could this be the end? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-07.htm new file mode 100644 index 0000000000..9018de5021 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+This tablet is useless. Go back to Black Cat. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/11-01.htm new file mode 100644 index 0000000000..792946c34f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/11-01.htm @@ -0,0 +1,3 @@ +Hermit:
+ I can't remember the last time anyone came this far just to see me! Are you ready for the second test?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/11-02.htm new file mode 100644 index 0000000000..b17951a3cd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/11-02.htm @@ -0,0 +1,2 @@ +Hermit:
+Kill the Archon of Halisha! He can be found in the Sepulchers, or by attacking his minions on the north side of the Wall of Argos. Kill him and take possession of the fifth Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/11-03.htm new file mode 100644 index 0000000000..2a61dcf58f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/11-03.htm @@ -0,0 +1,6 @@ +Hermit:
+Ah, yes, the second test... the Archon of Halisha has the fifth Stone of Commune.
+After you get it from him, take it to the northwestern end of the Wall of Argos. Commune with the Tablet of Vision there.
+Slaying the Archon of Halisha isn't going to be easy!
+He can usually be found inside the Sepulchers, but if you attack his minions on the north side of the Wall of Argos, that usually draws him out!
+Good luck! Your success means that my long wait is finally over! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-01.htm new file mode 100644 index 0000000000..8e1cd8da58 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-01.htm @@ -0,0 +1,5 @@ +Klaus:
+Ha Ha Ha! Has that old hag not given up yet?
+Do you want to end up like me?
+Just give up. Have a drink like I'm doing. If you drink this, all the cares of this world will go away. Ha Ha Ha!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-02.htm new file mode 100644 index 0000000000..8a2d5d4123 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-02.htm @@ -0,0 +1,4 @@ +Klaus :
+I am the best hunter among all the members of the Hunter's Guild! Ha Ha Ha!
+Uggh. I, ah... feel a little bit tipsy, now...
+Now, I've become a fisher... no, the best drunkard in Goddard! Bwa Ha Ha! Isn't it fun? Are you having fun, yet? I know how you can have even more fun. Well now, go to Valentine and bring me back some of his ice liquor! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-03.htm new file mode 100644 index 0000000000..1dc97d8c11 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-03.htm @@ -0,0 +1,3 @@ +Klaus:
+Hey! All right, you brought the liquor! Come on, let me have it.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-04.htm new file mode 100644 index 0000000000..f6ba3e5ade --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-04.htm @@ -0,0 +1,3 @@ +Kalus:
+Didn't I tell you already? The first Tablet of Vision is located on the south side of the Tower of Insolence. Hiccup!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-05.htm new file mode 100644 index 0000000000..7703d74e1a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-05.htm @@ -0,0 +1,3 @@ +Kalus:
+All right! All right! I know the path to reach the first passage. However, it's hard for me to bring up the memory of that time while I'm sober. Go to Brewer Valentine in this village, obtain the ice liquor and bring it back to me.
+If I have a glass of that liquor, I just might be able to recall an old memory like that one. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-06.htm new file mode 100644 index 0000000000..6e4765632c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/2-06.htm @@ -0,0 +1,8 @@ +Kalus:
+Gulp! Gulp! Gulp!
+You must be more capable than I thought, huh? Ha Ha Ha!
+Now then, should I try to remember the old times?
+Hmm... Let me see... The forbidden power was obtained by a strange hermit. It was taken away and divided by the gods. It is sealed up in several Tablets of Vision. In order to release the power that is bound in each tablet, you must have an object called a Stone of Commune. Each Tablet of Vision has its own individual Stone of Commune that it can communicate with!
+Ah! Here it is. The first Stone of Commune.
+Take this and use it to communicate with the first Tablet of Vision which is located on the south side of the Tower of Insolence.
+I told you everything I know. So now, leave me in peace and go on your way. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-01.htm new file mode 100644 index 0000000000..01cc36ba6f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-01.htm @@ -0,0 +1,6 @@ +Hermit:
+I've been expecting you.
+You follow in the footsteps of giants!
+I've been waiting for many, many years... Since the gods told me to expect a hero such as you! I have the stone of vision you seek.
+First, however, you must prove that you are who you appear to be... Will you take a test?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-02.htm new file mode 100644 index 0000000000..67a8bfed59 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-02.htm @@ -0,0 +1,2 @@ +Hermit:
+Well, go to the Ketra Orcs and get the Divine Stone of Wisdom. Like I said, Ketra Orcs are not the ones who trust strangers easily. To obtain Ketra Orcs' trust, you should go to Ketra's Messenger Wahkan in the Ketra Orc Outpost, and carry out difficult tasks that he asks you to do. You must earn the trust of the Ketra Orcs! This won't be an easy task, and will take much time and patience. Remember to never help their mortal enemies, the Varka Silenos! You'd never regain their trust! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-03.htm new file mode 100644 index 0000000000..fabef6b5da --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-03.htm @@ -0,0 +1,2 @@ +Hermit:
+Well, go to the Varka Silenos and get the Divine Stone of Wisdom. Like I said, Varka Silenos are not the ones who trust strangers easily. To obtain Varka Silenos' trust, you should go to Varka's Messenger Naran Ashanuk in the Varka Silenos Outpost, and carry out difficult tasks that he asks you to do. You must earn the trust of the Ketra Orcs! This won't be an easy task, and will take much time and patience. Remember to never help their mortal enemies, the Ketra Orcs! You'd never regain their trust! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-04.htm new file mode 100644 index 0000000000..85050704ac --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-04.htm @@ -0,0 +1,2 @@ +Hermit:
+ Obtaining it won't be an easy task. This is your chance to prove that you are truly the one to succeed the legend! After earning the trust of the tribe you chose and being regarded as a true friend by them, you can obtain the Divine Stone of Wisdom. For Ketra Orcs, you must go to Ketra's Messenger Wahkan in the Ketra Orc Outpost whereas you must go see Varka's Messenger Naran Ashanuk in the Varka Silenos Outpost for Varka Silenos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-05.htm new file mode 100644 index 0000000000..ed1dbec574 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-05.htm @@ -0,0 +1,3 @@ +Hermit:
+Have you brought the Divine Stone of Wisdom?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-06.htm new file mode 100644 index 0000000000..3f2525340b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-06.htm @@ -0,0 +1,2 @@ +Hermit:
+The Tablet of Vision can be found in the northern part of the Varka Silenos stronghold. Please don't disappoint us. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-07.htm new file mode 100644 index 0000000000..c8f2f26e22 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-07.htm @@ -0,0 +1,4 @@ +Hermit:
+This test has two paths. The Ketra Orcs and the Varka Silenos have long been at war, and both tribes are infamous for their hatred of each other and their cruelty in battle. Select one of the two tribes and obtain from them the Divine Stone of Wisdom. They give that only to those who they consider to be their true friend. Which tribe would you like to choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-08.htm new file mode 100644 index 0000000000..b142b03b48 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/3-08.htm @@ -0,0 +1,5 @@ +Hermit:
+You've passed the first test. You've already come further than most who've attempted it! You're really starting to look like the hero I've been waiting for!
+Further dangers await you, however...
+You must always keep your cool.
+Take this Stone of Commune to the Tablet of Vision in the northern part of the Varka Silenos stronghold. You'll get further instruction from the tablet. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-01.htm new file mode 100644 index 0000000000..17a3ebe733 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-01.htm @@ -0,0 +1,2 @@ +Erica Ken Weber:
+For my sake and for the sake of my followers, I cannot surrender now! Are you with me? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-010.htm new file mode 100644 index 0000000000..32a57c6891 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-010.htm @@ -0,0 +1,4 @@ +Erica Ken Weber:
+This Stone of Commune is a key that unlocks the forbidden power that resides within the Tablet of Vision. I don't have any use for it anymore. Take it with you.
+Thank you for your help. If we meet again, I won't forget what you've done for me!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-011.htm new file mode 100644 index 0000000000..47282fba65 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-011.htm @@ -0,0 +1,3 @@ +Erica Ken Weber:
+Here it is.
+I hope to see you again someday. Goodbye! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-02.htm new file mode 100644 index 0000000000..0e2bbc8e78 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-02.htm @@ -0,0 +1,2 @@ +Erica Ken Weber:
+I'm not fighting only for myself! I won't give you this chance! Will you withdraw? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-03.htm new file mode 100644 index 0000000000..2bae0dc870 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-03.htm @@ -0,0 +1,3 @@ +Erica Ken Weber:
+Damn! Missed him again!
+Oh, it's you! Keep that up and you'll never defeat Azrael nor obtain the Stone of Commune. If you get another chance, try harder, OK? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-04.htm new file mode 100644 index 0000000000..8701594be3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-04.htm @@ -0,0 +1,2 @@ +Erica Ken Weber:
+Do you think this is a game? Don't say you're trying your best! I know you're not! Now, fight! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-05.htm new file mode 100644 index 0000000000..0f2157a423 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-05.htm @@ -0,0 +1,2 @@ +Erica Ken Weber:
+I'm not doing this for your amusement. This is a fight I can't withdraw from. There's no room for you here. Wait your turn. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-06.htm new file mode 100644 index 0000000000..62eab3da38 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-06.htm @@ -0,0 +1,4 @@ +Erica Ken Weber:
+Thanks for your help. I'm Erica. Although I couldn't kill him, I was able to get what I needed.
+ Azrael dropped this earlier, during the fight. It's a Stone of Commune! You've been looking for it, right?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-07.htm new file mode 100644 index 0000000000..493bcf07f0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-07.htm @@ -0,0 +1,4 @@ +Erica Ken Weber:
+Thanks for your help. I'm Erica. Although I couldn't kill him, I was able to get what I needed.
+ Azrael dropped this earlier, during the fight. It's a Stone of Commune! Do you want it?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-08.htm new file mode 100644 index 0000000000..42a2d58ad9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-08.htm @@ -0,0 +1,3 @@ +Erica Ken Weber:
+You won't escape again, Azrael!
+ Oh, there you are! Take the Stone of Commune I gave you earlier to the Tablet of Vision. You can use the stone to communicate with the tablet. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-09.htm new file mode 100644 index 0000000000..ebe4112135 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/4-09.htm @@ -0,0 +1,2 @@ +Erica Ken Weber:
+Take the Stone of Commune to the Tablet of Vision. Communicate with the tablet and you'll obtain forbidden power! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/5-01.htm new file mode 100644 index 0000000000..e085b3f4bb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/5-02.htm new file mode 100644 index 0000000000..258c23794f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/5-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+The tablet seems to be communicating with you. You see a vision of a tablet much like this one, protected by several ominous guardians. One of them is holding the next Stone of Commune!
+It appears that they're located in the northeast part of the Valley of Saints!
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/5-03.htm new file mode 100644 index 0000000000..ea14aac556 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes completely dark. You must retrieve the Stone of Commune from the Guardians of Forbidden Knowledge! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/6-01.htm new file mode 100644 index 0000000000..0014ef69c6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/6-01.htm @@ -0,0 +1,3 @@ +Tablet of Viision :
+There are no changes.
+I may need the Stone of Commune that the Guardians of Forbidden Knowledge have. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/6-02.htm new file mode 100644 index 0000000000..4d959bbbf6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/6-03.htm new file mode 100644 index 0000000000..87a46db729 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/6-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+The tablet seems to be communicating with you. You see a vision of a tablet much like this one.
+It appears to be located north of the Border Outpost.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/6-04.htm new file mode 100644 index 0000000000..c603e455e2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Find the next tablet. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-01.htm new file mode 100644 index 0000000000..0985753443 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Evil lurks nearby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-02.htm new file mode 100644 index 0000000000..80e729fc22 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+It's Ezekiel! I read about him in the book I got from Black Cat! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-03.htm new file mode 100644 index 0000000000..ec22a74291 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Ezekiel must be dealt with first. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-04.htm new file mode 100644 index 0000000000..b594e1231c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone else is currently communing with the stone. Come back later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-05.htm new file mode 100644 index 0000000000..e850c5f7fa --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-06.htm new file mode 100644 index 0000000000..50848f8b13 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-06.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+The tablet seems to be communicating with you. You see a vision of a Human, standing before a house engulfed in a dark aura.
+It seems to located on the road from the Ketra Orc Outpost to Goddard Castle Town.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-07.htm new file mode 100644 index 0000000000..6e8e7d71f6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes completely dark. Let's go find the male Human that the Vision Stone showed. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/8-01.htm new file mode 100644 index 0000000000..43111d5509 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/8-02.htm new file mode 100644 index 0000000000..1a387512dc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/8-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+The tablet seems to be communicating with you. You see a Human engulfed in a familiar dark aura...
+He seems to located on the road from the Ketra Orc Outpost to Goddard Castle Town.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/8-03.htm new file mode 100644 index 0000000000..55f5770d98 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Find the house you saw in the vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/9-01.htm new file mode 100644 index 0000000000..436c8847ef --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/9-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+As the hermit said, kill the Archon of Halisha and take the stone from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/9-02.htm new file mode 100644 index 0000000000..5b64bf7223 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/9-03.htm new file mode 100644 index 0000000000..3640106e66 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/9-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+The tablet seems to be communicating with you. You see a vision of a Human standing before a tablet much like this one.
+He appears to be north of Giants Cave.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/9-04.htm new file mode 100644 index 0000000000..be02ebd53f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Find the next Stone of Commune now. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/Q00079_SagaOfTheAdventurer.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/Q00079_SagaOfTheAdventurer.java new file mode 100644 index 0000000000..030ac8eb48 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00079_SagaOfTheAdventurer/Q00079_SagaOfTheAdventurer.java @@ -0,0 +1,105 @@ +/* + * 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.Q00079_SagaOfTheAdventurer; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Adventurer (79) + * @author Emperorc + */ +public class Q00079_SagaOfTheAdventurer extends AbstractSagaQuest +{ + public Q00079_SagaOfTheAdventurer() + { + super(79); + _npc = new int[] + { + 31603, + 31584, + 31579, + 31615, + 31619, + 31646, + 31647, + 31651, + 31654, + 31655, + 31658, + 31616 + }; + Items = new int[] + { + 7080, + 7516, + 7081, + 7494, + 7277, + 7308, + 7339, + 7370, + 7401, + 7432, + 7102, + 0 + }; + Mob = new int[] + { + 27299, + 27228, + 27302 + }; + classid = new int[] + { + 93 + }; + prevclass = new int[] + { + 0x08 + }; + npcSpawnLocations = new Location[] + { + new Location(119518, -28658, -3811), + new Location(181205, 36676, -4816), + new Location(181215, 36676, -4812) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-01.htm new file mode 100644 index 0000000000..2b22b10133 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-01.htm @@ -0,0 +1,4 @@ +Black Cat:
+Oh, that Bernard! Better late than never, I suppose!
+Listen carefully to what I have to say before you decide to take up the challenge!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-010.htm new file mode 100644 index 0000000000..bb4fef4e40 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-010.htm @@ -0,0 +1,5 @@ +Black Cat:
+ Within your body hides an amazing power, but you are not skilled enough to control it yet.
+ What a pity!
+ Improve your skills and come back.
+(Only a character of level 76 or above is allowed to transfer to another class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-02.htm new file mode 100644 index 0000000000..390a04278b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-02.htm @@ -0,0 +1,3 @@ +Black Cat:
+ I'm really starting to wonder whether Bernard is the right person to send me challengers! I think he's lost his mind over his stupid coins!
+(This quest may only be undertaken by a Plains Walker of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-03.htm new file mode 100644 index 0000000000..63db1dd553 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-03.htm @@ -0,0 +1,6 @@ +Black Cat:
+Oh, really? Maybe he sent the right person this time! My past failures have caused me to ask many people for help... Elena, a spellbook seller, promised to research past challenges to the power for me. She may have some useful information for you.
+But, wait...
+Elena and I aren't on good terms right now... You must handle her with care... Try to get her in a good mood!
+Here's a description of the beast that maimed me. You should read it now. You'll find it useful.
+Now, leave and don't come back until you get the power! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-04.htm new file mode 100644 index 0000000000..a44ab9faf0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-04.htm @@ -0,0 +1,2 @@ +Black Cat:
+Elena can be found in Goddard Castle Town. She's probably rummaging through ancient books somewhere. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-05.htm new file mode 100644 index 0000000000..f399acc1c8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-05.htm @@ -0,0 +1,10 @@ +Black Cat:
+For as long as I can remember, I've been driven by extraordinary dreams! After taking control of the union, I found out about the power of ancient heroes that is now forbidden by the gods.
+I knew that I had to possess that power! But all my attempts failed...
+My body ruined, I couldn't challenge the power and ended up getting expelled from the union by jealous rivals...
+
+Filled with disappointment, I fell into despair.
+But then, I had an idea! Maybe I can't do it personally, but I can certainly train and send someone on my behalf! Using my brain rather than physical force, and overcoming many political obstacles, I took control of the union! While in that position, I never found the competent person I needed. When I resigned, I was promised by the president of the union that I would be supplied with a competent person!
+He seemed credible then, he wasn't so obsessed with his coins at that point...
+Are you up to the challenge? Are you willing to risk injuries such as mine, or worse? Are you brave enough to seek the power?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-06.htm new file mode 100644 index 0000000000..53489cfc11 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-06.htm @@ -0,0 +1,4 @@ +Black Cat:
+Sometimes I doubt whether anyone can ever bring the power to me.
+You showed great promise... Could you have really gotten it this time?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-07.htm new file mode 100644 index 0000000000..d2686295f2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-07.htm @@ -0,0 +1,5 @@ +Black Cat:
+At last, my lifetime of work has borne fruit!
+Great job! You've made me very proud.
+I'll have Bernard announce it to the guild. We have a very special honor to bestow upon you who have overcome such unimaginable hardships.
+You shall henceforth be known as a Wind Rider! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-08.htm new file mode 100644 index 0000000000..bb4fef4e40 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-08.htm @@ -0,0 +1,5 @@ +Black Cat:
+ Within your body hides an amazing power, but you are not skilled enough to control it yet.
+ What a pity!
+ Improve your skills and come back.
+(Only a character of level 76 or above is allowed to transfer to another class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-09.htm new file mode 100644 index 0000000000..6759fd2fdf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/0-09.htm @@ -0,0 +1,5 @@ +Black Cat:
+At last, my lifetime of work has borne fruit!
+Great job! You've made me very proud.
+I'll have Bernard announce it to the guild. We have a very special honor to bestow upon you who have overcome such unimaginable hardships.
+You shall henceforth be known as a Wind Rider! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-01.htm new file mode 100644 index 0000000000..b55d94396f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-01.htm @@ -0,0 +1,4 @@ +Chef Donath:
+Spellbook Seller Elena wants some of my cooking, eh?
+My food must be eaten immediately after it's prepared. Others have tried taking food to her, but it's always been spoiled by the time she gets it!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-02.htm new file mode 100644 index 0000000000..5002f5cb4a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-02.htm @@ -0,0 +1,2 @@ +Chef Donath:
+Bring an ice crystal to keep the food fresh until you deliver it to Elena. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-03.htm new file mode 100644 index 0000000000..0e65498ba3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-03.htm @@ -0,0 +1,3 @@ +Chef Donath:
+ Did you bring the ice crystal? I just had a great idea for a gourmet dish! You came at the perfect time!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-04.htm new file mode 100644 index 0000000000..4be6da3b78 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-04.htm @@ -0,0 +1,2 @@ +Chef Donath:
+Return to Spellbook Seller Elena at once! Although it's preserved with the ice crystal, you never know... I'd get going if I were you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-05.htm new file mode 100644 index 0000000000..99a31b1402 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-05.htm @@ -0,0 +1,4 @@ +Chef Donath:
+Hmm...
+Legend has it that Chef Jeremy in the hot springs area has some mysterious substance called ice crystals. I've heard that they're very effective in preserving food. Bring me some at once, and I'll cook for you.
+You must go and find Chef Jeremy. He has helped people find the ice crystals in the past. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-06.htm new file mode 100644 index 0000000000..05c612577a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/1-06.htm @@ -0,0 +1,2 @@ +Chef Donath:
+Here it is. The ice crystal should keep it fresh for a while. I'll keep what's left of the ice crystal as payment. Is that acceptable? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-01.htm new file mode 100644 index 0000000000..a7c53a6b6d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You feel something strange.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-02.htm new file mode 100644 index 0000000000..a4948174de --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+A great power appears. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-03.htm new file mode 100644 index 0000000000..4af4cc4d95 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Talk with the Hero. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-04.htm new file mode 100644 index 0000000000..99f1cbf806 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone is already communing with the Tablet of Vision. Please try again later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-05.htm new file mode 100644 index 0000000000..6475cb5b32 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-06.htm new file mode 100644 index 0000000000..1eb7f3b520 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-06.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+You feel a familiar energy coursing through you, and receive a new vision.
+You can feel the pleasure, pain, anger and love of all those who have sought this power.
+The screams you hear are your own.
+The flood of emotions renders you unconscious.
+You awaken and your mouth moves, but no words are formed. Could this be the end? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-07.htm new file mode 100644 index 0000000000..6326f752fd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is just an ordinary stone. Go back to the Black Cat. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/11-01.htm new file mode 100644 index 0000000000..36e3e58ed1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/11-01.htm @@ -0,0 +1,3 @@ +Hermit:
+I can't remember the last time anyone came this far just to see me! Are you ready for the second test?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/11-02.htm new file mode 100644 index 0000000000..b17951a3cd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/11-02.htm @@ -0,0 +1,2 @@ +Hermit:
+Kill the Archon of Halisha! He can be found in the Sepulchers, or by attacking his minions on the north side of the Wall of Argos. Kill him and take possession of the fifth Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/11-03.htm new file mode 100644 index 0000000000..72218f7296 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/11-03.htm @@ -0,0 +1,6 @@ +Hermit:
+Ah, yes, the second test... the Archon of Halisha has the fifth Stone of Commune.
+After you get it from him, take it to the northwestern end of the Wall of Argos. Commune with the Tablet of Vision there.
+Slaying the Archon of Halisha isn't going to be easy!
+He can usually be found inside the Sepulchers, but if you attack his minions on the north side of the Wall of Argos, that usually draws him out!
+Good luck! Your success means that my long wait is finally over! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-01.htm new file mode 100644 index 0000000000..590b2396f9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-01.htm @@ -0,0 +1,8 @@ +Spellbook Seller Elena:
+The damned old lady sent you?
+Did you come here knowing the relation between the old lady and me?
+Yes, we were really close in the past. So I said that I will help to find the method of getting forbidden force from the old documents.
+And finally I found the clue for the force. But the old lady complained about my food!
+We fought for that reason and never met again.
+Sometimes, people like you are deceived by the old lady's trick, and come to me to get some information but never pass my test and go back empty-handed.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-02.htm new file mode 100644 index 0000000000..0cd6fb38a3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-02.htm @@ -0,0 +1,2 @@ +Spellbook Seller Elena :
+If you want to know about the forbidden force, bring me the chef Donath's food, who is really famous in Hot Spring area recently. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-03.htm new file mode 100644 index 0000000000..de76b5da1c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-03.htm @@ -0,0 +1,4 @@ +Spellbook Seller Elena:
+Is that Chef Donath's food?
+Let me taste it.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-04.htm new file mode 100644 index 0000000000..d45c48f35d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-04.htm @@ -0,0 +1,3 @@ +Spellbook Seller Elena:
+The first Tablet of Vision is south of the Tower of Insolence. I need to read now. Go!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-05.htm new file mode 100644 index 0000000000..ba778da9c5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-05.htm @@ -0,0 +1,3 @@ +Scroll Seller Elena:
+Bring me some of Chef Donath's food, he's famous in the hot springs area.
+It has to be fresh, like it was cooked here! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-06.htm new file mode 100644 index 0000000000..a6a6cfed91 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/2-06.htm @@ -0,0 +1,6 @@ +Scroll Seller Elena:
+This is heavenly!
+Now I'll tell you as promised. According to the old documents, after the battle against the Titans, Einhasad prevented the lower races from getting the power.
+However, Gran Kain and Eva secretly sealed part of the power into the tablets and spread them around the world. Maybe they were waiting for someone to discover it.
+Here's a Stone of Commune I found while researching. You need this to get the power of the tablet.
+The first tablet is south of the Tower of Insolence. Find it! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-01.htm new file mode 100644 index 0000000000..eea31056f6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-01.htm @@ -0,0 +1,6 @@ +Hermit:
+I've been expecting you.
+You follow in the footsteps of giants!
+I've been waiting for many, many years... Since the gods told me to expect a hero such as you! I have the stone of vision you seek.
+First, however, you must prove that you are who you appear to be... Will you take a test?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-02.htm new file mode 100644 index 0000000000..67a8bfed59 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-02.htm @@ -0,0 +1,2 @@ +Hermit:
+Well, go to the Ketra Orcs and get the Divine Stone of Wisdom. Like I said, Ketra Orcs are not the ones who trust strangers easily. To obtain Ketra Orcs' trust, you should go to Ketra's Messenger Wahkan in the Ketra Orc Outpost, and carry out difficult tasks that he asks you to do. You must earn the trust of the Ketra Orcs! This won't be an easy task, and will take much time and patience. Remember to never help their mortal enemies, the Varka Silenos! You'd never regain their trust! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-03.htm new file mode 100644 index 0000000000..39f217de51 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-03.htm @@ -0,0 +1,2 @@ +Hermit:
+Well, go to the Varka Silenos and get the Divine Stone of Wisdom. Like I said, Varka Silenos are not the ones who trust strangers easily. To obtain Varka Silenos' trust, you should go to Varka's Messenger Naran Ashanuk in the Varka Silenos Outpost, and carry out difficult tasks that he asks you to do. You must earn the trust of the Varka Silenos! This won't be an easy task, and will take much time and patience. Remember to never help their mortal enemies, the Ketra Orcs! You'd never regain their trust! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-04.htm new file mode 100644 index 0000000000..85050704ac --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-04.htm @@ -0,0 +1,2 @@ +Hermit:
+ Obtaining it won't be an easy task. This is your chance to prove that you are truly the one to succeed the legend! After earning the trust of the tribe you chose and being regarded as a true friend by them, you can obtain the Divine Stone of Wisdom. For Ketra Orcs, you must go to Ketra's Messenger Wahkan in the Ketra Orc Outpost whereas you must go see Varka's Messenger Naran Ashanuk in the Varka Silenos Outpost for Varka Silenos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-05.htm new file mode 100644 index 0000000000..7eeea2ce3f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-05.htm @@ -0,0 +1,3 @@ +Hermit:
+Have you brought the Divine Stone of Wisdom?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-06.htm new file mode 100644 index 0000000000..3f2525340b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-06.htm @@ -0,0 +1,2 @@ +Hermit:
+The Tablet of Vision can be found in the northern part of the Varka Silenos stronghold. Please don't disappoint us. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-07.htm new file mode 100644 index 0000000000..604e076021 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-07.htm @@ -0,0 +1,5 @@ +Hermit:
+
+This test has two paths. The Ketra Orcs and the Varka Silenos have long been at war, and both tribes are infamous for their hatred of each other and their cruelty in battle. Select one of the two tribes and obtain from them the Divine Stone of Wisdom. They give that only to those who they consider to be their true friend. Which tribe would you like to choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-08.htm new file mode 100644 index 0000000000..bde8dbb9da --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/3-08.htm @@ -0,0 +1,5 @@ +Hermit:
+You've passed the first test. You've already come further than most who've attempted it! You're really starting to look like the hero I've been waiting for!
+Further dangers await you, however...
+You must always try to keep your cool.
+Take this Stone of Commune to the Tablet of Vision in the northern part of the Varka Silenos stronghold. You'll get further instruction from the Tablet of Vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-01.htm new file mode 100644 index 0000000000..a2f35be320 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-01.htm @@ -0,0 +1,2 @@ +Eternity Wanderer Staris:
+Help me defeat the monument guardian Azrael! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-010.htm new file mode 100644 index 0000000000..323a29c08b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-010.htm @@ -0,0 +1,5 @@ +Eternity Wanderer Staris:
+You'd better be prepared if you want the forbidden power!
+Here's the Stone of Commune you wanted.
+Now I gotta' go. See you later!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-011.htm new file mode 100644 index 0000000000..20fee33606 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-011.htm @@ -0,0 +1,4 @@ +Eternity Wanderer Staris:
+Here's the stone you wanted.
+I owe you, so it's free this time.
+I gotta' go! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-02.htm new file mode 100644 index 0000000000..e2d8ea03b8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-02.htm @@ -0,0 +1,2 @@ +Eternity Wanderer Staris:
+Stand back! This is not your fight. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-03.htm new file mode 100644 index 0000000000..01e40817ab --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-03.htm @@ -0,0 +1,3 @@ +Eternity Wanderer Staris:
+He escaped!
+I'm not getting paid enough for this. Don't worry, he'll be back. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-04.htm new file mode 100644 index 0000000000..152d00fc1c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-04.htm @@ -0,0 +1,2 @@ +Eternity Wanderer Staris:
+He's tough. Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-05.htm new file mode 100644 index 0000000000..88b0324821 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-05.htm @@ -0,0 +1,2 @@ +Eternity Wanderer Staris:
+This guys tough, I'll handle him. Wait your turn. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-06.htm new file mode 100644 index 0000000000..234f3d29af --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-06.htm @@ -0,0 +1,3 @@ +Eternity Wanderer Staris:
+You aren't strong enough to handle him on your own.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-07.htm new file mode 100644 index 0000000000..c559ec229f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-07.htm @@ -0,0 +1,4 @@ +Eternity Wanderer Staris:
+Let's see you try.
+Here's the Stone of Commune. Give it your best!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-08.htm new file mode 100644 index 0000000000..ee082a139c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-08.htm @@ -0,0 +1,2 @@ +Eternity Wanderer Staris:
+I can handle this myself. Just commune with the tablet. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-09.htm new file mode 100644 index 0000000000..ae7595224c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/4-09.htm @@ -0,0 +1,3 @@ +Eternity Wanderer Staris:
+Commune with the tablet, it's right there!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/5-01.htm new file mode 100644 index 0000000000..0b175b6225 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/5-02.htm new file mode 100644 index 0000000000..12277ab96b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/5-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+The tablet seems to be communicating with you. You see a vision of a tablet much like this one, protected by several ominous guardians. One of them is holding the next Stone of Commune!
+It appears that they're located in the southern part of the Valley of Saints!
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/5-03.htm new file mode 100644 index 0000000000..ea14aac556 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes completely dark. You must retrieve the Stone of Commune from the Guardians of Forbidden Knowledge! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/6-01.htm new file mode 100644 index 0000000000..0014ef69c6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/6-01.htm @@ -0,0 +1,3 @@ +Tablet of Viision :
+There are no changes.
+I may need the Stone of Commune that the Guardians of Forbidden Knowledge have. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/6-02.htm new file mode 100644 index 0000000000..420e404e0a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/6-03.htm new file mode 100644 index 0000000000..4615dd996c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/6-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+You begin to see visions. You see a landscape, I can see the Tablet that has the same shape as this Tablet.
+It seems to be located in the northeast of Ketra Orc Outpost.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/6-04.htm new file mode 100644 index 0000000000..7b4fd9e710 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes completely dark. Your destiny lies elsewhere. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-01.htm new file mode 100644 index 0000000000..cfa4fbbd15 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Evil lurks nearby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-02.htm new file mode 100644 index 0000000000..80e729fc22 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+It's Ezekiel! I read about him in the book I got from Black Cat! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-03.htm new file mode 100644 index 0000000000..ec22a74291 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Ezekiel must be dealt with first. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-04.htm new file mode 100644 index 0000000000..60a6d62986 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone else is currently communing with the Tablet of Vision. Please wait. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-05.htm new file mode 100644 index 0000000000..4677fec1fd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-06.htm new file mode 100644 index 0000000000..17b9d5ba57 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-06.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+You begin to see visions. You see a landscape, I see a male Human. The house engulfed in a dark aura...
+It's located on the road from Goddard Castle Town to the Ketra Orc Outpost.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-07.htm new file mode 100644 index 0000000000..14b9d1697e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes completely dark. Find the man with the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/8-01.htm new file mode 100644 index 0000000000..b802fcafa3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/8-02.htm new file mode 100644 index 0000000000..1a66f42e25 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/8-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+At that moment, a vision appears of a man engulfed by a dark aura.
+It seems he is on the road from the Wall of Argos to Goddard Castle.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/8-03.htm new file mode 100644 index 0000000000..5de841dcd4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Find the man you saw in the vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/9-01.htm new file mode 100644 index 0000000000..869432efba --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/9-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+As the hermit said, kill the Archon of Halisha at the Wall of Argos or the Shrine of the Loyal and take the stone from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/9-02.htm new file mode 100644 index 0000000000..b57953bd4f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/9-03.htm new file mode 100644 index 0000000000..0b1d4c77f8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/9-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+You begin to see visions. You see a landscape, I see a male Human. I see a monument that looks like the Tablet of Vision.
+It looks like it is located somewhere in the southeast of Hunters Village.
+The force out of the Tablet grows less and less. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/9-04.htm new file mode 100644 index 0000000000..1835e8711f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/9-04.htm @@ -0,0 +1,2 @@ +The Tablet of Vision:
+The tablet is still and dark. Find the next tablet now. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/Q00080_SagaOfTheWindRider.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/Q00080_SagaOfTheWindRider.java new file mode 100644 index 0000000000..bdcbe87da6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00080_SagaOfTheWindRider/Q00080_SagaOfTheWindRider.java @@ -0,0 +1,105 @@ +/* + * 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.Q00080_SagaOfTheWindRider; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Wind Rider (80) + * @author Emperorc + */ +public class Q00080_SagaOfTheWindRider extends AbstractSagaQuest +{ + public Q00080_SagaOfTheWindRider() + { + super(80); + _npc = new int[] + { + 31603, + 31624, + 31284, + 31615, + 31612, + 31646, + 31648, + 31652, + 31654, + 31655, + 31659, + 31616 + }; + Items = new int[] + { + 7080, + 7517, + 7081, + 7495, + 7278, + 7309, + 7340, + 7371, + 7402, + 7433, + 7103, + 0 + }; + Mob = new int[] + { + 27300, + 27229, + 27303 + }; + classid = new int[] + { + 101 + }; + prevclass = new int[] + { + 0x17 + }; + npcSpawnLocations = new Location[] + { + new Location(161719, -92823, -1893), + new Location(124314, 82155, -2803), + new Location(124355, 82155, -2803) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-01.htm new file mode 100644 index 0000000000..2d82cecceb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-01.htm @@ -0,0 +1,3 @@ +Black Cat:
+Are you the person sent by the union? Then, please listen carefully to what I'm about to tell you.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-010.htm new file mode 100644 index 0000000000..bb4fef4e40 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-010.htm @@ -0,0 +1,5 @@ +Black Cat:
+ Within your body hides an amazing power, but you are not skilled enough to control it yet.
+ What a pity!
+ Improve your skills and come back.
+(Only a character of level 76 or above is allowed to transfer to another class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-02.htm new file mode 100644 index 0000000000..115f4fc32a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-02.htm @@ -0,0 +1,3 @@ +Black Cat:
+ I'm really starting to wonder whether Bernard is the right person to send me challengers! I think he's lost his mind over his stupid coins!
+(This quest may only be undertaken by a Abyss Walker of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-03.htm new file mode 100644 index 0000000000..c18ba0c888 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-03.htm @@ -0,0 +1,3 @@ +Black Cat:
+ Very well, I'll tell you. If you study the history of the ancient heroes, you'll find that at least a few of them must have obtained the forbidden power! Without it, they never could've accomplished what they did!
+ Master Drakon, my relative, is one such hero! It's obvious that he knows something, but he always makes excuses, never sharing anything he knows! Why don't you try talking to him? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-04.htm new file mode 100644 index 0000000000..76aded3cbe --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-04.htm @@ -0,0 +1,3 @@ +Black Cat:
+ Did you meet Master Dra?
+What are you waiting for? Go to him immediately! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-05.htm new file mode 100644 index 0000000000..a47b1686d6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-05.htm @@ -0,0 +1,9 @@ +Black Cat:
+At one time, I was considered the most likely to succeed in the Hunters Union! Unfortunately, I made the mistake of challenging the power that was forbidden by the gods! This power allows whoever controls it to transcend Human limitations! But look where it got me!
+My body was totally ruined, and when I could no longer challenge the power, I was expelled from the union by my jealous rivals!
+I sank into a mass of self-pity and regret!
+But then, I had an idea! Maybe I can't do it personally, but I can certainly train and send someone on my behalf! Using my brain rather than physical force, and overcoming many political obstacles, I took control of the union! While in that position, I never found the competent person I needed. When I resigned, I was promised by the president of the union that I would be supplied with a competent person!
+He seemed credible then, he wasn't so obsessed with his coins at that point...
+Are you up to the challenge? Are you willing to risk injuries such as mine, or worse? Are you brave enough to seek the power?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-06.htm new file mode 100644 index 0000000000..48500c3136 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-06.htm @@ -0,0 +1,4 @@ +Black Cat:
+Sometimes I doubt whether anyone can ever bring the power to me.
+You showed great promise... Could you have really gotten it this time?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-07.htm new file mode 100644 index 0000000000..6ed114f61e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-07.htm @@ -0,0 +1,5 @@ +Black Cat:
+ At last, my lifetime of work has borne fruit!
+Great job! You've made me very proud. I'll have Bernard announce it to the guild.
+ We have a very special honor to bestow upon you who have overcome such unimaginable hardships.
+You shall henceforth be known as a Ghost Hunter! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-08.htm new file mode 100644 index 0000000000..bb4fef4e40 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-08.htm @@ -0,0 +1,5 @@ +Black Cat:
+ Within your body hides an amazing power, but you are not skilled enough to control it yet.
+ What a pity!
+ Improve your skills and come back.
+(Only a character of level 76 or above is allowed to transfer to another class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-09.htm new file mode 100644 index 0000000000..6ed114f61e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/0-09.htm @@ -0,0 +1,5 @@ +Black Cat:
+ At last, my lifetime of work has borne fruit!
+Great job! You've made me very proud. I'll have Bernard announce it to the guild.
+ We have a very special honor to bestow upon you who have overcome such unimaginable hardships.
+You shall henceforth be known as a Ghost Hunter! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-01.htm new file mode 100644 index 0000000000..78f56b982c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-01.htm @@ -0,0 +1,4 @@ +Chef Donath:
+Master Drakon wants my secret recipe book, eh?
+ Sorry to break it to you, but there's no such thing as a secret recipe! My skill comes from endless training and trial and error. Of course, I did take a few notes along the way...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-02.htm new file mode 100644 index 0000000000..a936549e5b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-02.htm @@ -0,0 +1,2 @@ +Chef Donath:
+Bring me an ice crystal and I'll give you my recipe book. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-03.htm new file mode 100644 index 0000000000..347fb4d100 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-03.htm @@ -0,0 +1,3 @@ +Chef Donath:
+Excellent! Now can I have it?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-04.htm new file mode 100644 index 0000000000..ada3d36103 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-04.htm @@ -0,0 +1,2 @@ +Chef Donath:
+Master Drakon must be starving! Return to him now. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-05.htm new file mode 100644 index 0000000000..f836c52b0a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-05.htm @@ -0,0 +1,4 @@ +Chef Donath:
+I've spent a lot of time and energy on this cookbook, and I won't just give it to you for free! Bring me the ice crystals. You can find them from a monster in the hot spring area...
+You must go and find Chef Jeremy. He is working there.
+You must help him make soy sauce. He will show you where the ice crystals can be found. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-06.htm new file mode 100644 index 0000000000..c798385d45 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/1-06.htm @@ -0,0 +1,2 @@ +Chef Donath:
+This is my entire collection of recipes! If you're only interested in general dishes, you'll just need one page. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-01.htm new file mode 100644 index 0000000000..878e6cdf08 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You feel something strange.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-02.htm new file mode 100644 index 0000000000..422a346a83 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+A powerful energy appears. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-03.htm new file mode 100644 index 0000000000..c077bda796 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Speak with the Hero. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-04.htm new file mode 100644 index 0000000000..0dd42737d6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone is currently communing with the tablet. Try again later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-05.htm new file mode 100644 index 0000000000..ecbef1d28b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-06.htm new file mode 100644 index 0000000000..da1da6d3e4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-06.htm @@ -0,0 +1,11 @@ +Tablet of Vision:
+An old, familiar energy enters your body. Suddenly, a new, even more intense feeling appears!
+All the pleasure, pain, anger and love of the previous challengers of this power course through your veins!
+The screams you hear are your own.
+But are they real or imagined?
+You feel consciousness slipping away...
+...
+...
+And then you awake...
+Your lips move, but no words are formed.
+Could this be the end? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-07.htm new file mode 100644 index 0000000000..c48a2df082 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+This tablet is useless. Return to Black Cat. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/11-01.htm new file mode 100644 index 0000000000..ce6522cbf1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/11-01.htm @@ -0,0 +1,3 @@ +Hermit:
+I can't remember the last time anyone came this far just to see me! Are you ready for the second test?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/11-02.htm new file mode 100644 index 0000000000..b17951a3cd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/11-02.htm @@ -0,0 +1,2 @@ +Hermit:
+Kill the Archon of Halisha! He can be found in the Sepulchers, or by attacking his minions on the north side of the Wall of Argos. Kill him and take possession of the fifth Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/11-03.htm new file mode 100644 index 0000000000..72218f7296 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/11-03.htm @@ -0,0 +1,6 @@ +Hermit:
+Ah, yes, the second test... the Archon of Halisha has the fifth Stone of Commune.
+After you get it from him, take it to the northwestern end of the Wall of Argos. Commune with the Tablet of Vision there.
+Slaying the Archon of Halisha isn't going to be easy!
+He can usually be found inside the Sepulchers, but if you attack his minions on the north side of the Wall of Argos, that usually draws him out!
+Good luck! Your success means that my long wait is finally over! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-01.htm new file mode 100644 index 0000000000..e2f78e022f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-01.htm @@ -0,0 +1,6 @@ +Master Drakon:
+Secrets of my ancestors? What are you talking about?
+Why is this dish so tasteless? Rats! I've ruined dinner again!
+I wish I could cook as good as Chef Donath.
+Maybe you could get me his secret recipe book?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-02.htm new file mode 100644 index 0000000000..bdd40b5cc0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-02.htm @@ -0,0 +1,3 @@ +Master Drakon:
+ Where's Donath's secret recipe book?
+ I'll tell you the secret of my ancestors if you get it for me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-03.htm new file mode 100644 index 0000000000..5c888dc378 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-03.htm @@ -0,0 +1,4 @@ +Master Drakon:
+You've brought me Chef Donath's secret recipes!
+ Give it to me.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-04.htm new file mode 100644 index 0000000000..ab8d89a741 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-04.htm @@ -0,0 +1,3 @@ +Master Drakon:
+ Didn't I tell you? The first Tablet of Vision is south of the Tower of Insolence.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-05.htm new file mode 100644 index 0000000000..7bff6f7a43 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-05.htm @@ -0,0 +1,4 @@ +Master Drakon:
+You can get it for me?
+It would break my family's code to tell you my ancestors' secrets.
+I'll do it if you get me Chef Donath's secret recipe book! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-06.htm new file mode 100644 index 0000000000..936f4f44c1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/2-06.htm @@ -0,0 +1,6 @@ +Master Drakon:
+These recipes are fabulous!
+ I'll only tell the story of my ancestors once, so listen well.
+The story says that the power was sealed by Einhasad, but unbeknownst to him, Gran Kain and Eva took a portion of it and sealed it into stone tablets that they then distributed throughout the world. The power of the tablets is obtained by communing with them using a Stone of Commune. By going through many trials, my ancestors collected that power!
+Here's the remaining Stone of Commune that's been in my family for generations. You need this to get the power of Tablet.
+The location of the first Tablet is in the south of Tower of Insolence. Go look for it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-01.htm new file mode 100644 index 0000000000..5d37414169 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-01.htm @@ -0,0 +1,6 @@ +Hermit:
+I've been expecting you.
+You follow in the footsteps of giants!
+I've been waiting for many, many years... Since the gods told me to expect a hero such as you! I have the stone of vision you seek.
+First, however, you must prove that you are who you appear to be... Will you take a test?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-02.htm new file mode 100644 index 0000000000..67a8bfed59 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-02.htm @@ -0,0 +1,2 @@ +Hermit:
+Well, go to the Ketra Orcs and get the Divine Stone of Wisdom. Like I said, Ketra Orcs are not the ones who trust strangers easily. To obtain Ketra Orcs' trust, you should go to Ketra's Messenger Wahkan in the Ketra Orc Outpost, and carry out difficult tasks that he asks you to do. You must earn the trust of the Ketra Orcs! This won't be an easy task, and will take much time and patience. Remember to never help their mortal enemies, the Varka Silenos! You'd never regain their trust! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-03.htm new file mode 100644 index 0000000000..fabef6b5da --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-03.htm @@ -0,0 +1,2 @@ +Hermit:
+Well, go to the Varka Silenos and get the Divine Stone of Wisdom. Like I said, Varka Silenos are not the ones who trust strangers easily. To obtain Varka Silenos' trust, you should go to Varka's Messenger Naran Ashanuk in the Varka Silenos Outpost, and carry out difficult tasks that he asks you to do. You must earn the trust of the Ketra Orcs! This won't be an easy task, and will take much time and patience. Remember to never help their mortal enemies, the Ketra Orcs! You'd never regain their trust! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-04.htm new file mode 100644 index 0000000000..85050704ac --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-04.htm @@ -0,0 +1,2 @@ +Hermit:
+ Obtaining it won't be an easy task. This is your chance to prove that you are truly the one to succeed the legend! After earning the trust of the tribe you chose and being regarded as a true friend by them, you can obtain the Divine Stone of Wisdom. For Ketra Orcs, you must go to Ketra's Messenger Wahkan in the Ketra Orc Outpost whereas you must go see Varka's Messenger Naran Ashanuk in the Varka Silenos Outpost for Varka Silenos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-05.htm new file mode 100644 index 0000000000..f7c8067b00 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-05.htm @@ -0,0 +1,3 @@ +Hermit:
+Have you brought the Divine Stone of Wisdom?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-06.htm new file mode 100644 index 0000000000..3f2525340b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-06.htm @@ -0,0 +1,2 @@ +Hermit:
+The Tablet of Vision can be found in the northern part of the Varka Silenos stronghold. Please don't disappoint us. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-07.htm new file mode 100644 index 0000000000..e9eb274a4d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-07.htm @@ -0,0 +1,5 @@ +Hermit:
+
+This test has two paths. The Ketra Orcs and the Varka Silenos have long been at war, and both tribes are infamous for their hatred of each other and their cruelty in battle. Select one of the two tribes and obtain from them the Divine Stone of Wisdom. They give that only to those who they consider to be their true friend. Which tribe would you like to choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-08.htm new file mode 100644 index 0000000000..bde8dbb9da --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/3-08.htm @@ -0,0 +1,5 @@ +Hermit:
+You've passed the first test. You've already come further than most who've attempted it! You're really starting to look like the hero I've been waiting for!
+Further dangers await you, however...
+You must always try to keep your cool.
+Take this Stone of Commune to the Tablet of Vision in the northern part of the Varka Silenos stronghold. You'll get further instruction from the Tablet of Vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-01.htm new file mode 100644 index 0000000000..408185fc9f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-01.htm @@ -0,0 +1,2 @@ +Aria Firstmatter:
+That's the very least you could do! Pay attention! Don't you have any sense of responsibility? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-010.htm new file mode 100644 index 0000000000..b2e3997b35 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-010.htm @@ -0,0 +1,4 @@ +Aria Firstmatter:
+Oh, really? Is that right? Hmmm!
+ Hey, newbie! Here's the Stone of Commune! You've been looking for it, haven't you? Well, here you go! Enjoy!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-011.htm new file mode 100644 index 0000000000..8e55991f3c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-011.htm @@ -0,0 +1,3 @@ +Aria Firstmatter:
+This is the Stone of Commune.
+If we're lucky, we shall never meet again. Now, if you'll excuse me, I have more newbies that need their diapers changed. Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-02.htm new file mode 100644 index 0000000000..1cbdf74fc4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-02.htm @@ -0,0 +1,2 @@ +Aria Firstmatter:
+If I wanted your help I would've demanded it! Wait your turn! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-03.htm new file mode 100644 index 0000000000..f411bde081 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-03.htm @@ -0,0 +1,2 @@ +Aria Firstmatter:
+Oh, I missed it! I must be losing my touch! Age is slowing me down... Oh, well...I'll just have to wait for another chance! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-04.htm new file mode 100644 index 0000000000..44142808be --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-04.htm @@ -0,0 +1,2 @@ +Aria Firstmatter:
+You've got long way to go! Is that the best you can do? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-05.htm new file mode 100644 index 0000000000..cd0a9bf7eb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-05.htm @@ -0,0 +1,2 @@ +Aria Firstmatter:
+Stop bugging me! If I wanted your help I would've told you so! Wait your turn! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-06.htm new file mode 100644 index 0000000000..3b9fcaffc3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-06.htm @@ -0,0 +1,4 @@ +Aria Firstmatter:
+Not bad, newbie! Of course, you've still got a lot to learn, but you show promise!
+ I helped you out this time. Don't expect it to happen again!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-07.htm new file mode 100644 index 0000000000..2fc06ef88b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-07.htm @@ -0,0 +1,5 @@ +Aria Firstmatter:
+Wow, not too bad! Careful you don't lose your diaper, newbie!
+ Ha! Did I embarrass you?
+Here, take this Stone of Commune, and don't say I never did anything for you!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-08.htm new file mode 100644 index 0000000000..53254752e3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-08.htm @@ -0,0 +1,3 @@ +Aria Firstmatter:
+That's enough, Mr. Azrael!
+So, you want to help little old me? Never mind that! Just commune with the tablet! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-09.htm new file mode 100644 index 0000000000..106bcaee7d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/4-09.htm @@ -0,0 +1,3 @@ +Aria Firstmatter:
+Do you see that stone of vision? Commune with it!
+ By the way, I think we'll be seeing each other more often! You've joined the game of the gods! Welcome! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/5-01.htm new file mode 100644 index 0000000000..c34e96289f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/5-02.htm new file mode 100644 index 0000000000..d5965cb23b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/5-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+The tablet seems to be communicating with you. You see a vision of a tablet much like this one, protected by several ominous guardians. One of them is holding the next Stone of Commune!
+It appears that they're located in the northwest part of the Valley of Saints!
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/5-03.htm new file mode 100644 index 0000000000..ea14aac556 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes completely dark. You must retrieve the Stone of Commune from the Guardians of Forbidden Knowledge! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/6-01.htm new file mode 100644 index 0000000000..0014ef69c6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/6-01.htm @@ -0,0 +1,3 @@ +Tablet of Viision :
+There are no changes.
+I may need the Stone of Commune that the Guardians of Forbidden Knowledge have. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/6-02.htm new file mode 100644 index 0000000000..9d4237440c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/6-03.htm new file mode 100644 index 0000000000..757a553b1b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/6-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+You begin to see visions. You see a landscape, I can see the Tablet that has the same shape as this Tablet.
+It seems to be located in the southeast of Ketra Orc Outpost.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/6-04.htm new file mode 100644 index 0000000000..7b4fd9e710 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes completely dark. Your destiny lies elsewhere. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-01.htm new file mode 100644 index 0000000000..ec25a1e31a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You sense evil around you.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-02.htm new file mode 100644 index 0000000000..baf55b5ef3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+It's Ezekiel! I read about him in that book I got from Black Cat! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-03.htm new file mode 100644 index 0000000000..ec22a74291 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Ezekiel must be dealt with first. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-04.htm new file mode 100644 index 0000000000..60a6d62986 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone else is currently communing with the Tablet of Vision. Please wait. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-05.htm new file mode 100644 index 0000000000..7e54256246 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-06.htm new file mode 100644 index 0000000000..d08bc48478 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-06.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+You begin to see visions. You see a landscape, I see a male Human. The house engulfed in a dark aura...
+The are appears to be located near the Ketra Orc Outpost.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-07.htm new file mode 100644 index 0000000000..3917eaf06e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The power is gone. Find the man you saw in the vision! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/8-01.htm new file mode 100644 index 0000000000..5dcbba373a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/8-02.htm new file mode 100644 index 0000000000..1a66f42e25 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/8-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+At that moment, a vision appears of a man engulfed by a dark aura.
+It seems he is on the road from the Wall of Argos to Goddard Castle.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/8-03.htm new file mode 100644 index 0000000000..5de841dcd4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Find the man you saw in the vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/9-01.htm new file mode 100644 index 0000000000..436c8847ef --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/9-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+As the hermit said, kill the Archon of Halisha and take the stone from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/9-02.htm new file mode 100644 index 0000000000..3f5b4cc69c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/9-03.htm new file mode 100644 index 0000000000..c308bfba3e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/9-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+You begin to see visions. You see a landscape, I see a male Human. I see a monument that looks like the Tablet of Vision.
+It looks like it is located somewhere in the northwest of the Forest of the Dead.
+The force out of the Tablet grows less and less. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/9-04.htm new file mode 100644 index 0000000000..be02ebd53f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Find the next Stone of Commune now. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/Q00081_SagaOfTheGhostHunter.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/Q00081_SagaOfTheGhostHunter.java new file mode 100644 index 0000000000..9934f9f907 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00081_SagaOfTheGhostHunter/Q00081_SagaOfTheGhostHunter.java @@ -0,0 +1,105 @@ +/* + * 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.Q00081_SagaOfTheGhostHunter; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Ghost Hunter (81) + * @author Emperorc + */ +public class Q00081_SagaOfTheGhostHunter extends AbstractSagaQuest +{ + public Q00081_SagaOfTheGhostHunter() + { + super(81); + _npc = new int[] + { + 31603, + 31624, + 31286, + 31615, + 31617, + 31646, + 31649, + 31653, + 31654, + 31655, + 31656, + 31616 + }; + Items = new int[] + { + 7080, + 7518, + 7081, + 7496, + 7279, + 7310, + 7341, + 7372, + 7403, + 7434, + 7104, + 0 + }; + Mob = new int[] + { + 27301, + 27230, + 27304 + }; + classid = new int[] + { + 108 + }; + prevclass = new int[] + { + 0x24 + }; + npcSpawnLocations = new Location[] + { + new Location(164650, -74121, -2871), + new Location(47391, -56929, -2370), + new Location(47429, -56923, -2383) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-01.htm new file mode 100644 index 0000000000..9ff41f64ae --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-01.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard:
+This is quite some event, and I'm not prepared!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-010.htm new file mode 100644 index 0000000000..1f6a474358 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-010.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard :
+It's strange. Guild members say that they can't acknowledge you.
+(Only a character of level 76 or above is allowed to transfer to another class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-02.htm new file mode 100644 index 0000000000..61f821f8c3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-02.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard:
+It's none of your business. Go on with your work.
+(This quest may only be undertaken by a Hawkeye of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-03.htm new file mode 100644 index 0000000000..c4cbcb0e68 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-03.htm @@ -0,0 +1,8 @@ +Hunters Guild President Bernard:
+Thank you so much!
+You'll be well-rewarded if you solve this problem.
+It's only fair, right? Ha!
+Whoever stole my bow was a very cunning thief. He took it right from under my nose!
+I'll wager that Information Broker Grimst knows about this robbery. You should ask him for the details.
+Oh, by the way, this book was found at the scene of the crime.
+You should get going! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-04.htm new file mode 100644 index 0000000000..5d389dfb00 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-04.htm @@ -0,0 +1,2 @@ +Hunters Guild President Bernard:
+Information Broker Grimst says the thief is here in this town. Find out what he has to say before the thief gets away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-05.htm new file mode 100644 index 0000000000..95a743bdd0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-05.htm @@ -0,0 +1,7 @@ +Hunter Guild President Bernard:
+Sagittarius's bow, the symbol of our guild, was stolen.
+During the day, it's on display, but at night, I keep it close at hand.
+I was delayed putting it in the safe for just a minute while counting my new coins.
+This must be a conspiracy against me.
+Your reputation is growing, I would appreciate your help.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-06.htm new file mode 100644 index 0000000000..b2fcf1bee0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-06.htm @@ -0,0 +1,5 @@ +Hunter Guild President Bernard:
+What a fraud!
+I'll deal with him later.
+You've done well to catch him!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-07.htm new file mode 100644 index 0000000000..8509991354 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-07.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard:
+Your deeds will always be remembered.
+By my authority as Hunter Guild President, I shall give you the title of Sagittarius. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-08.htm new file mode 100644 index 0000000000..1f6a474358 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-08.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard :
+It's strange. Guild members say that they can't acknowledge you.
+(Only a character of level 76 or above is allowed to transfer to another class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-09.htm new file mode 100644 index 0000000000..8509991354 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/0-09.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard:
+Your deeds will always be remembered.
+By my authority as Hunter Guild President, I shall give you the title of Sagittarius. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-01.htm new file mode 100644 index 0000000000..bec5b76bb1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-01.htm @@ -0,0 +1,5 @@ +Information Broker Mist:
+My granddaughter Lilly took first place at an event, and you'll get her anything she wants as her prize?
+Are you joking?
+Well, there is one thing she really loves...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-02.htm new file mode 100644 index 0000000000..a1475bd20a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-02.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+My granddaughter won first prize at an event and you'll bring her anything she wants?
+Are you joking? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-03.htm new file mode 100644 index 0000000000..f0c2ff30f8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-03.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+Now I can make her a bowl of Shaved Ice!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-04.htm new file mode 100644 index 0000000000..17a2034768 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-04.htm @@ -0,0 +1,2 @@ +Information Broker Mist:
+Thank you! I'm happy when she's happy! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-05.htm new file mode 100644 index 0000000000..9fd309ebb1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-05.htm @@ -0,0 +1,6 @@ +Information Broker Mist:
+Well, I suppose it wouldn't hurt to tell you the story...
+ In the past, I made a Shaved Ice dessert for my granddaughter, and she loved it very much, but the ingredients are quite rare! The rarest and most important of the ingredients are ice crystals.
+The last time I got some, I had to trade Chef Jeremy some other very rare ingredients for them.
+Can you please bring me some of those crystals?
+You should be able to get some from Chef Jeremy in the hot springs area if you help him make some soy sauce. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-06.htm new file mode 100644 index 0000000000..14b122ea56 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/1-06.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+Yummy!
+Why don't you take some with you? I'll wrap it in ice crystal to keep it cold! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-01.htm new file mode 100644 index 0000000000..1c887c3fe2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You feel something strange.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-02.htm new file mode 100644 index 0000000000..cae6453d94 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+A strong energy appears. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-03.htm new file mode 100644 index 0000000000..c077bda796 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Speak with the Hero. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-04.htm new file mode 100644 index 0000000000..e7ffe3c1ab --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone else is currently communing with the Tablet of Vision. Try again later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-05.htm new file mode 100644 index 0000000000..87787afbed --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-06.htm new file mode 100644 index 0000000000..57cc949b4f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-06.htm @@ -0,0 +1,9 @@ +Tablet of Vision:
+A familiar feeling rushes through your body. And then when it seems unbearable, a new vision appears...
+All the pleasure, pain, anger and love ever felt by all the previous challengers of this power courses at once through your veins!
+The emotions rush over you like a waterfall, and the screams you hear are your own as you slip into unconsciousness...
+
+...
+...
+And then you awake... You mouth moves, but no words are formed...
+Could this be the end? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-07.htm new file mode 100644 index 0000000000..96ddc877da --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+This tablet is useless. Return to Hunter Guild President Bernard. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/11-01.htm new file mode 100644 index 0000000000..06477717f9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/11-01.htm @@ -0,0 +1,5 @@ +Pilgrim of Darkness:
+You're looking for a man who stole a bow, eh?
+I saw someone who fits that description not very long ago! I spent a day in the woods with him! We must have talked about everything! He seemed like a nice guy to me...
+Did he do anything serious?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/11-02.htm new file mode 100644 index 0000000000..6798ffde8f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/11-02.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+I just told him that if he wanted to catch the Archon of Halisha he should look in the Sepulchers! I told him that he might also try attacking the Archon's minions at the north end of the Wall of Argos. That usually brings him out! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/11-03.htm new file mode 100644 index 0000000000..3ca244984e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/11-03.htm @@ -0,0 +1,4 @@ +Pilgrim of Darkness:
+How can that be?!
+He said that he was after the Archon of Halisha. That's why I told him where to look!
+Did I make a mistake? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-01.htm new file mode 100644 index 0000000000..e990d34a74 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-01.htm @@ -0,0 +1,5 @@ +Information Broker Grimst:
+ So, you're from the union?
+ What's Bernard up to these days?
+What do you want? It seems nobody wants to do business with me lately.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-02.htm new file mode 100644 index 0000000000..8efd0ca34e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-02.htm @@ -0,0 +1,5 @@ +Information Broker Grimst:
+ Have you brought me what Lilly likes?
+ What? You came back empty-handed?
+That's not the way this works!
+No payment, no information. Now go! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-03.htm new file mode 100644 index 0000000000..91822b7da7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-03.htm @@ -0,0 +1,3 @@ +Information Broker Grimst:
+ You brought the item she likes, I hope?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-04.htm new file mode 100644 index 0000000000..05939ce6dc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-04.htm @@ -0,0 +1,4 @@ +Information Broker Grimst:
+ Do I have to tell you again?
+He said, "Take this to the stone tablet south of the Tower of Insolence. You'll find me there."
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-05.htm new file mode 100644 index 0000000000..2b6d2ee79c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-05.htm @@ -0,0 +1,14 @@ +Information Broker Grimst:
+ Sagittarius's bow was stolen?
+ A few days ago someone was asking about The Bow.
+What? You want me to tell you about him for free?
+ You want me to starve?
+ Hahaha...
+ Well I don't want to get any this time.
+Since you're in the union, it won't cost you money.
+Hmm
+...
+I know. I'm embarrassed to admit it.
+However, I have a crush on Lilly, my partner Mist's granddaughter! I'll tell you more if you find out what Lilly likes and bring it to me!
+ I'll give you a hint: Mist knows everything about Lilly!
+Don't tell him what I said! You shoud find the way by yourself! You'll find them in the hot springs area! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-06.htm new file mode 100644 index 0000000000..3f241440eb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/2-06.htm @@ -0,0 +1,9 @@ +Information Broker Grimst:
+ So that's what she likes!
+Heh, heh. I guess she's still just a kid.
+Now I'll tell you.
+ I've met the thief you mentioned.
+ But don't misunderstand me, I wouldn't have anything to do with a thief like him!
+He asked me to relay a message.
+ He said, "Take this to the stone tablet south of the Tower of Insolence. You'll find me there."
+ You'd better watch out for this thief! I tried to trick him out of The Bow and I almost got killed! He's very tough! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-01.htm new file mode 100644 index 0000000000..64a18e391b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-01.htm @@ -0,0 +1,5 @@ +Pilgrim of Darkness:
+A while back, I saw a fellow with an amazing bow!
+He looked rather disreputable, somewhat like a thief, I'd say!
+I spoke briefly with him... He was looking for something quite valuable!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-02.htm new file mode 100644 index 0000000000..c50e61d35e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-02.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+He offered to bring me the Divine Stone of Wisdom from the Ketra Orcs if I would give him what I had. Of course, if you bring me the stone first, you can have it! You can start a relationship with the Ketra Orcs if you go see Ketra's Messenger Wahkan in the Ketra Orc Outpost. If you're to get the stone, you must earn the trust of the Ketra Orcs. Remember to never help their mortal enemies, the Varka Silenos! You'd never regain their trust! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-03.htm new file mode 100644 index 0000000000..608946cdf5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-03.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+He offered to bring me the Divine Stone of Wisdom from the Varka Silenos if I would give him what I had. Of course, if you bring me the stone first, you can have it! You can start a relationship with the Varka Silenos if you go see Varka's Messenger Naran Ashanuk in the Varka Silenos Outpost. But if you're to get the stone, you must earn the trust of the Varka Silenos. Remember to never help their mortal enemies, the Ketra Orcs! You'd never regain their trust! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-04.htm new file mode 100644 index 0000000000..f58ce0eaec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-04.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+ I didn't say that it was going to be easy. Like I said, Ketra Orcs and Varka Silenos do not easily trust strangers. To gain their trust, you must go to Ketra's Messenger Wahkan of the Ketra Orcs, and Varka's Messenger Naran Ashanuk of the Varka Silenos, and carry out the duty that they ask you to do. You seemed desperate to catch the person at any cost. Could I have misjudged you? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-05.htm new file mode 100644 index 0000000000..8ddaced7b5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-05.htm @@ -0,0 +1,3 @@ +Pilgrim of Darkness:
+Did you bring the Divine Stone of Wisdom?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-06.htm new file mode 100644 index 0000000000..b735d4f995 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-06.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+The Tablet of Vision is in the northern part of the headquarters of the Varka Silenos. I hope you find the person you're looking for. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-07.htm new file mode 100644 index 0000000000..1dfe533645 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-07.htm @@ -0,0 +1,4 @@ +Pilgrim of Darkness:
+Surely you've heard of the ancient rivalry between the Ketra Orcs and the Varka Silenos? Which side do you support?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-08.htm new file mode 100644 index 0000000000..108edd2beb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/3-08.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+I appreciate your hard work. However, the man you seek brought me the Divine Stone of Wisdom before you did. Take this Stone of Commune to the stone tablet in the northern part headquarters of the Varka Silenos. The Tablet of Vision will show you the way. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-01.htm new file mode 100644 index 0000000000..f9978e32d5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-01.htm @@ -0,0 +1,2 @@ +Winter Hunter Kadyth:
+This is big game. Come on, I'll help you, it'll be a great hunt! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-010.htm new file mode 100644 index 0000000000..23b917ce32 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-010.htm @@ -0,0 +1,5 @@ +Winter Hunter Kadyth:
+If you want the forbidden power, you need the skills.
+This bow? It's not stolen. I keep it in the secret compartment under the Hunter Guild exhibit, right under the guild president's nose.
+Use this Stone of Commune with the tablet. I must go now. I look forward to a friendly competition someday.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-011.htm new file mode 100644 index 0000000000..c2f7463321 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-011.htm @@ -0,0 +1,3 @@ +Winter Hunter Kadyth:
+Here's the Stone of Commune.
+Maybe we'll meet again. I have to go help a newbie, my favorite thing. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-02.htm new file mode 100644 index 0000000000..febcdb400a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-02.htm @@ -0,0 +1,2 @@ +Winter Hunter Kadyth:
+This is my hunt. Find your own game! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-03.htm new file mode 100644 index 0000000000..7970890c6f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-03.htm @@ -0,0 +1,3 @@ +Winter Hunter Kadyth:
+I missed!
+You must be on your toes to catch big game like that. Better luck next time. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-04.htm new file mode 100644 index 0000000000..826788c68e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-04.htm @@ -0,0 +1,2 @@ +Winter Hunter Kadyth:
+Get it with your bow before it gets away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-05.htm new file mode 100644 index 0000000000..21aab67a18 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-05.htm @@ -0,0 +1,3 @@ +Winter Hunter Kadyth:
+We're gonna miss it.
+Thanks for your offer, but I'm waiting for a friend. Wait your turn. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-06.htm new file mode 100644 index 0000000000..7883d28f0c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-06.htm @@ -0,0 +1,5 @@ +Winter Hunter Kadyth:
+Not too shabby!
+Gran Kain has a good eye.
+You owe me for the help though.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-07.htm new file mode 100644 index 0000000000..1818cf99fd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-07.htm @@ -0,0 +1,4 @@ +Winter Hunter Kadyth:
+I never took Sagittarius's bow, I hid it in the secret compartment right under the guild exhibit!
+Take this Stone of Commune to the Tablet of Vision. I know you're up to it.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-08.htm new file mode 100644 index 0000000000..b14b3b5938 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-08.htm @@ -0,0 +1,3 @@ +Winter Hunter Kadyth:
+We'll miss it!
+Go commune with the Tablet of Vision, quickly! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-09.htm new file mode 100644 index 0000000000..5fb110465a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/4-09.htm @@ -0,0 +1,2 @@ +Winter Hunter Kadyth:
+Take the Stone of Commune to the Tablet of Vision over there. I must hunt for more game. See you later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/5-01.htm new file mode 100644 index 0000000000..6053ddb4cb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/5-02.htm new file mode 100644 index 0000000000..5b15c717fc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/5-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+The tablet seems to be communicating with you. You see a vision of a tablet much like this one, protected by several ominous guardians. One of them is holding the next Stone of Commune!
+It appears that they're located in the northeast part of the Valley of Saints.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/5-03.htm new file mode 100644 index 0000000000..ea14aac556 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes completely dark. You must retrieve the Stone of Commune from the Guardians of Forbidden Knowledge! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/6-01.htm new file mode 100644 index 0000000000..0014ef69c6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/6-01.htm @@ -0,0 +1,3 @@ +Tablet of Viision :
+There are no changes.
+I may need the Stone of Commune that the Guardians of Forbidden Knowledge have. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/6-02.htm new file mode 100644 index 0000000000..bc1318e74a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/6-03.htm new file mode 100644 index 0000000000..07c67239db --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/6-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+You begin to see visions. You see a landscape, I can see the Tablet that has the same shape as this Tablet.
+It seems to be located in the southeast part of the Wall of Argos.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/6-04.htm new file mode 100644 index 0000000000..c603e455e2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Find the next tablet. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-01.htm new file mode 100644 index 0000000000..dae354ea1b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Evil lurks nearby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-02.htm new file mode 100644 index 0000000000..7a38d6a282 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+It's Ezekiel! I read about him in a book! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-03.htm new file mode 100644 index 0000000000..ec22a74291 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Ezekiel must be dealt with first. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-04.htm new file mode 100644 index 0000000000..b594e1231c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone else is currently communing with the stone. Come back later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-05.htm new file mode 100644 index 0000000000..c2039a4172 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-06.htm new file mode 100644 index 0000000000..9066da4cf8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-06.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, incomplete force enter your body.
+A vision shapes itself in your mind. A man is there, engulfed in a dark aura.
+It seems he is on the road to Goddard Castle from the Wall of Argos!
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-07.htm new file mode 100644 index 0000000000..50114084c1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes completely dark. Find the man with the Stone of Commune! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/8-01.htm new file mode 100644 index 0000000000..ed1dca2148 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/8-02.htm new file mode 100644 index 0000000000..9e974b996e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/8-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+At that moment, a vision appears of a man engulfed in a dark aura.
+Apparently he is on the road from the Wall of Argos to Goddard Castle Town.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/8-03.htm new file mode 100644 index 0000000000..5de841dcd4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Find the man you saw in the vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/9-01.htm new file mode 100644 index 0000000000..0ccd1856e8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/9-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+As the pilgrim said, kill the Archon of Halisha at the Wall of Argos or the Shrine of the Loyal and take the stone from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/9-02.htm new file mode 100644 index 0000000000..b3c2ec0a4a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/9-03.htm new file mode 100644 index 0000000000..73ad59349f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/9-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+You begin to see visions. You see a landscape, I see a male Human. I see a monument that looks like the Tablet of Vision.
+It looks like it is located somewhere in the southwest of the Forest of the Dead.
+The force out of the Tablet grows less and less. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/9-04.htm new file mode 100644 index 0000000000..be02ebd53f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Find the next Stone of Commune now. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/Q00082_SagaOfTheSagittarius.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/Q00082_SagaOfTheSagittarius.java new file mode 100644 index 0000000000..342c516994 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00082_SagaOfTheSagittarius/Q00082_SagaOfTheSagittarius.java @@ -0,0 +1,105 @@ +/* + * 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.Q00082_SagaOfTheSagittarius; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Sagittarius (82) + * @author Emperorc + */ +public class Q00082_SagaOfTheSagittarius extends AbstractSagaQuest +{ + public Q00082_SagaOfTheSagittarius() + { + super(82); + _npc = new int[] + { + 30702, + 31627, + 31604, + 31640, + 31633, + 31646, + 31647, + 31650, + 31654, + 31655, + 31657, + 31641 + }; + Items = new int[] + { + 7080, + 7519, + 7081, + 7497, + 7280, + 7311, + 7342, + 7373, + 7404, + 7435, + 7105, + 0 + }; + Mob = new int[] + { + 27296, + 27231, + 27305 + }; + classid = new int[] + { + 92 + }; + prevclass = new int[] + { + 0x09 + }; + npcSpawnLocations = new Location[] + { + new Location(191046, -40640, -3042), + new Location(46066, -36396, -1685), + new Location(46066, -36396, -1685) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-01.htm new file mode 100644 index 0000000000..dc593d400a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-01.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard:
+This is quite some event, and I'm not prepared!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-010.htm new file mode 100644 index 0000000000..1f6a474358 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-010.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard :
+It's strange. Guild members say that they can't acknowledge you.
+(Only a character of level 76 or above is allowed to transfer to another class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-02.htm new file mode 100644 index 0000000000..ad8e49295e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-02.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard:
+It's none of your business. Go on with your work.
+(This quest may only be undertaken by a Silver Ranger of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-03.htm new file mode 100644 index 0000000000..c4cbcb0e68 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-03.htm @@ -0,0 +1,8 @@ +Hunters Guild President Bernard:
+Thank you so much!
+You'll be well-rewarded if you solve this problem.
+It's only fair, right? Ha!
+Whoever stole my bow was a very cunning thief. He took it right from under my nose!
+I'll wager that Information Broker Grimst knows about this robbery. You should ask him for the details.
+Oh, by the way, this book was found at the scene of the crime.
+You should get going! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-04.htm new file mode 100644 index 0000000000..5d389dfb00 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-04.htm @@ -0,0 +1,2 @@ +Hunters Guild President Bernard:
+Information Broker Grimst says the thief is here in this town. Find out what he has to say before the thief gets away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-05.htm new file mode 100644 index 0000000000..b2b7ef8b89 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-05.htm @@ -0,0 +1,7 @@ +Hunter Guild President Bernard:
+Sagittarius's bow, the symbol of our guild, was stolen.
+During the day, it's on display, but at night, I keep it close at hand.
+I was delayed putting it in the safe for just a minute while counting my new coins.
+This must be a conspiracy against me.
+Your reputation is growing, I would appreciate your help.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-06.htm new file mode 100644 index 0000000000..58481abb56 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-06.htm @@ -0,0 +1,5 @@ +Hunter Guild President Bernard:
+What a fraud!
+I'll deal with him later.
+You've done well to catch him!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-07.htm new file mode 100644 index 0000000000..4b60c9684d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-07.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard:
+Your deeds will always be remembered.
+By my authority as Hunter Guild President, I shall give you the title of Moonlight Sentinel. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-08.htm new file mode 100644 index 0000000000..1f6a474358 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-08.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard :
+It's strange. Guild members say that they can't acknowledge you.
+(Only a character of level 76 or above is allowed to transfer to another class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-09.htm new file mode 100644 index 0000000000..4b60c9684d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/0-09.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard:
+Your deeds will always be remembered.
+By my authority as Hunter Guild President, I shall give you the title of Moonlight Sentinel. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-01.htm new file mode 100644 index 0000000000..c47a57aff6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-01.htm @@ -0,0 +1,5 @@ +Information Broker Mist:
+My granddaughter Lilly took first place at an event, and you'll get her anything she wants as her prize?
+Are you joking?
+Well, there is one thing she really loves...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-02.htm new file mode 100644 index 0000000000..a1475bd20a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-02.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+My granddaughter won first prize at an event and you'll bring her anything she wants?
+Are you joking? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-03.htm new file mode 100644 index 0000000000..a9ca4e4129 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-03.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+Now I can make her a bowl of Ice Cream!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-04.htm new file mode 100644 index 0000000000..f16b9f173e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-04.htm @@ -0,0 +1 @@ +Information Broker Mist:
Thank you! I'm happy when she's happy! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-05.htm new file mode 100644 index 0000000000..9fd309ebb1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-05.htm @@ -0,0 +1,6 @@ +Information Broker Mist:
+Well, I suppose it wouldn't hurt to tell you the story...
+ In the past, I made a Shaved Ice dessert for my granddaughter, and she loved it very much, but the ingredients are quite rare! The rarest and most important of the ingredients are ice crystals.
+The last time I got some, I had to trade Chef Jeremy some other very rare ingredients for them.
+Can you please bring me some of those crystals?
+You should be able to get some from Chef Jeremy in the hot springs area if you help him make some soy sauce. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-06.htm new file mode 100644 index 0000000000..14b122ea56 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/1-06.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+Yummy!
+Why don't you take some with you? I'll wrap it in ice crystal to keep it cold! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-01.htm new file mode 100644 index 0000000000..0fd03a4c97 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You feel something strange.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-02.htm new file mode 100644 index 0000000000..c1e961ed22 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You feel a huge surge of energy. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-03.htm new file mode 100644 index 0000000000..c077bda796 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Speak with the Hero. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-04.htm new file mode 100644 index 0000000000..99f1cbf806 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone is already communing with the Tablet of Vision. Please try again later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-05.htm new file mode 100644 index 0000000000..d568c81e92 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-06.htm new file mode 100644 index 0000000000..57cc949b4f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-06.htm @@ -0,0 +1,9 @@ +Tablet of Vision:
+A familiar feeling rushes through your body. And then when it seems unbearable, a new vision appears...
+All the pleasure, pain, anger and love ever felt by all the previous challengers of this power courses at once through your veins!
+The emotions rush over you like a waterfall, and the screams you hear are your own as you slip into unconsciousness...
+
+...
+...
+And then you awake... You mouth moves, but no words are formed...
+Could this be the end? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-07.htm new file mode 100644 index 0000000000..96ddc877da --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+This tablet is useless. Return to Hunter Guild President Bernard. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/11-01.htm new file mode 100644 index 0000000000..aea9b113c0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/11-01.htm @@ -0,0 +1,5 @@ +Pilgrim of Darkness:
+You're looking for a man who stole a bow, eh?
+I saw someone who fits that description not very long ago! I spent a day in the woods with him! We must have talked about everything! He seemed like a nice guy to me...
+Did he do anything serious?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/11-02.htm new file mode 100644 index 0000000000..6798ffde8f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/11-02.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+I just told him that if he wanted to catch the Archon of Halisha he should look in the Sepulchers! I told him that he might also try attacking the Archon's minions at the north end of the Wall of Argos. That usually brings him out! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/11-03.htm new file mode 100644 index 0000000000..3ca244984e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/11-03.htm @@ -0,0 +1,4 @@ +Pilgrim of Darkness:
+How can that be?!
+He said that he was after the Archon of Halisha. That's why I told him where to look!
+Did I make a mistake? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-01.htm new file mode 100644 index 0000000000..7e3d44db53 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-01.htm @@ -0,0 +1,5 @@ +Information Broker Grimst:
+ So, you're from the union?
+ What's Bernard up to these days?
+What do you want? It seems nobody wants to do business with me lately.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-02.htm new file mode 100644 index 0000000000..8efd0ca34e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-02.htm @@ -0,0 +1,5 @@ +Information Broker Grimst:
+ Have you brought me what Lilly likes?
+ What? You came back empty-handed?
+That's not the way this works!
+No payment, no information. Now go! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-03.htm new file mode 100644 index 0000000000..91b8c2d47b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-03.htm @@ -0,0 +1,3 @@ +Information Broker Grimst:
+ You brought the item she likes, I hope?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-04.htm new file mode 100644 index 0000000000..05939ce6dc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-04.htm @@ -0,0 +1,4 @@ +Information Broker Grimst:
+ Do I have to tell you again?
+He said, "Take this to the stone tablet south of the Tower of Insolence. You'll find me there."
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-05.htm new file mode 100644 index 0000000000..2b6d2ee79c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-05.htm @@ -0,0 +1,14 @@ +Information Broker Grimst:
+ Sagittarius's bow was stolen?
+ A few days ago someone was asking about The Bow.
+What? You want me to tell you about him for free?
+ You want me to starve?
+ Hahaha...
+ Well I don't want to get any this time.
+Since you're in the union, it won't cost you money.
+Hmm
+...
+I know. I'm embarrassed to admit it.
+However, I have a crush on Lilly, my partner Mist's granddaughter! I'll tell you more if you find out what Lilly likes and bring it to me!
+ I'll give you a hint: Mist knows everything about Lilly!
+Don't tell him what I said! You shoud find the way by yourself! You'll find them in the hot springs area! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-06.htm new file mode 100644 index 0000000000..3f241440eb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/2-06.htm @@ -0,0 +1,9 @@ +Information Broker Grimst:
+ So that's what she likes!
+Heh, heh. I guess she's still just a kid.
+Now I'll tell you.
+ I've met the thief you mentioned.
+ But don't misunderstand me, I wouldn't have anything to do with a thief like him!
+He asked me to relay a message.
+ He said, "Take this to the stone tablet south of the Tower of Insolence. You'll find me there."
+ You'd better watch out for this thief! I tried to trick him out of The Bow and I almost got killed! He's very tough! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-01.htm new file mode 100644 index 0000000000..fcebf4f7a5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-01.htm @@ -0,0 +1,5 @@ +Pilgrim of Darkness:
+A while back, I saw someone with an awesome bow!
+He was a disreputable looking fellow, looked somewhat like a thief!
+I spoke with him briefly... He was looking for something quite valuable!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-02.htm new file mode 100644 index 0000000000..c50e61d35e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-02.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+He offered to bring me the Divine Stone of Wisdom from the Ketra Orcs if I would give him what I had. Of course, if you bring me the stone first, you can have it! You can start a relationship with the Ketra Orcs if you go see Ketra's Messenger Wahkan in the Ketra Orc Outpost. If you're to get the stone, you must earn the trust of the Ketra Orcs. Remember to never help their mortal enemies, the Varka Silenos! You'd never regain their trust! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-03.htm new file mode 100644 index 0000000000..4101c53344 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-03.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+He offered to bring me the Divine Stone of Wisdom from the Varka Silenos if I would give him what I had. Of course, if you bring me the stone first, you can have it! You can start a relationship with the Varka Silenos if you go see Varka's Messenger Naran Ashanuk in the Varka Silenos Outpost. But if you're to get the stone, you must earn the trust of the Ketra Orcs. Remember to never help their mortal enemies, the Ketra Orcs! You'd never regain their trust! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-04.htm new file mode 100644 index 0000000000..f58ce0eaec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-04.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+ I didn't say that it was going to be easy. Like I said, Ketra Orcs and Varka Silenos do not easily trust strangers. To gain their trust, you must go to Ketra's Messenger Wahkan of the Ketra Orcs, and Varka's Messenger Naran Ashanuk of the Varka Silenos, and carry out the duty that they ask you to do. You seemed desperate to catch the person at any cost. Could I have misjudged you? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-05.htm new file mode 100644 index 0000000000..d1b1d477a2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-05.htm @@ -0,0 +1,3 @@ +Pilgrim of Darkness:
+Did you bring the Divine Stone of Wisdom?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-06.htm new file mode 100644 index 0000000000..b735d4f995 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-06.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+The Tablet of Vision is in the northern part of the headquarters of the Varka Silenos. I hope you find the person you're looking for. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-07.htm new file mode 100644 index 0000000000..b44a0739e0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-07.htm @@ -0,0 +1,4 @@ +Pilgrim of Darkness:
+Surely you've heard of the ancient rivalry between the Ketra Orcs and the Varka Silenos? Which side do you support?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-08.htm new file mode 100644 index 0000000000..a6bbce36e8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/3-08.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+Thank you for your hard work. However, the man you seek brought me the Divine Stone of Wisdom before you did. Take this Stone of Commune to the stone tablet in the northern part of the headquarters of the Varka Silenos. The Tablet of Vision will give you a clue on how to find him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-01.htm new file mode 100644 index 0000000000..f9978e32d5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-01.htm @@ -0,0 +1,2 @@ +Winter Hunter Kadyth:
+This is big game. Come on, I'll help you, it'll be a great hunt! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-010.htm new file mode 100644 index 0000000000..88f29d7dce --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-010.htm @@ -0,0 +1,5 @@ +Winter Hunter Kadyth:
+If you want the forbidden power, you need the skills.
+This bow? It's not stolen. I keep it in the secret compartment under the Hunter Guild exhibit, right under the guild president's nose.
+Use this Stone of Commune with the tablet. I must go now. I look forward to a friendly competition someday.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-011.htm new file mode 100644 index 0000000000..c2f7463321 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-011.htm @@ -0,0 +1,3 @@ +Winter Hunter Kadyth:
+Here's the Stone of Commune.
+Maybe we'll meet again. I have to go help a newbie, my favorite thing. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-02.htm new file mode 100644 index 0000000000..febcdb400a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-02.htm @@ -0,0 +1,2 @@ +Winter Hunter Kadyth:
+This is my hunt. Find your own game! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-03.htm new file mode 100644 index 0000000000..7970890c6f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-03.htm @@ -0,0 +1,3 @@ +Winter Hunter Kadyth:
+I missed!
+You must be on your toes to catch big game like that. Better luck next time. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-04.htm new file mode 100644 index 0000000000..02e6a14ab8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-04.htm @@ -0,0 +1,2 @@ +Winter Hunter Kadyth:
+Shoot it before it gets away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-05.htm new file mode 100644 index 0000000000..21aab67a18 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-05.htm @@ -0,0 +1,3 @@ +Winter Hunter Kadyth:
+We're gonna miss it.
+Thanks for your offer, but I'm waiting for a friend. Wait your turn. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-06.htm new file mode 100644 index 0000000000..7e822e6cc7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-06.htm @@ -0,0 +1,5 @@ +Winter Hunter Kadyth:
+Not too shabby!
+Gran Kain has a good eye.
+You owe me for the help though.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-07.htm new file mode 100644 index 0000000000..0d163e33c9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-07.htm @@ -0,0 +1,4 @@ +Winter Hunter Kadyth:
+I never took Sagittarius's bow, I hid it in the secret compartment right under the guild exhibit!
+Take this Stone of Commune to the Tablet of Vision. I know you're up to it.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-08.htm new file mode 100644 index 0000000000..b14b3b5938 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-08.htm @@ -0,0 +1,3 @@ +Winter Hunter Kadyth:
+We'll miss it!
+Go commune with the Tablet of Vision, quickly! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-09.htm new file mode 100644 index 0000000000..5fb110465a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/4-09.htm @@ -0,0 +1,2 @@ +Winter Hunter Kadyth:
+Take the Stone of Commune to the Tablet of Vision over there. I must hunt for more game. See you later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/5-01.htm new file mode 100644 index 0000000000..40c440b5c9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/5-02.htm new file mode 100644 index 0000000000..f20aa3ef1a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/5-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+The tablet seems to be communicating with you. You see a vision of a tablet much like this one, protected by several ominous guardians. One of them is holding the next Stone of Commune!
+It appears that they're located in the southern part of the Valley of Saints.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/5-03.htm new file mode 100644 index 0000000000..ea14aac556 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes completely dark. You must retrieve the Stone of Commune from the Guardians of Forbidden Knowledge! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/6-01.htm new file mode 100644 index 0000000000..0014ef69c6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/6-01.htm @@ -0,0 +1,3 @@ +Tablet of Viision :
+There are no changes.
+I may need the Stone of Commune that the Guardians of Forbidden Knowledge have. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/6-02.htm new file mode 100644 index 0000000000..2ebfa18c5b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/6-03.htm new file mode 100644 index 0000000000..4615dd996c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/6-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+You begin to see visions. You see a landscape, I can see the Tablet that has the same shape as this Tablet.
+It seems to be located in the northeast of Ketra Orc Outpost.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/6-04.htm new file mode 100644 index 0000000000..7b0dbd72c7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark. Your destiny lies elsewhere. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-01.htm new file mode 100644 index 0000000000..e4638c784d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Evil lurks nearby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-02.htm new file mode 100644 index 0000000000..7a38d6a282 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+It's Ezekiel! I read about him in a book! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-03.htm new file mode 100644 index 0000000000..ec22a74291 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Ezekiel must be dealt with first. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-04.htm new file mode 100644 index 0000000000..b594e1231c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone else is currently communing with the stone. Come back later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-05.htm new file mode 100644 index 0000000000..5259972214 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-06.htm new file mode 100644 index 0000000000..8a8d139833 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-06.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+You feel a strange, incomplete force enter your body.
+At that moment, a vision comes into focus of a man, engulfed in a dark aura! He's on the road to Goddard Castle from the Wall of Argos!
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-07.htm new file mode 100644 index 0000000000..a33bff2f9c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes completely dark. You must find the man in the vision! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/8-01.htm new file mode 100644 index 0000000000..0bcf074121 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/8-02.htm new file mode 100644 index 0000000000..fd8277f317 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/8-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+At that moment, a vision appears of a Human man engulfed by a dark aura, like the Pilgrim of Darkness.
+It seems he is on the road from Goddard Castle Town to the Ketra Orc Outpost.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/8-03.htm new file mode 100644 index 0000000000..5de841dcd4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Find the man you saw in the vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/9-01.htm new file mode 100644 index 0000000000..0ccd1856e8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/9-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is still and dark.
+As the pilgrim said, kill the Archon of Halisha at the Wall of Argos or the Shrine of the Loyal and take the stone from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/9-02.htm new file mode 100644 index 0000000000..1b903aa7d1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/9-03.htm new file mode 100644 index 0000000000..673d3aa6d7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/9-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+At that moment, a vision appears of a man standing before a tablet much like this one!
+It appears he is somewhere north of Giants Cave.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/9-04.htm new file mode 100644 index 0000000000..be02ebd53f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Find the next Stone of Commune now. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/Q00083_SagaOfTheMoonlightSentinel.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/Q00083_SagaOfTheMoonlightSentinel.java new file mode 100644 index 0000000000..41bc8a06fd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00083_SagaOfTheMoonlightSentinel/Q00083_SagaOfTheMoonlightSentinel.java @@ -0,0 +1,105 @@ +/* + * 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.Q00083_SagaOfTheMoonlightSentinel; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Moonlight Sentinel (83) + * @author Emperorc + */ +public class Q00083_SagaOfTheMoonlightSentinel extends AbstractSagaQuest +{ + public Q00083_SagaOfTheMoonlightSentinel() + { + super(83); + _npc = new int[] + { + 30702, + 31627, + 31604, + 31640, + 31634, + 31646, + 31648, + 31652, + 31654, + 31655, + 31658, + 31641 + }; + Items = new int[] + { + 7080, + 7520, + 7081, + 7498, + 7281, + 7312, + 7343, + 7374, + 7405, + 7436, + 7106, + 0 + }; + Mob = new int[] + { + 27297, + 27232, + 27306 + }; + classid = new int[] + { + 102 + }; + prevclass = new int[] + { + 0x18 + }; + npcSpawnLocations = new Location[] + { + new Location(161719, -92823, -1893), + new Location(181227, 36703, -4816), + new Location(181215, 36676, -4812) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-01.htm new file mode 100644 index 0000000000..d3194c5826 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-01.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard:
+This is quite some event, and I'm not prepared!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-010.htm new file mode 100644 index 0000000000..1f6a474358 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-010.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard :
+It's strange. Guild members say that they can't acknowledge you.
+(Only a character of level 76 or above is allowed to transfer to another class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-02.htm new file mode 100644 index 0000000000..66d25be5f9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-02.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard:
+It's none of your business. Go on with your work.
+(This quest may only be undertaken by a Phantom Ranger of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-03.htm new file mode 100644 index 0000000000..c4cbcb0e68 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-03.htm @@ -0,0 +1,8 @@ +Hunters Guild President Bernard:
+Thank you so much!
+You'll be well-rewarded if you solve this problem.
+It's only fair, right? Ha!
+Whoever stole my bow was a very cunning thief. He took it right from under my nose!
+I'll wager that Information Broker Grimst knows about this robbery. You should ask him for the details.
+Oh, by the way, this book was found at the scene of the crime.
+You should get going! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-04.htm new file mode 100644 index 0000000000..5d389dfb00 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-04.htm @@ -0,0 +1,2 @@ +Hunters Guild President Bernard:
+Information Broker Grimst says the thief is here in this town. Find out what he has to say before the thief gets away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-05.htm new file mode 100644 index 0000000000..29f09016df --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-05.htm @@ -0,0 +1,7 @@ +Hunter Guild President Bernard:
+Sagittarius's bow, the symbol of our guild, was stolen.
+During the day, it's on display, but at night, I keep it close at hand.
+I was delayed putting it in the safe for just a minute while counting my new coins.
+This must be a conspiracy against me.
+Your reputation is growing, I would appreciate your help.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-06.htm new file mode 100644 index 0000000000..1ca383ea16 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-06.htm @@ -0,0 +1,5 @@ +Hunter Guild President Bernard:
+What a fraud!
+I'll deal with him later.
+You've done well to catch him!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-07.htm new file mode 100644 index 0000000000..3856632969 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-07.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard:
+Your deeds will always be remembered.
+By my authority as Hunter Guild President, I shall give you the title of Ghost Sentinel. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-08.htm new file mode 100644 index 0000000000..1f6a474358 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-08.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard :
+It's strange. Guild members say that they can't acknowledge you.
+(Only a character of level 76 or above is allowed to transfer to another class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-09.htm new file mode 100644 index 0000000000..3856632969 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/0-09.htm @@ -0,0 +1,3 @@ +Hunter Guild President Bernard:
+Your deeds will always be remembered.
+By my authority as Hunter Guild President, I shall give you the title of Ghost Sentinel. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-01.htm new file mode 100644 index 0000000000..e17f4f0ec7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-01.htm @@ -0,0 +1,4 @@ +Gemcutter Gedrik:
+You want me to make you an Ice Crystal Gemstone?
+I'd love to, but ice crystal ore is rare. I've never seen any, and you'd be lucky to come by it. Bring me some and I'll try.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-02.htm new file mode 100644 index 0000000000..fb17de5aca --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-02.htm @@ -0,0 +1,2 @@ +Gemcutter Gedrik:
+Bring me the ice crystal and I'll make you an Ice Crystal Gemstone! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-03.htm new file mode 100644 index 0000000000..da9981518f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-03.htm @@ -0,0 +1,3 @@ +Gemcutter Gedrik:
+I've got the tools and the design ready.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-04.htm new file mode 100644 index 0000000000..622971100e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-04.htm @@ -0,0 +1,2 @@ +Gemcutter Gedrik:
+Whoever requested this gemstone must want it badly, eh? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-05.htm new file mode 100644 index 0000000000..80c824b3b3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-05.htm @@ -0,0 +1,2 @@ +Gemcutter Gedrik:
+Rumors abound, but the most reliable one seems to be the one in which a monster in the hot springs region is in possession of ice crystals. Go to the hot springs area and speak with Jeremy who has a catering service there. I've heard that many people obtained ice crystals while helping him to locate special food ingredients. While you're gone, I'll research how to cut the stone from those who have already made the jewel. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-06.htm new file mode 100644 index 0000000000..da5b9d0b89 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/1-06.htm @@ -0,0 +1,2 @@ +Gemcutter Gedrik:
+Here's the Ice Crystal Gemstone! Tell people it was made by Gedrik of Goddard! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-01.htm new file mode 100644 index 0000000000..2079fa1d12 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You feel something strange.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-02.htm new file mode 100644 index 0000000000..26605ac096 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+A great energy appears. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-03.htm new file mode 100644 index 0000000000..e8ebe300c7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet remains dark. Talk with the Hero. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-04.htm new file mode 100644 index 0000000000..99f1cbf806 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone is already communing with the Tablet of Vision. Please try again later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-05.htm new file mode 100644 index 0000000000..0dc0f2ff85 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-06.htm new file mode 100644 index 0000000000..1eb7f3b520 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-06.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+You feel a familiar energy coursing through you, and receive a new vision.
+You can feel the pleasure, pain, anger and love of all those who have sought this power.
+The screams you hear are your own.
+The flood of emotions renders you unconscious.
+You awaken and your mouth moves, but no words are formed. Could this be the end? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-07.htm new file mode 100644 index 0000000000..7b1a56f28f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is just an ordinary stone. Return to Hunter Guild President Bernard. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/11-01.htm new file mode 100644 index 0000000000..cd5ad0fc2c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/11-01.htm @@ -0,0 +1,5 @@ +Pilgrim of Darkness:
+You're looking for a man who stole a bow, eh?
+I saw someone who fits that description not very long ago! I spent a day in the woods with him! We must have talked about everything! He seemed like a nice guy to me...
+Did he do anything serious?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/11-02.htm new file mode 100644 index 0000000000..e3217cd86a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/11-02.htm @@ -0,0 +1,2 @@ +RPilgrim of Darkness:
+I just told him that if he wanted to catch the Archon of Halisha he should look in the Sepulchers! I told him that he might also try attacking the Archon's minions at the north end of the Wall of Argos. That usually brings him out! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/11-03.htm new file mode 100644 index 0000000000..3ca244984e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/11-03.htm @@ -0,0 +1,4 @@ +Pilgrim of Darkness:
+How can that be?!
+He said that he was after the Archon of Halisha. That's why I told him where to look!
+Did I make a mistake? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-01.htm new file mode 100644 index 0000000000..ed85965f55 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-01.htm @@ -0,0 +1,5 @@ +Information Broker Grimst:
+ So, you're from the union?
+ What's Bernard up to these days?
+What do you want? It seems nobody wants to do business with me lately.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-02.htm new file mode 100644 index 0000000000..371983e967 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-02.htm @@ -0,0 +1,2 @@ +Information Broker Grimst:
+Gemcutter Gedrik works in a blacksmith shop in Goddard Castle Town. Talk to him to get the Ice Crystal Gemstone. Then I'll tell you about the thief. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-03.htm new file mode 100644 index 0000000000..a28c5e5036 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-03.htm @@ -0,0 +1,3 @@ +Information Broker Grimst:
+ Did you bring it?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-04.htm new file mode 100644 index 0000000000..05939ce6dc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-04.htm @@ -0,0 +1,4 @@ +Information Broker Grimst:
+ Do I have to tell you again?
+He said, "Take this to the stone tablet south of the Tower of Insolence. You'll find me there."
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-05.htm new file mode 100644 index 0000000000..aabf24cc2f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-05.htm @@ -0,0 +1,9 @@ +Information Broker Grimst:
+ Sagittarius's bow was stolen?
+ A few days ago someone was asking about The Bow.
+What? You want me to tell you about him for free?
+You want me to starve?
+ Hahaha...
+Well, I don't want to get any this time.
+ Instead, bring me an Ice Crystal Gemstone. Gemcutter Gedrik at the blacksmith shop in Goddard Castle can make the best Ice Crystal Gemstone.
+ Town. Once I have the gemstone, that promotion will be mine! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-06.htm new file mode 100644 index 0000000000..cb2de25a8a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/2-06.htm @@ -0,0 +1,6 @@ +Information Broker Grimst:
+ I've met the thief you mentioned.
+Don't misunderstand me, I wouldn't have anything to do with a thief like him!
+ He asked me to relay a message.
+He said, "Take this to the stone tablet south of the Tower of Insolence. You'll find me there."
+ You'd better watch out for this thief! I tried to trick him out of The Bow and I almost got killed! He's very tough! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-01.htm new file mode 100644 index 0000000000..91cea83803 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-01.htm @@ -0,0 +1,5 @@ +Pilgrim of Darkness:
+A while back, I saw someone with an awesome bow!
+He was a disreputable looking fellow, looked somewhat like a thief!
+I spoke with him briefly... He was looking for something quite valuable!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-02.htm new file mode 100644 index 0000000000..c50e61d35e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-02.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+He offered to bring me the Divine Stone of Wisdom from the Ketra Orcs if I would give him what I had. Of course, if you bring me the stone first, you can have it! You can start a relationship with the Ketra Orcs if you go see Ketra's Messenger Wahkan in the Ketra Orc Outpost. If you're to get the stone, you must earn the trust of the Ketra Orcs. Remember to never help their mortal enemies, the Varka Silenos! You'd never regain their trust! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-03.htm new file mode 100644 index 0000000000..608946cdf5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-03.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+He offered to bring me the Divine Stone of Wisdom from the Varka Silenos if I would give him what I had. Of course, if you bring me the stone first, you can have it! You can start a relationship with the Varka Silenos if you go see Varka's Messenger Naran Ashanuk in the Varka Silenos Outpost. But if you're to get the stone, you must earn the trust of the Varka Silenos. Remember to never help their mortal enemies, the Ketra Orcs! You'd never regain their trust! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-04.htm new file mode 100644 index 0000000000..f58ce0eaec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-04.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+ I didn't say that it was going to be easy. Like I said, Ketra Orcs and Varka Silenos do not easily trust strangers. To gain their trust, you must go to Ketra's Messenger Wahkan of the Ketra Orcs, and Varka's Messenger Naran Ashanuk of the Varka Silenos, and carry out the duty that they ask you to do. You seemed desperate to catch the person at any cost. Could I have misjudged you? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-05.htm new file mode 100644 index 0000000000..2379ab3d2a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-05.htm @@ -0,0 +1,3 @@ +Pilgrim of Darkness:
+Did you bring the Divine Stone of Wisdom?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-06.htm new file mode 100644 index 0000000000..58cd4a2823 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-06.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+The Tablet of Vision is in the northern part of headquarters of the Varka Silenos. I hope you find who you're looking for. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-07.htm new file mode 100644 index 0000000000..1d6a49aed9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-07.htm @@ -0,0 +1,4 @@ +Pilgrim of Darkness:
+Surely you've heard of the ancient rivalry between the Ketra Orcs and the Varka Silenos? Which side do you support?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-08.htm new file mode 100644 index 0000000000..a7d8258213 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/3-08.htm @@ -0,0 +1,2 @@ +Pilgrim of Darkness:
+Thank you for your hard work. However, the man you seek brought me the Divine Stone of Wisdom before you did. Take this Stone of Commune to the stone tablet in the northern part of the headquarters of the Varka Silenos. The Tablet of Vision will show you the way. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-01.htm new file mode 100644 index 0000000000..f9978e32d5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-01.htm @@ -0,0 +1,2 @@ +Winter Hunter Kadyth:
+This is big game. Come on, I'll help you, it'll be a great hunt! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-010.htm new file mode 100644 index 0000000000..779b068d92 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-010.htm @@ -0,0 +1,5 @@ +Winter Hunter Kadyth:
+If you want the forbidden power, you need the skills.
+This bow? It's not stolen. I keep it in the secret compartment under the Hunter Guild exhibit, right under the guild president's nose.
+Use this Stone of Commune with the tablet. I must go now. I look forward to a friendly competition someday.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-011.htm new file mode 100644 index 0000000000..c2f7463321 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-011.htm @@ -0,0 +1,3 @@ +Winter Hunter Kadyth:
+Here's the Stone of Commune.
+Maybe we'll meet again. I have to go help a newbie, my favorite thing. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-02.htm new file mode 100644 index 0000000000..febcdb400a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-02.htm @@ -0,0 +1,2 @@ +Winter Hunter Kadyth:
+This is my hunt. Find your own game! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-03.htm new file mode 100644 index 0000000000..7970890c6f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-03.htm @@ -0,0 +1,3 @@ +Winter Hunter Kadyth:
+I missed!
+You must be on your toes to catch big game like that. Better luck next time. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-04.htm new file mode 100644 index 0000000000..02e6a14ab8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-04.htm @@ -0,0 +1,2 @@ +Winter Hunter Kadyth:
+Shoot it before it gets away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-05.htm new file mode 100644 index 0000000000..21aab67a18 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-05.htm @@ -0,0 +1,3 @@ +Winter Hunter Kadyth:
+We're gonna miss it.
+Thanks for your offer, but I'm waiting for a friend. Wait your turn. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-06.htm new file mode 100644 index 0000000000..ba05e0712f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-06.htm @@ -0,0 +1,5 @@ +Winter Hunter Kadyth:
+Not too shabby!
+Gran Kain has a good eye.
+You owe me for the help though.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-07.htm new file mode 100644 index 0000000000..3930e65a0f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-07.htm @@ -0,0 +1,4 @@ +Winter Hunter Kadyth:
+I never took Sagittarius's bow, I hid it in the secret compartment right under the guild exhibit!
+Take this Stone of Commune to the Tablet of Vision. I know you're up to it.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-08.htm new file mode 100644 index 0000000000..b14b3b5938 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-08.htm @@ -0,0 +1,3 @@ +Winter Hunter Kadyth:
+We'll miss it!
+Go commune with the Tablet of Vision, quickly! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-09.htm new file mode 100644 index 0000000000..5fb110465a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/4-09.htm @@ -0,0 +1,2 @@ +Winter Hunter Kadyth:
+Take the Stone of Commune to the Tablet of Vision over there. I must hunt for more game. See you later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/5-01.htm new file mode 100644 index 0000000000..7e7b4bfa93 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/5-02.htm new file mode 100644 index 0000000000..3ab7b06ca9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/5-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+The tablet seems to be communicating with you. You see a vision of a tablet much like this one, protected by several ominous guardians. One of them is holding the next Stone of Commune!
+It appears that they're located in the western part of the Valley of Saints.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/5-03.htm new file mode 100644 index 0000000000..ea14aac556 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes completely dark. You must retrieve the Stone of Commune from the Guardians of Forbidden Knowledge! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/6-01.htm new file mode 100644 index 0000000000..0014ef69c6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/6-01.htm @@ -0,0 +1,3 @@ +Tablet of Viision :
+There are no changes.
+I may need the Stone of Commune that the Guardians of Forbidden Knowledge have. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/6-02.htm new file mode 100644 index 0000000000..1783d87b01 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/6-03.htm new file mode 100644 index 0000000000..4615dd996c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/6-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+You begin to see visions. You see a landscape, I can see the Tablet that has the same shape as this Tablet.
+It seems to be located in the northeast of Ketra Orc Outpost.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/6-04.htm new file mode 100644 index 0000000000..7b4fd9e710 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes completely dark. Your destiny lies elsewhere. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-01.htm new file mode 100644 index 0000000000..2c2bc847d5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Evil lurks nearby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-02.htm new file mode 100644 index 0000000000..7a38d6a282 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+It's Ezekiel! I read about him in a book! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-03.htm new file mode 100644 index 0000000000..ec22a74291 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Ezekiel must be dealt with first. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-04.htm new file mode 100644 index 0000000000..b594e1231c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone else is currently communing with the stone. Come back later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-05.htm new file mode 100644 index 0000000000..683810e73a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-06.htm new file mode 100644 index 0000000000..8a8d139833 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-06.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+You feel a strange, incomplete force enter your body.
+At that moment, a vision comes into focus of a man, engulfed in a dark aura! He's on the road to Goddard Castle from the Wall of Argos!
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-07.htm new file mode 100644 index 0000000000..14b9d1697e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes completely dark. Find the man with the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/8-01.htm new file mode 100644 index 0000000000..5f038e3e78 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/8-02.htm new file mode 100644 index 0000000000..3efc0eef40 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/8-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+You begin to see visions. You see a landscape, I see a male Human. His entire body is engulfed by a dark aura that reminds you of the Pilgrim of Darkness.
+It's located on the road from Goddard Castle Town to the Ketra Orc Outpost.
+You feel the Tablet of Vision weakening. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/8-03.htm new file mode 100644 index 0000000000..5de841dcd4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Find the man you saw in the vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/9-01.htm new file mode 100644 index 0000000000..cc5927964e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/9-01.htm @@ -0,0 +1,3 @@ +The Tablet of Vision:
+There is no change.
+As the pilgrim said, kill the Archon of Halisha at the Wall of Argos or the Shrine of the Loyal and take the stone from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/9-02.htm new file mode 100644 index 0000000000..a5a6f88752 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune starts emitting light as soon as you near the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/9-03.htm new file mode 100644 index 0000000000..0b1d4c77f8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/9-03.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+You feel a strange, disconnected force enter your body.
+You begin to see visions. You see a landscape, I see a male Human. I see a monument that looks like the Tablet of Vision.
+It looks like it is located somewhere in the southeast of Hunters Village.
+The force out of the Tablet grows less and less. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/9-04.htm new file mode 100644 index 0000000000..be02ebd53f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is still and dark. Find the next Stone of Commune now. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/Q00084_SagaOfTheGhostSentinel.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/Q00084_SagaOfTheGhostSentinel.java new file mode 100644 index 0000000000..722f079cbc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00084_SagaOfTheGhostSentinel/Q00084_SagaOfTheGhostSentinel.java @@ -0,0 +1,105 @@ +/* + * 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.Q00084_SagaOfTheGhostSentinel; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Ghost Sentinel (84) + * @author Emperorc + */ +public class Q00084_SagaOfTheGhostSentinel extends AbstractSagaQuest +{ + public Q00084_SagaOfTheGhostSentinel() + { + super(84); + _npc = new int[] + { + 30702, + 31587, + 31604, + 31640, + 31635, + 31646, + 31649, + 31652, + 31654, + 31655, + 31659, + 31641 + }; + Items = new int[] + { + 7080, + 7521, + 7081, + 7499, + 7282, + 7313, + 7344, + 7375, + 7406, + 7437, + 7107, + 0 + }; + Mob = new int[] + { + 27298, + 27233, + 27307 + }; + classid = new int[] + { + 109 + }; + prevclass = new int[] + { + 0x25 + }; + npcSpawnLocations = new Location[] + { + new Location(161719, -92823, -1893), + new Location(124376, 82127, -2796), + new Location(124376, 82127, -2796) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-01.htm new file mode 100644 index 0000000000..35f878ebee --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-01.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+I ask you, follower of the path of light... Have you ever heard of a Saint of Light? Or perhaps you've met one in person? Recently, a Saint of Light has reportedly been seen in Goddard Castle Town. This could be a hoax, like the one who appeared in Gludio... But this time, it seems different!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-010.htm new file mode 100644 index 0000000000..86541815bf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-010.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+Your abilities currently do not exceed those typical of your class. I"ll promote you when the time is right.
+(Only a character of level 76 may transfer class. Don't abandon the quest before class transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-02.htm new file mode 100644 index 0000000000..5ac1d17680 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-02.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+Follower of the path of light, I ask you... Have you ever reached your limit, and struggled to escape your fate? I'm afraid you still don't get it. Get some more training and come back.
+(This quest may only be undertaken by a Bishop of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-03.htm new file mode 100644 index 0000000000..5b5cbd1c61 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-03.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+I'm glad to hear that! Look for the Saint of Light in Goddard Castle Town. You can decide your own fate after that, but don't forget to come back and see me. I want to hear your opinion on these matters.
+Here's a book that I got from Franz, along with his information. It has information regarding a person who may try to interrupt your work. I hope you never run into him, but if you do, use the information in this book to deal with him. May the divine blessing of Einhasad be with you always... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-04.htm new file mode 100644 index 0000000000..591c474f63 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-04.htm @@ -0,0 +1,2 @@ + High Priest Hollint:
+Did you forget what you promised to do? Find the Saint of Light in Goddard Castle Town and find out from her what you need to do next. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-05.htm new file mode 100644 index 0000000000..fc642c15f7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-05.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+You know Franz pretty well, don't you? He's personally vouched for the Saint of Light in Goddard Castle Town! He says that anybody who has reached their limit and desires a new fate should speak with her. I'll need to verify his information further, because it seems rather hastily scribbled down, but so far it seems reliable. I understand that you're also seeking a new path. Are you willing to take on a new mission?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-06.htm new file mode 100644 index 0000000000..4c462afc73 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-06.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+Your reputation is growing, and the saint has even acknowledged you! She says that you've obtained a new understanding after being blessed by Einhasad. Is that true?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-07.htm new file mode 100644 index 0000000000..54732e7d71 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-07.htm @@ -0,0 +1,2 @@ + High Priest Hollint:
+Congratulations on receiving the recognition of the saint and a new understanding! Your faith and knowledge already surpass that of a Bishop. Henceforth you shall be known as a Cardinal! May you spread your understanding to many people and guide them. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-08.htm new file mode 100644 index 0000000000..3be5d05fda --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-08.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+Congratulations on receiving the recognition of the saint and a new understanding. Your abilities currently do not exceed those typical of your class. I"ll promote you when the time is right.
+(Only a character of level 76 may transfer class. Don't abandon the quest before class transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-09.htm new file mode 100644 index 0000000000..54732e7d71 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/0-09.htm @@ -0,0 +1,2 @@ + High Priest Hollint:
+Congratulations on receiving the recognition of the saint and a new understanding! Your faith and knowledge already surpass that of a Bishop. Henceforth you shall be known as a Cardinal! May you spread your understanding to many people and guide them. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-01.htm new file mode 100644 index 0000000000..70e0e383e4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-01.htm @@ -0,0 +1,6 @@ + Chef Duncan:
+What can I do for you, priest of light?
+Saint Agnes sent you to me? Well come on in, then! How are things with Saint Agnes?
+Ah, yes, the starving people! She has a heart of gold, that one! I'll always do anything I can to help her. I'm glad you came!
+I'll need something to keep the food fresh on the trip back to her, however...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-02.htm new file mode 100644 index 0000000000..c959d901c6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-02.htm @@ -0,0 +1,2 @@ +Chef Duncan:
+There's quite a bit of food here, and it's bound to spoil unless we find a way to preserve it. We'll need the ice crystals to keep it fresh. Chef Jeremy has them. You can go and ask him about them. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-03.htm new file mode 100644 index 0000000000..92955a6d77 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-03.htm @@ -0,0 +1,3 @@ +Chef Duncan:
+You brought the ice crystals. I've already prepared all the food and packaged it to go. Now all I have to do is process it to keep it fresh. Give me an ice crystal now.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-04.htm new file mode 100644 index 0000000000..7f1a29e03d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-04.htm @@ -0,0 +1,2 @@ + Chef Duncan:
+You're still here? The food's been preserved, but it won't last forever! You should take it to the saint immediately! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-05.htm new file mode 100644 index 0000000000..b9840ec71c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-05.htm @@ -0,0 +1,3 @@ +Chef Duncan:
+Ice crystals are solid manifestations of cold energy. Bring me one and I'll process the food to preserve it for the trip.
+Chef Jeremy has the ice crystals. You must meet and help him. He is laboring to prepare a cooking contest. That way you will find the ice crystals. Please do it for me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-06.htm new file mode 100644 index 0000000000..235495ebbe --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/1-06.htm @@ -0,0 +1,4 @@ + Chef Duncan:
+To keep it cool, place the ice crystal here and seal it completely like this...
+Voila! It's done! Take it to the saint!
+Do you think it's enough food? It's not a pretty box, but I put my heart into it! I trust the saint will divide it fairly among all the people in the village. Please, give my best regards to Saint Agnes! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-01.htm new file mode 100644 index 0000000000..531c4d0c76 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins to vibrate softly. Someone with the Stone of Commune must be nearby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-02.htm new file mode 100644 index 0000000000..c607d504e2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The Stone of Commune begins to vibrate. Suddenly, a powerful creature appears! Who is holding him back? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-03.htm new file mode 100644 index 0000000000..16ac9d6ee0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is useless without a Stone of Commune. Find the man who protected you from the creature. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-04.htm new file mode 100644 index 0000000000..21aa12aecd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+There's a disturbance nearby. Don't get involved. Wait and see what happens. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-05.htm new file mode 100644 index 0000000000..e375068eaf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune begins to vibrate as you draw nearer to the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-06.htm new file mode 100644 index 0000000000..7cca7a0127 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-06.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+ This time, the knowledge flows into your head painlessly! You've learned the power not permitted to us and the subsequent destiny. It seems you realized something big. Go to High Priest Hollint in Oren Castle Town, and report the progress. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-07.htm new file mode 100644 index 0000000000..3cb1489ae6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark as if nothing had happened. Communion is complete. Go to High Priest Hollint in Oren Castle Town and tell him what you've learned. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/11-01.htm new file mode 100644 index 0000000000..c6574c1c23 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/11-01.htm @@ -0,0 +1,4 @@ +Priest Bastian:
+Hello again! Isn't Agnes great? I don't know how I ever got by without her! Did you find that Stone of Commune useful?
+This time, a very important priest asked me to help you.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/11-02.htm new file mode 100644 index 0000000000..e0a1066140 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/11-02.htm @@ -0,0 +1,6 @@ +Priest Bastian:
+The Stone of Commune that you seek is in the possession of the Archon of Halisha!
+ He resides inside the Four Sepulchers, but you must not pursue him there alone! Form a party with at least three other players before even attempting it!
+If you must pursue him alone, attack his minions at the Shrine of the Loyal. He will show himself to defend them when you've gathered 700 marks of Halisha.
+His minions include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Guards.
+ The Tablet of Vision that you seek can be found between the Wall of Argos and Goddard. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/11-03.htm new file mode 100644 index 0000000000..e0a1066140 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/11-03.htm @@ -0,0 +1,6 @@ +Priest Bastian:
+The Stone of Commune that you seek is in the possession of the Archon of Halisha!
+ He resides inside the Four Sepulchers, but you must not pursue him there alone! Form a party with at least three other players before even attempting it!
+If you must pursue him alone, attack his minions at the Shrine of the Loyal. He will show himself to defend them when you've gathered 700 marks of Halisha.
+His minions include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Guards.
+ The Tablet of Vision that you seek can be found between the Wall of Argos and Goddard. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-01.htm new file mode 100644 index 0000000000..be98d195c4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-01.htm @@ -0,0 +1,4 @@ +Saint of Light Agnes:
+I've heard of your devotion. Goddard Castle Town needs someone to help relieve the grief and suffering here. The people have lost all hope!
+Can you help me to reignite their passions?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-02.htm new file mode 100644 index 0000000000..c8f7d8d968 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-02.htm @@ -0,0 +1,2 @@ +Saint of Light Agnes:
+Meet Duncan who is working in the hot springs area. He can help with the suffering caused by famine. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-03.htm new file mode 100644 index 0000000000..98244a28ac --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-03.htm @@ -0,0 +1,4 @@ +Saint of Light Agnes:
+The light shines brighter than ever in you, Priest. I gather your mission was a success.
+How is Duncan? May the blessing of light always be with him for this favor.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-04.htm new file mode 100644 index 0000000000..11fd684d11 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-04.htm @@ -0,0 +1,2 @@ +Saint of Light Agnes:
+I won't forget your kindness. Have you been to the Tablet of Vision south of the Tower of Insolence? I hope you find what you seek. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-05.htm new file mode 100644 index 0000000000..7f581f659a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-05.htm @@ -0,0 +1,3 @@ +Saint of Light Agnes:
+I wish to give light and hope to the people of this town, but they are blinded by hunger.
+Can you visit Duncan in the hot springs area and bring back some food? He has promised to help me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-06.htm new file mode 100644 index 0000000000..2e2cee70ec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/2-06.htm @@ -0,0 +1,4 @@ +Saint of Light Agnes:
+I'll fill the granary with this generous gift. Thanks to your help, these people can walk the path of light once more.
+Now I can help you! A man named Franz told me of how one can step beyond his own limitations. You remind me quite a bit of him.
+Take this Stone of Commune to the Tablet of Vision south of the Tower of Insolence. It will give you new knowledge. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-01.htm new file mode 100644 index 0000000000..3240e513e2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-01.htm @@ -0,0 +1,6 @@ +Priest Bastian:
+Hello! I've been expecting you!
+Don't look so surprised! You're here for the Stone of Commune, aren't you? I got this one from Agnes a while back. Don't you wonder how she got it and why she gave it to me? If you knew her, you'd understand!
+While you were away, there was an accident in Goddard Castle Town. Agnes provided food for the townspeople, and after the accident, everyone, including myself, came to rely upon her.
+The stone you seek isn't perfect. When she gave me this one, she said she needed another, more powerful one.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-02.htm new file mode 100644 index 0000000000..e472a95ea7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-02.htm @@ -0,0 +1,2 @@ +Priest Bastian:
+ I'll let you know the location of Ketra's Messenger Wahkan in the Ketra Orc Camp. First of all, you must gain trust of Ketra's Messenger Wahkan, and keep on working hard until you get the Divine Stone of Wisdom from Soul Guide Asefa who is the highest-ranking shaman of Ketra Orcs. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-03.htm new file mode 100644 index 0000000000..57bebeecea --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-03.htm @@ -0,0 +1,2 @@ +Priest Bastian:
+ I'll let you know the location of Varka's Messenger Naran Ashanuk in the Varka Silenos Camp. First of all, you must gain trust of Varka's Messenger Naran Ashanuk, and keep on working hard until you get the Divine Stone of Wisdom from Soul Guide Udan Mardui who is the highest-ranking shaman of Varka Silenos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-04.htm new file mode 100644 index 0000000000..9d30930776 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-04.htm @@ -0,0 +1,2 @@ +Priest Bastian:
+ Did you get the Divine Stone of Wisdom? Find the 'Divine Stone of Wisdom' by winning the trust of Asefa, chief shaman of the Ketra Orcs, or Udan Mardui, chief shaman of the Varka Silenos. If that doesn't work, speak to Ketra's Messenger Wahkan or Varka's Messenger Naran Ashanuk. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-05.htm new file mode 100644 index 0000000000..c5ed805509 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-05.htm @@ -0,0 +1,3 @@ +Priest Bastian:
+Wonderful! I didn't think you could do it so quickly in the middle of a war! Could I see the stone for a moment? I can use it to create a Stone of Commune if you so desire.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-06.htm new file mode 100644 index 0000000000..d0eecfd413 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-06.htm @@ -0,0 +1,2 @@ +Priest Bastian:
+What are you still doing here? Our destiny approaches! This Stone of Commune is the most powerful I've ever seen! Take it north of the Varka Silenos barracks. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-07.htm new file mode 100644 index 0000000000..a6bf8dcec2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-07.htm @@ -0,0 +1,5 @@ +Priest Bastian:
+Each tribe has a chief shaman who also serves as a guide of dead souls. Asefa serves the Ketra Orcs and Udan Mardui serves the Varka Silenos. Each one possesses a Divine Stone of Wisdom. They are vaguely aware of its power, but have no idea how to use it. They actually give it away as a prize to whomever they consider the wisest of their respective tribes. You must gain their trust and get the stone! Bring it to me, and I'll combine it with the stone that Agnes gave me to create a Stone of Commune.
+The Ketra Orcs and the Varka Silenos are currently at war with each other, so you must choose which tribe to approach.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-08.htm new file mode 100644 index 0000000000..43ce2a3946 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/3-08.htm @@ -0,0 +1,5 @@ +Priest Bastian:
+I'll just combine the two pieces like this...
+Voila! Now I'll give this to you as Agnes requested. May the holy light guide your path.
+The Tablet of Vision that you seek is located north of the Varka Silenos barracks.
+ With luck, we'll meet again. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-01.htm new file mode 100644 index 0000000000..b6b2ab877a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-01.htm @@ -0,0 +1,2 @@ + Dawn Witness Franz:
+ He's very tough! Gather your strength and attack him. You can do it! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-010.htm new file mode 100644 index 0000000000..3e07c15305 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-010.htm @@ -0,0 +1,3 @@ + Dawn Witness Franz:
+ You don't get it, do you? I lead a religious organization called Dawn Witness. Did you really think our meeting was a coincidence? Take this stone with you. You'll need it to carve your fate. I must be going. I wish you a bright future.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-011.htm new file mode 100644 index 0000000000..60a6788c60 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-011.htm @@ -0,0 +1,2 @@ + Dawn Witness Franz:
+Looking for this? It's the Stone of Commune. You know, you helped me without my even asking you to! Please accept this stone as a gift. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-02.htm new file mode 100644 index 0000000000..10d8308cf1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-02.htm @@ -0,0 +1,2 @@ + Dawn Witness Franz:
+ He's pretty tough. Get out of the way! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-03.htm new file mode 100644 index 0000000000..f0e5e26ab4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-03.htm @@ -0,0 +1,2 @@ + Dawn Witness Franz:
+You let him get away! Listen to me and think before you act! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-04.htm new file mode 100644 index 0000000000..6cb2cc0541 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-04.htm @@ -0,0 +1,2 @@ + Dawn Witness Franz:
+Didn't I tell you? Unless you use every resource you have, you'll never defeat him. Now, go for it! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-05.htm new file mode 100644 index 0000000000..41eafe1e7e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-05.htm @@ -0,0 +1,2 @@ + Dawn Witness Franz:
+Mind your own business! Get lost! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-06.htm new file mode 100644 index 0000000000..c74ec58b44 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-06.htm @@ -0,0 +1,3 @@ + Dawn Witness Franz:
+ This is the stone you've been looking for. Don't look so surprised! That was just a temporary partnership with Agnes of Goddard. It's not like you two were soulmates! Someday, you're really going to need this! So, take it!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-07.htm new file mode 100644 index 0000000000..c618c7d993 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-07.htm @@ -0,0 +1,3 @@ + Dawn Witness Franz:
+Hmm, so I end up owing you a favor after all! OK, take this stone...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-08.htm new file mode 100644 index 0000000000..eaf54197b3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-08.htm @@ -0,0 +1,2 @@ + Dawn Witness Franz:
+Is this going to be too hard? Don't worry, I'll deal with him. In the meantime, use this Stone of Commune to communicate with the Tablet of Vision. Hurry up! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-09.htm new file mode 100644 index 0000000000..a5fc5f9f4f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/4-09.htm @@ -0,0 +1,2 @@ + Dawn Witness Franz:
+This Stone of Commune is used to communicate with the Tablet of Vision. Now, start communicating! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/5-01.htm new file mode 100644 index 0000000000..948becf49a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/5-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+A rough tablet appears before you.
+It emits a faint hum similar to the Stone of Commune as you approach.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/5-02.htm new file mode 100644 index 0000000000..02c964da15 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. In a mesmerizing revelation you realize that this isn't the only Stone of Commune nor Tablet of Vision! The knowledge contained in these tablets could change the world!
+As the pain subsides, a strange vision appears before you. The next Stone of Commune is held by a creature with four white wings in the Valley of Saints! And then, the vision is gone!
+The tablet is still and quiet, as if nothing had happened. You know that you must go to the northeastern part of the Valley of Saints and find the Tablet of Vision! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/5-03.htm new file mode 100644 index 0000000000..cec052fb30 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark, as if nothing had happened. Go to the northeastern part of the Valley of Saints and find the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/6-01.htm new file mode 100644 index 0000000000..e51587de0c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have the Stone of Commune to access the Tablet of Vision. The Stone of Commune is held by a creature with four wings. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/6-02.htm new file mode 100644 index 0000000000..14a1620f3f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The unshaped tablet begins to shake and make noise as the Stone of Commune draws near.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/6-03.htm new file mode 100644 index 0000000000..ba1fa56046 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/6-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+ Countless thoughts beyond comprehension sear painfully into your brain. Images twist inside my mind until they finally slow down and I begin to see something familiar...
+ The pain lessens and I am able to make out the location of the Tablet. I see the next Tablet to find The background of the Tablet resembles the North of Border Outpost. The Stone of Commune cannot be far though I cannot discern its exact location... It looks like Haures whom I recognize from a picture is a book. I peer at it closer, but the visions fade. Everything returns to normal. I will go to the North of Border Outpost where the Stone of Commune is. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/6-04.htm new file mode 100644 index 0000000000..dc71a7df63 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and quiet, as if nothing had ever happened. Look north of the border outpost for the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-01.htm new file mode 100644 index 0000000000..218495299e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins to tremor. Someone is nearby!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-02.htm new file mode 100644 index 0000000000..310d01eb38 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Suddenly, someone appears on the other side of the tablet. Could it be Haures, the main character in the book you got from Hollint? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-03.htm new file mode 100644 index 0000000000..5f643495d1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+She has the Stone of Commune and you must get it from her! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-04.htm new file mode 100644 index 0000000000..e347217142 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+There's a disturbance far from here. This isn't the time to get involved. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-05.htm new file mode 100644 index 0000000000..e34b6e16e2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins to buzz as the Stone of Commune draws nearer.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-06.htm new file mode 100644 index 0000000000..f5e9c65758 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-06.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. Some secrets of the tablet begin to be revealed.
+Suddenly, the vision goes white... and emerging from within is a face... Could it be...?
+Bastian?
+And then, just as suddenly, the vision is gone. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-07.htm new file mode 100644 index 0000000000..8406b07ec9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and quiet, as if nothing had ever happened. Visit Priest Bastian in Goddard Castle Town and get the Stone of Commune from him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/8-01.htm new file mode 100644 index 0000000000..28cac3622c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune is vibrating so fiercely you fear it will shake itself to pieces.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/8-02.htm new file mode 100644 index 0000000000..c841c30b2e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/8-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain.
+.
+.
+As the pain fades, the communion comes to an end. But where is the next Stone of Commune? Bastian's last words were troubling.... Talk to him again soon! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/8-03.htm new file mode 100644 index 0000000000..5c073d0487 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark as if nothing had happened. Where is the next Stone of Commune? Speak with Bastian again! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/9-01.htm new file mode 100644 index 0000000000..deadbe8c59 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/9-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+As Bastian said, kill the Archon of Halisha at the Wall of Argos or the Shrine of the Loyal and take the stone from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/9-02.htm new file mode 100644 index 0000000000..3cef0e0c1b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The reaction doesn't seem as dramatic as before, but it appears to be working.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/9-03.htm new file mode 100644 index 0000000000..a7d5284d6b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/9-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension are again seared painfully into your brain. Now, the words of Haures make sense! I also understand our circumstances and destiny. The location of the next Tablet of Vision is becoming clear! It's north of the Seal of Shilen. Someone holding the Stone of Commune is near the tablet. It's hard to make out, but he seems to be riding something. And then as someone else is getting close to him, the vision fades... Find the next Stone of Commune north of the Seal of Shilen. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/9-04.htm new file mode 100644 index 0000000000..c307f3afae --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/9-04.htm @@ -0,0 +1 @@ +Tablet of Vision:
The tablet goes still and dark as if nothing had happened. Go to the northern part of the Seal of Shilen, and find the next Stone of Commune . \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/Q00085_SagaOfTheCardinal.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/Q00085_SagaOfTheCardinal.java new file mode 100644 index 0000000000..002fd240eb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00085_SagaOfTheCardinal/Q00085_SagaOfTheCardinal.java @@ -0,0 +1,105 @@ +/* + * 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.Q00085_SagaOfTheCardinal; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Cardinal (85) + * @author Emperorc + */ +public class Q00085_SagaOfTheCardinal extends AbstractSagaQuest +{ + public Q00085_SagaOfTheCardinal() + { + super(85); + _npc = new int[] + { + 30191, + 31626, + 31588, + 31280, + 31644, + 31646, + 31647, + 31651, + 31654, + 31655, + 31658, + 31280 + }; + Items = new int[] + { + 7080, + 7522, + 7081, + 7500, + 7283, + 7314, + 7345, + 7376, + 7407, + 7438, + 7087, + 0 + }; + Mob = new int[] + { + 27267, + 27234, + 27274 + }; + classid = new int[] + { + 97 + }; + prevclass = new int[] + { + 0x10 + }; + npcSpawnLocations = new Location[] + { + new Location(119518, -28658, -3811), + new Location(181215, 36676, -4812), + new Location(181227, 36703, -4816) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-01.htm new file mode 100644 index 0000000000..7fc250992f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-01.htm @@ -0,0 +1,3 @@ +High Priest Hollint:
+I ask you, follower of the path of light... Have you ever heard of a Saint of Light? Or perhaps you've met one in person? Recently, a Saint of Light has reportedly been seen in Goddard Castle Town. This could be a hoax, like the one who appeared in Gludio... But this time, it seems different!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-010.htm new file mode 100644 index 0000000000..73417e64c1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-010.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+Your abilities currently do not exceed those typical of your class. I"ll promote you when the time is right.
+(Only a character of level 76 may transfer class. Don't abandon the quest before class transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-02.htm new file mode 100644 index 0000000000..4fb11c183c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-02.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+Follower of the path of light, I ask you... Have you ever reached your limit, and struggled to escape your fate? I'm afraid you still don't get it. Get some more training and come back.
+(This quest may only be undertaken by a Prophet of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-03.htm new file mode 100644 index 0000000000..5b5cbd1c61 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-03.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+I'm glad to hear that! Look for the Saint of Light in Goddard Castle Town. You can decide your own fate after that, but don't forget to come back and see me. I want to hear your opinion on these matters.
+Here's a book that I got from Franz, along with his information. It has information regarding a person who may try to interrupt your work. I hope you never run into him, but if you do, use the information in this book to deal with him. May the divine blessing of Einhasad be with you always... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-04.htm new file mode 100644 index 0000000000..591c474f63 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-04.htm @@ -0,0 +1,2 @@ + High Priest Hollint:
+Did you forget what you promised to do? Find the Saint of Light in Goddard Castle Town and find out from her what you need to do next. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-05.htm new file mode 100644 index 0000000000..956bc2557b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-05.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+You know Franz pretty well, don't you? He's personally vouched for the Saint of Light in Goddard Castle Town! He says that anybody who has reached their limit and desires a new fate should speak with her. I'll need to verify his information further, because it seems rather hastily scribbled down, but so far it seems reliable. I understand that you're also seeking a new path. Are you willing to take on a new mission?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-06.htm new file mode 100644 index 0000000000..3edc62550e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-06.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+Your reputation is growing, and the saint has even acknowledged you! She says that you've obtained a new understanding after being blessed by Einhasad. Is that true?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-07.htm new file mode 100644 index 0000000000..a13bc5ae5f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-07.htm @@ -0,0 +1,2 @@ + High Priest Hollint:
+Congratulations on receiving the recognition of the Saint and a new understanding! Your faith and knowledge already surpasses that of a Prophet. Henceforth you shall be known as a Heirophant! May you spread your understanding to many people and guide them with care. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-08.htm new file mode 100644 index 0000000000..17459d5bbf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-08.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+Congratulations on receiving the recognition of the saint and a new understanding. Your abilities currently do not exceed those typical of your class. I'll promote you when the time is right.
+(Only a character of level 76 may transfer class. Don't abandon the quest before class transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-09.htm new file mode 100644 index 0000000000..5212688d88 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/0-09.htm @@ -0,0 +1,2 @@ + High Priest Hollint:
+Congratulations on receiving the recognition of the saint and a new understanding! Your faith and knowledge already surpass that of a Prophet. Henceforth you shall be known as a Hierophant! May you spread your understanding to many people and guide them. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-01.htm new file mode 100644 index 0000000000..fa3ec2c0a7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-01.htm @@ -0,0 +1,6 @@ + Chef Duncan:
+What can I do for you, priest of light?
+Saint Agnes sent you to me? Well come on in, then! How are things with Saint Agnes?
+Ah, yes, the starving people! She has a heart of gold, that one! I'll always do anything I can to help her. I'm glad you came!
+I'll need something to keep the food fresh on the trip back to her, however...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-02.htm new file mode 100644 index 0000000000..449b8cf48a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-02.htm @@ -0,0 +1,2 @@ +Chef Duncan:
+There's quite a bit of food here, and it's bound to spoil unless we have a way to preserve it. We'll need an ice crystal to keep it fresh. Chef Jeremy has them. You can go and ask him about them. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-03.htm new file mode 100644 index 0000000000..eba1d7e0da --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-03.htm @@ -0,0 +1,3 @@ +Chef Duncan:
+You brought the ice crystals. I've already prepared all the food and packaged it to go. Now all I have to do is process it to keep it fresh. Give me an ice crystal now.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-04.htm new file mode 100644 index 0000000000..cbdf3519f9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-04.htm @@ -0,0 +1,2 @@ + Chef Duncan:
+Oh, you're still here. Although I processed the food so that it won't spoil quickly, it won't last forever! Take it to the Saint immediately, before it goes bad! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-05.htm new file mode 100644 index 0000000000..8d60140b00 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-05.htm @@ -0,0 +1,3 @@ +Chef Duncan:
+Ice crystals are crystallizations of cold energy. Bring one to me, and I'll process the food so that it won't spoil on your journey.
+Chef Jeremy has the ice crystals. You must meet and help him. He is laboring to prepare a cooking contest. That way you will find the ice crystals. Please do it for me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-06.htm new file mode 100644 index 0000000000..235495ebbe --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/1-06.htm @@ -0,0 +1,4 @@ + Chef Duncan:
+To keep it cool, place the ice crystal here and seal it completely like this...
+Voila! It's done! Take it to the saint!
+Do you think it's enough food? It's not a pretty box, but I put my heart into it! I trust the saint will divide it fairly among all the people in the village. Please, give my best regards to Saint Agnes! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-01.htm new file mode 100644 index 0000000000..340bdcab22 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins vibrating softly. The Stone of Commune must be nearby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-02.htm new file mode 100644 index 0000000000..5de18f848a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You feel the vibration from the Stone of Commune as a powerful being appears. Someone prevents his approach! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-03.htm new file mode 100644 index 0000000000..9852ac6606 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Without the Stone of Commune, it's just a tablet. Find the man who prevented the creature from attacking you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-04.htm new file mode 100644 index 0000000000..54f3b51194 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+There's a fight. You'd better not get involved. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-05.htm new file mode 100644 index 0000000000..f853fb4b36 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The stone vibrates as you approach.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-06.htm new file mode 100644 index 0000000000..6c6d0f413a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-06.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Forbidden knowledge enters your mind, this time without pain. You now understand the forbidden strength and the resulting fate. You realize its grandness. Go and report to High Priest Holint of Oren Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-07.htm new file mode 100644 index 0000000000..6de97eaede --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark as if nothing had happened. Go to High Priest Hollint in Oren Castle Town and tell him what you've learned. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/11-01.htm new file mode 100644 index 0000000000..fbf67f420f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/11-01.htm @@ -0,0 +1,4 @@ +Priest Bastian:
+Hello again! Isn't Agnes great? I don't know how I ever got along without her! Did you find that Stone of Commune useful?
+This time, a very important priest asked me to help you.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/11-02.htm new file mode 100644 index 0000000000..b5c106e236 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/11-02.htm @@ -0,0 +1,6 @@ +Priest Bastian:
+The Stone of Commune that you seek is in the possession of the Archon of Halisha!
+ He resides inside the Four Sepulchers, but you must not pursue him there alone! Form a party with at least three other players before even attempting it!
+If you must pursue him alone, attack his minions at the Shrine of the Loyal. He will show himself to defend them when you've gathered 700 marks of Halisha.
+His minions include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Guards.
+The Tablet of Vision that you seek can be found between the Wall of Argos and Goddard. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/11-03.htm new file mode 100644 index 0000000000..e0a1066140 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/11-03.htm @@ -0,0 +1,6 @@ +Priest Bastian:
+The Stone of Commune that you seek is in the possession of the Archon of Halisha!
+ He resides inside the Four Sepulchers, but you must not pursue him there alone! Form a party with at least three other players before even attempting it!
+If you must pursue him alone, attack his minions at the Shrine of the Loyal. He will show himself to defend them when you've gathered 700 marks of Halisha.
+His minions include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Guards.
+ The Tablet of Vision that you seek can be found between the Wall of Argos and Goddard. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-01.htm new file mode 100644 index 0000000000..3eaa514aaf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-01.htm @@ -0,0 +1,4 @@ +Saint of Light Agnes:
+I have heard of your undying passion as a Priest. Goddard Castle Town needs someone to help relieve the grief and suffering that is abundant here. The people have lost their hopes and dreams.
+Can you help me reignite their passions?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-02.htm new file mode 100644 index 0000000000..3744cabc47 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-02.htm @@ -0,0 +1,2 @@ +Saint of Light Agnes:
+Meet Duncan who is working in the hot springs area. He can help with the suffering caused by this famine. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-03.htm new file mode 100644 index 0000000000..5c84791cdb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-03.htm @@ -0,0 +1,4 @@ +Saint of Light Agnes:
+The light shines brighter than ever in you, Priest. I gather your mission was a success.
+How is Duncan? May the blessing of light always be with him for this favor.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-04.htm new file mode 100644 index 0000000000..11fd684d11 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-04.htm @@ -0,0 +1,2 @@ +Saint of Light Agnes:
+I won't forget your kindness. Have you been to the Tablet of Vision south of the Tower of Insolence? I hope you find what you seek. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-05.htm new file mode 100644 index 0000000000..7f581f659a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-05.htm @@ -0,0 +1,3 @@ +Saint of Light Agnes:
+I wish to give light and hope to the people of this town, but they are blinded by hunger.
+Can you visit Duncan in the hot springs area and bring back some food? He has promised to help me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-06.htm new file mode 100644 index 0000000000..94d976dd0f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/2-06.htm @@ -0,0 +1,4 @@ +Saint of Light Agnes:
+I'll fill the granary with this generous gift. Thanks to your help, these people can walk the path of light once more.
+Now I can help you! A woman named Luna told me of how one can step beyond his own limitations. You remind me of her.
+Take this Stone of Commune to the Tablet of Vision, south of the Tower of Insolence. It will bring you new knowledge. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-01.htm new file mode 100644 index 0000000000..a5d40334bb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-01.htm @@ -0,0 +1,6 @@ +Priest Bastian:
+Hello! I've been expecting you!
+Don't look so surprised! You're here for the Stone of Commune, aren't you? I got this one from Agnes a while back. Don't you wonder how she got it and why she gave it to me? If you knew her, you'd understand!
+While you were away, there was an accident in Goddard Castle Town. Agnes provided food for the townspeople, and after the accident, everyone, including myself, came to rely upon her.
+The stone you seek isn't perfect. When she gave me this one, she said she needed a more powerful one.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-02.htm new file mode 100644 index 0000000000..d1afa360b6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-02.htm @@ -0,0 +1,2 @@ +Priest Bastian:
+I'll let you know the location of Ketra's Messenger Wahkan in the Ketra Orc Camp. First of all, you must gain trust of Ketra's Messenger Wahkan, and keep on working hard until you get the Divine Stone of Wisdom from Soul Guide Asefa who is the highest-ranking shaman of Ketra Orcs. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-03.htm new file mode 100644 index 0000000000..9d6f8b834f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-03.htm @@ -0,0 +1,2 @@ +Priest Bastian:
+I'll let you know the location of Varka's Messenger Naran Ashanuk in the Varka Silenos Camp. First of all, you must gain trust of Varka's Messenger Naran Ashanuk, and keep on working hard until you get the Divine Stone of Wisdom from Soul Guide Udan Mardui who is the highest-ranking shaman of Varka Silenos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-04.htm new file mode 100644 index 0000000000..7872282823 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-04.htm @@ -0,0 +1,2 @@ +Priest Bastian:
+Did you get the Divine Stone of Wisdom? Find the 'Divine Stone of Wisdom' by winning the trust of Asefa, chief shaman of the Ketra Orcs, or Udan Mardui, chief shaman of the Varka Silenos. If that doesn't work, speak to Ketra's Messenger Wahkan or Varka's Messenger Naran Ashanuk. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-05.htm new file mode 100644 index 0000000000..8a651580f9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-05.htm @@ -0,0 +1,3 @@ +Priest Bastian:
+Wonderful! I didn't think you could do it so quickly in the middle of a war! Could I see the stone for a moment? I can create a Stone of Commune for you now if you wish.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-06.htm new file mode 100644 index 0000000000..2c1a7c20bc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-06.htm @@ -0,0 +1,2 @@ +Priest Bastian:
+What are you still doing here? Our destiny approaches! The Stone of Commune is stronger than ever. Take it south of the Varka Silenos barracks. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-07.htm new file mode 100644 index 0000000000..04a8d2626b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-07.htm @@ -0,0 +1,5 @@ +Priest Bastian:
+Each tribe has a chief shaman who also serves as a guide of dead souls. Asefa serves the Ketra Orcs and Udan Mardui serves the Varka Silenos. Each one possesses a Divine Stone of Wisdom. They are vaguely aware of its power, but have no idea how to use it. They actually give it away as a prize to whomever they consider the wisest of their respective tribes! You must gain their trust and get the stone. Bring it to me, and I'll combine it with the stone that Agnes gave me to create a Stone of Commune.
+The Ketra Orcs and the Varka Silenos are currently at war with each other, so you must choose which tribe to approach.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-08.htm new file mode 100644 index 0000000000..0a4bd0c1d4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/3-08.htm @@ -0,0 +1,5 @@ +Priest Bastian:
+I'll just combine the two pieces like this...
+Voila! Now I'll give this to you as Agnes requested. May the holy light guide your path.
+The Tablet of Vision that you seek is located north of the Varka Silenos barracks.
+With luck, we'll meet again. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-01.htm new file mode 100644 index 0000000000..295b944229 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-01.htm @@ -0,0 +1,3 @@ +Sunset Guide Luna:
+Why are you staring off into space? This is a fight to defeat darkness! Don't you have a stake in this? Do you think someone else will save you, like those pathetic priests in the temple?
+Snap out of it! Help us to conquer the forces of darkness! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-010.htm new file mode 100644 index 0000000000..849fede475 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-010.htm @@ -0,0 +1,3 @@ +Sunset Guide Luna:
+ It's good to know I have friends fighting alongside me. Stay true to the faith! By the way, this stone was protected by Fallen angel Tanakia! You were looking for it, right? Well, take it! I must be going now. I hope we meet again someday.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-011.htm new file mode 100644 index 0000000000..5605f1d4e7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-011.htm @@ -0,0 +1,3 @@ +Sunset Guide Luna:
+This is the stone that he dropped while running away from his last fight. You're qualified to possess its secrets.
+Now, I must be going. I hope we meet again someday. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-02.htm new file mode 100644 index 0000000000..4b50e011d1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-02.htm @@ -0,0 +1,2 @@ +Sunset Guide Luna:
+I am invincible! Until the power of light defeats the darkness that fills the world! This isn't your fight. Stand back! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-03.htm new file mode 100644 index 0000000000..509ccfcac1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-03.htm @@ -0,0 +1,2 @@ +Sunset Guide Luna:
+That filthy demon turned tail and ran... This fight isn't finished! I won't rest until the power of darkness is completely defeated! You'll certainly fight against him one day. Until that day, may the light protect you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-04.htm new file mode 100644 index 0000000000..3f308f5780 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-04.htm @@ -0,0 +1,2 @@ +Sunset Guide Luna:
+Don't stop! You have to finish this fight! You don't want the power of the darkness and corruption to cover the world again, do you? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-05.htm new file mode 100644 index 0000000000..4b50e011d1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-05.htm @@ -0,0 +1,2 @@ +Sunset Guide Luna:
+I am invincible! Until the power of light defeats the darkness that fills the world! This isn't your fight. Stand back! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-06.htm new file mode 100644 index 0000000000..37d73d05dd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-06.htm @@ -0,0 +1,3 @@ +Sunset Guide Luna:
+Nice work! The power of darkness won't disappear if you just sit praying in the temple. It must be destroyed! It's a pity that there are so many priests who don't recognize that simple truth! Even fallen angels can't neglect the power of those who have true belief, can they?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-07.htm new file mode 100644 index 0000000000..6be4596037 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-07.htm @@ -0,0 +1,3 @@ +Sunset Guide Luna:
+I didn't expect to be meeting you like this. That devil seems to last forever! I can't rest until he is completely destroyed. I have something for you.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-08.htm new file mode 100644 index 0000000000..5b45a505b9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-08.htm @@ -0,0 +1,2 @@ +Sunset Guide Luna:
+This isn't your fight. Stand back! Don't you have the Stone of Commune? Use it to communicate with the Tablet of Vision. Hurry up, before Tanakia finds out! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-09.htm new file mode 100644 index 0000000000..6f5fc943dd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/4-09.htm @@ -0,0 +1,2 @@ +Sunset Guide Luna:
+Why are you still here? Do you still have the Stone of Commune that I gave you? Why haven't you communed with the tablet yet? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/5-01.htm new file mode 100644 index 0000000000..45d1864986 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/5-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+A rough tablet appears before you.
+It emits a faint hum similar to the Stone of Commune as you approach.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/5-02.htm new file mode 100644 index 0000000000..643558b962 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. In a mesmerizing revelation you realize that this isn't the only Stone of Commune nor Tablet of Vision! The knowledge contained in these tablets could change the world!
+As the pain subsides, a strange vision appears before you. A creature with four white wings, flying above the Valley of Saints, is carrying the Stone of Commune! In a moment, the vision fades...
+The tablet goes still and dark, as if nothing had happened. Go to the south of the Valley of Saints and find the Tablet of Vision! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/5-03.htm new file mode 100644 index 0000000000..f8efcf8c24 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark, as if nothing had happened. Go to the south of the Valley of Saints and find the next Stone of Commune! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/6-01.htm new file mode 100644 index 0000000000..e51587de0c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have the Stone of Commune to access the Tablet of Vision. The Stone of Commune is held by a creature with four wings. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/6-02.htm new file mode 100644 index 0000000000..06f0eed4b1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The unshaped tablet begins to shake and make noise as the Stone of Commune draws near.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/6-03.htm new file mode 100644 index 0000000000..1186f0dc56 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/6-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. The cascade of brief images is unintelligible at first...
+But then, the next tablet comes into view! It's northeast of the Ketra Orc Outpost! Someone nearby has the Stone of Commune! It looks like the legendary Naverius has it! And then the vision fades. You must go northeast of the Ketra Orc Outpost and get the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/6-04.htm new file mode 100644 index 0000000000..92b3e33088 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and quiet, as if nothing had ever happened. Go to the northeast of the Ketra Orc Outpost and get the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-01.htm new file mode 100644 index 0000000000..e98fea468e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins to shake slightly. Someone is nearby!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-02.htm new file mode 100644 index 0000000000..539c16be6b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Suddenly, someone appears on the other side of the tablet. Could it be Naverius, the main character in the book I got from Hollint? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-03.htm new file mode 100644 index 0000000000..e6246bcdd8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+I must get the Stone of Commune away from Naverius! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-04.htm new file mode 100644 index 0000000000..e347217142 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+There's a disturbance far from here. This isn't the time to get involved. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-05.htm new file mode 100644 index 0000000000..e75fe19555 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-05.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+As I approach the tablet with the Stone of Commune, it starts to buzz.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-06.htm new file mode 100644 index 0000000000..351fd70290 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-06.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+Suddenly, huge amounts of knowledge are painfully seared into your brain. Some secrets of the tablet start to be revealed.
+Suddenly, the vision goes white... and emerging from within is a face... Could it be...?
+Bastian in the Goddard Castle Town?
And then, just as suddenly, the vision vanishes and the commune is over. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-07.htm new file mode 100644 index 0000000000..8406b07ec9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and quiet, as if nothing had ever happened. Visit Priest Bastian in Goddard Castle Town and get the Stone of Commune from him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/8-01.htm new file mode 100644 index 0000000000..ebaa439cce --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune is vibrating so fiercely you fear it will shake itself to pieces.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/8-02.htm new file mode 100644 index 0000000000..c841c30b2e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/8-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain.
+.
+.
+As the pain fades, the communion comes to an end. But where is the next Stone of Commune? Bastian's last words were troubling.... Talk to him again soon! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/8-03.htm new file mode 100644 index 0000000000..6f12322fa1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark as if nothing had happened. Talk to Bastian, maybe he'll have an idea where the next Stone of Commune might be! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/9-01.htm new file mode 100644 index 0000000000..deadbe8c59 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/9-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+As Bastian said, kill the Archon of Halisha at the Wall of Argos or the Shrine of the Loyal and take the stone from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/9-02.htm new file mode 100644 index 0000000000..3db200733e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The reaction doesn't seem as dramatic as before, but it appears to be working.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/9-03.htm new file mode 100644 index 0000000000..8ba42a4c91 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/9-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension are again seared painfully into your brain. Now the words of Naverius make sense. I know where the next Tablet of Vision is! It's southeast of Hunters Village. Someone near the tablet has the Stone of Commune. It's hard to make out, but he seems to be riding something, and something else is bearing down on him from behind! And then the vision fades... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/9-04.htm new file mode 100644 index 0000000000..9c4e235a7a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark as if nothing had happened. Go and find the Stone of Commune southeast of Hunters Village. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/Q00086_SagaOfTheHierophant.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/Q00086_SagaOfTheHierophant.java new file mode 100644 index 0000000000..df4ae3208f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00086_SagaOfTheHierophant/Q00086_SagaOfTheHierophant.java @@ -0,0 +1,105 @@ +/* + * 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.Q00086_SagaOfTheHierophant; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Hierophant (86) + * @author Emperorc + */ +public class Q00086_SagaOfTheHierophant extends AbstractSagaQuest +{ + public Q00086_SagaOfTheHierophant() + { + super(86); + _npc = new int[] + { + 30191, + 31626, + 31588, + 31280, + 31591, + 31646, + 31648, + 31652, + 31654, + 31655, + 31659, + 31280 + }; + Items = new int[] + { + 7080, + 7523, + 7081, + 7501, + 7284, + 7315, + 7346, + 7377, + 7408, + 7439, + 7089, + 0 + }; + Mob = new int[] + { + 27269, + 27235, + 27275 + }; + classid = new int[] + { + 98 + }; + prevclass = new int[] + { + 0x11 + }; + npcSpawnLocations = new Location[] + { + new Location(161719, -92823, -1893), + new Location(124355, 82155, -2803), + new Location(124376, 82127, -2796) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-01.htm new file mode 100644 index 0000000000..b4048de9de --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-01.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+I ask you, follower of the path of light... Have you ever heard of a Saint of Light? Or perhaps you've met one in person? Recently, a Saint of Light has reportedly been seen in Goddard Castle Town. This could be a hoax, like the one who appeared in Gludio... But this time, it seems different!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-010.htm new file mode 100644 index 0000000000..73417e64c1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-010.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+Your abilities currently do not exceed those typical of your class. I"ll promote you when the time is right.
+(Only a character of level 76 may transfer class. Don't abandon the quest before class transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-02.htm new file mode 100644 index 0000000000..767518847c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-02.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+Follower of the path of light, I ask you... Have you ever reached your limit, and struggled to escape your fate? I'm afraid you still don't get it. Get some more training and come back.
+(This quest may only be undertaken by an Elder of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-03.htm new file mode 100644 index 0000000000..5b5cbd1c61 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-03.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+I'm glad to hear that! Look for the Saint of Light in Goddard Castle Town. You can decide your own fate after that, but don't forget to come back and see me. I want to hear your opinion on these matters.
+Here's a book that I got from Franz, along with his information. It has information regarding a person who may try to interrupt your work. I hope you never run into him, but if you do, use the information in this book to deal with him. May the divine blessing of Einhasad be with you always... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-04.htm new file mode 100644 index 0000000000..591c474f63 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-04.htm @@ -0,0 +1,2 @@ + High Priest Hollint:
+Did you forget what you promised to do? Find the Saint of Light in Goddard Castle Town and find out from her what you need to do next. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-05.htm new file mode 100644 index 0000000000..56df4a6c4e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-05.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+You know Franz pretty well, don't you? He's personally vouched for the Saint of Light in Goddard Castle Town! He says that anybody who has reached their limit and desires a new fate should speak with her. I'll need to verify his information further, because it seems rather hastily scribbled down, but so far it seems reliable. I understand that you're also seeking a new path. Are you willing to take on a new mission?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-06.htm new file mode 100644 index 0000000000..7660a38c07 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-06.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+Your reputation is growing, and the saint has even acknowledged you! She says that you've obtained a new understanding after being blessed by Einhasad. Is that true?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-07.htm new file mode 100644 index 0000000000..6f13f61962 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-07.htm @@ -0,0 +1,2 @@ + High Priest Hollint:
+Congratulations on receiving the recognition of the saint and a new understanding! Your faith and knowledge already surpass that of an Elder. Henceforth you shall be known as an Eva's Saint! May you spread your understanding to many people and guide them. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-08.htm new file mode 100644 index 0000000000..3be5d05fda --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-08.htm @@ -0,0 +1,3 @@ + High Priest Hollint:
+Congratulations on receiving the recognition of the saint and a new understanding. Your abilities currently do not exceed those typical of your class. I"ll promote you when the time is right.
+(Only a character of level 76 may transfer class. Don't abandon the quest before class transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-09.htm new file mode 100644 index 0000000000..5d7dbb06d9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/0-09.htm @@ -0,0 +1,2 @@ + Eva's Saint:
+Congratulations on receiving the recognition of the saint and a new understanding! Your faith and knowledge already surpass that of an Elder. Henceforth you shall be known as an Eva's Saint! May you spread your understanding to many people and guide them. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-01.htm new file mode 100644 index 0000000000..9bf629e5be --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-01.htm @@ -0,0 +1,6 @@ + Chef Duncan:
+What can I do for you, priest of light?
+Saint Agnes sent you? Well come on in, then! How are things with Saint Agnes?
+Ah, yes, the starving people! She has a heart of gold, that one! I'll always do anything I can to help her. I'm glad you came!
+I'll need something to keep the food fresh on the trip back to her, however...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-02.htm new file mode 100644 index 0000000000..a91812e6b2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-02.htm @@ -0,0 +1,2 @@ +Chef Duncan:
+There's quite a bit of food here, and it's bound to spoil unless we have a way to preserve it. We'll need the ice crystals to keep it fresh. Chef Jeremy has them. You can go and ask him about them. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-03.htm new file mode 100644 index 0000000000..621d9c25b4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-03.htm @@ -0,0 +1,3 @@ +Chef Duncan:
+You brought the ice crystals. I've already prepared all the food and packaged it to go. Now all I have to do is process it to keep it fresh. Give me an ice crystal now.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-04.htm new file mode 100644 index 0000000000..9ec01898e8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-04.htm @@ -0,0 +1,2 @@ + Chef Duncan:
+You're still here? The food's been preserved, but it won't last forever! You should immediately take it to the Saint! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-05.htm new file mode 100644 index 0000000000..b9840ec71c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-05.htm @@ -0,0 +1,3 @@ +Chef Duncan:
+Ice crystals are solid manifestations of cold energy. Bring me one and I'll process the food to preserve it for the trip.
+Chef Jeremy has the ice crystals. You must meet and help him. He is laboring to prepare a cooking contest. That way you will find the ice crystals. Please do it for me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-06.htm new file mode 100644 index 0000000000..235495ebbe --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/1-06.htm @@ -0,0 +1,4 @@ + Chef Duncan:
+To keep it cool, place the ice crystal here and seal it completely like this...
+Voila! It's done! Take it to the saint!
+Do you think it's enough food? It's not a pretty box, but I put my heart into it! I trust the saint will divide it fairly among all the people in the village. Please, give my best regards to Saint Agnes! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-01.htm new file mode 100644 index 0000000000..f9eb3410a3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins to vibrate softly. Someone with the Stone of Commune must be nearby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-02.htm new file mode 100644 index 0000000000..c21237239a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The Stone of Commune begins to vibrate softly. You sense the presence of a powerful being. Who is holding him back? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-03.htm new file mode 100644 index 0000000000..16ac9d6ee0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is useless without a Stone of Commune. Find the man who protected you from the creature. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-04.htm new file mode 100644 index 0000000000..21aa12aecd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+There's a disturbance nearby. Don't get involved. Wait and see what happens. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-05.htm new file mode 100644 index 0000000000..ef8012e915 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune begins to vibrate as you approach the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-06.htm new file mode 100644 index 0000000000..baf587e694 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-06.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The knowledge flows into your head painlessly this time! The reason the power was sealed is now obvious! What a revelation! Go and report to High Priest Holint of Oren Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-07.htm new file mode 100644 index 0000000000..e5bf60329d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark as if nothing had happened. Communion is complete. Go to High Priest Hollint in Oren Castle Town and tell him what you've learned. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/11-01.htm new file mode 100644 index 0000000000..e10f499eba --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/11-01.htm @@ -0,0 +1,4 @@ +Priest Bastian:
+Hello again! Isn't Agnes great? I don't know how I ever got along without her! Did you find that Stone of Commune useful?
+This time, a very important priest asked me to help you.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/11-02.htm new file mode 100644 index 0000000000..e0a1066140 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/11-02.htm @@ -0,0 +1,6 @@ +Priest Bastian:
+The Stone of Commune that you seek is in the possession of the Archon of Halisha!
+ He resides inside the Four Sepulchers, but you must not pursue him there alone! Form a party with at least three other players before even attempting it!
+If you must pursue him alone, attack his minions at the Shrine of the Loyal. He will show himself to defend them when you've gathered 700 marks of Halisha.
+His minions include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Guards.
+ The Tablet of Vision that you seek can be found between the Wall of Argos and Goddard. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/11-03.htm new file mode 100644 index 0000000000..e0a1066140 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/11-03.htm @@ -0,0 +1,6 @@ +Priest Bastian:
+The Stone of Commune that you seek is in the possession of the Archon of Halisha!
+ He resides inside the Four Sepulchers, but you must not pursue him there alone! Form a party with at least three other players before even attempting it!
+If you must pursue him alone, attack his minions at the Shrine of the Loyal. He will show himself to defend them when you've gathered 700 marks of Halisha.
+His minions include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Guards.
+ The Tablet of Vision that you seek can be found between the Wall of Argos and Goddard. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-01.htm new file mode 100644 index 0000000000..df01cf0c54 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-01.htm @@ -0,0 +1,4 @@ +Saint of Light Agnes:
+I have heard of your undying passion as a Priest. Goddard Castle Town needs someone to help relieve the grief and suffering that is abundant here. The people have lost their hopes and dreams.
+Can you help me reignite their passions?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-02.htm new file mode 100644 index 0000000000..3744cabc47 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-02.htm @@ -0,0 +1,2 @@ +Saint of Light Agnes:
+Meet Duncan who is working in the hot springs area. He can help with the suffering caused by this famine. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-03.htm new file mode 100644 index 0000000000..d3f5d79405 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-03.htm @@ -0,0 +1,4 @@ +Saint of Light Agnes:
+The light shines brighter than ever in you, Priest. I gather your mission was a success.
+How is Duncan? May the blessing of light always be with him for this favor.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-04.htm new file mode 100644 index 0000000000..a6436598ed --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-04.htm @@ -0,0 +1,2 @@ +Saint of Light Agnes:
+I won't forget your kindness. Have you been to the Tablet of Vision to the south of the Tower of Insolence? I hope you find what you seek. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-05.htm new file mode 100644 index 0000000000..7f581f659a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-05.htm @@ -0,0 +1,3 @@ +Saint of Light Agnes:
+I wish to give light and hope to the people of this town, but they are blinded by hunger.
+Can you visit Duncan in the hot springs area and bring back some food? He has promised to help me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-06.htm new file mode 100644 index 0000000000..6fbc9b0ea0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/2-06.htm @@ -0,0 +1,4 @@ + Saint of Light Agnes :
+ Many, many thanks! I will put this food in the warehouse and give it to people at dinner time and from there, lead them to the Path of Light. Thanks to your help, I can now give happiness to these people. Your noble sacrifice will not be forgotten.
+ Actually, if I recall, you came to me for the way to go on. Before you, someone called Elikia came to me to talk as well. It appears that you both are walking through similar paths. So I will share with you what I shared with Elikia.
+ This is the Stone of Commune. I heard if you bring this to the Tablet of Vision, you will get additional knowledge. To visit the Tablet of Vision with this stone, go to the south of the Tower of Insolence. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-01.htm new file mode 100644 index 0000000000..c386d60548 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-01.htm @@ -0,0 +1,6 @@ +Priest Bastian:
+Hello! I've been expecting you!
+Don't look so surprised! You must have come to me because of the power of Stone of Commune you feel from me? I got this one from Agnes a while back. Don't you wonder how she got it and why she gave it to me? If you knew her, you would understand!
+While you were away, there was an accident in Goddard Castle Town. Agnes provided food for the townspeople, and after the accident, everyone, including myself, came to rely upon her.
+The stone you seek isn't perfect. When she gave me this one, she said she needed a more powerful one.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-02.htm new file mode 100644 index 0000000000..e472a95ea7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-02.htm @@ -0,0 +1,2 @@ +Priest Bastian:
+ I'll let you know the location of Ketra's Messenger Wahkan in the Ketra Orc Camp. First of all, you must gain trust of Ketra's Messenger Wahkan, and keep on working hard until you get the Divine Stone of Wisdom from Soul Guide Asefa who is the highest-ranking shaman of Ketra Orcs. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-03.htm new file mode 100644 index 0000000000..57bebeecea --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-03.htm @@ -0,0 +1,2 @@ +Priest Bastian:
+ I'll let you know the location of Varka's Messenger Naran Ashanuk in the Varka Silenos Camp. First of all, you must gain trust of Varka's Messenger Naran Ashanuk, and keep on working hard until you get the Divine Stone of Wisdom from Soul Guide Udan Mardui who is the highest-ranking shaman of Varka Silenos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-04.htm new file mode 100644 index 0000000000..9d30930776 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-04.htm @@ -0,0 +1,2 @@ +Priest Bastian:
+ Did you get the Divine Stone of Wisdom? Find the 'Divine Stone of Wisdom' by winning the trust of Asefa, chief shaman of the Ketra Orcs, or Udan Mardui, chief shaman of the Varka Silenos. If that doesn't work, speak to Ketra's Messenger Wahkan or Varka's Messenger Naran Ashanuk. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-05.htm new file mode 100644 index 0000000000..e4c6056678 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-05.htm @@ -0,0 +1,3 @@ +Priest Bastian:
+Wonderful! I didn't think you could do it so quickly in the middle of a war! Could I see the stone for a moment? I can use it to create a Stone of Commune if you so desire.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-06.htm new file mode 100644 index 0000000000..6e0ae36f45 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-06.htm @@ -0,0 +1,2 @@ +Priest Bastian:
+What are you still doing here? Our destiny approaches! The Stone of Commune is more powerful than ever! Take it north of the Varka Silenos barracks. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-07.htm new file mode 100644 index 0000000000..f1ddedd6ca --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-07.htm @@ -0,0 +1,5 @@ +Priest Bastian:
+Each tribe has a chief shaman who also serves as a guide of dead souls. Asefa serves the Ketra Orcs and Udan Mardui serves the Varka Silenos. Each one possesses a Divine Stone of Wisdom. They are vaguely aware of its power, but have no idea how to use it. They actually give it away as a prize to whomever they consider the wisest of their respective tribes! You must gain their trust and get the stone. Bring it to me, and I'll combine it with the stone that Agnes gave me to create a Stone of Commune.
+The Ketra Orcs and the Varka Silenos are currently at war with each other, so you must choose which tribe to approach.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-08.htm new file mode 100644 index 0000000000..0a4bd0c1d4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/3-08.htm @@ -0,0 +1,5 @@ +Priest Bastian:
+I'll just combine the two pieces like this...
+Voila! Now I'll give this to you as Agnes requested. May the holy light guide your path.
+The Tablet of Vision that you seek is located north of the Varka Silenos barracks.
+With luck, we'll meet again. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-01.htm new file mode 100644 index 0000000000..bbfdc809a4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-01.htm @@ -0,0 +1,2 @@ +Verdure Wiseman Elikia:
+We are on the same path. Give me a hand, we can't miss Tanakia! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-010.htm new file mode 100644 index 0000000000..79b673e020 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-010.htm @@ -0,0 +1,4 @@ +Verdure Wiseman Elikia:
+I came to see if she was the real Saint of Light. I discovered she was hiding something. I learned of Tanakia and got this Stone of Commune after fighting him. She wants you to have it, but don't get too close to her!
+I must go now. I'll pray for you.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-011.htm new file mode 100644 index 0000000000..1c1802eb8a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-011.htm @@ -0,0 +1,3 @@ +Verdure Wiseman Elikia:
+I came to see if she was the real Saint of Light. I discovered she was hiding something. I learned of Tanakia and got this Stone of Commune after fighting him. She wants you to have it, but don't get too close to her!
+I must go now, I'll pray for your protection. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-02.htm new file mode 100644 index 0000000000..5494f21f96 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-02.htm @@ -0,0 +1,3 @@ +Verdure Wiseman Elikia:
+I can't let you have your way, Tanakia.
+Stand back, this is not your fight! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-03.htm new file mode 100644 index 0000000000..f5071e0318 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-03.htm @@ -0,0 +1,2 @@ +Verdure Wiseman Elikia:
+He got away! I'll have to wait. We must defeat Tanakia, the world is in peril. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-04.htm new file mode 100644 index 0000000000..e7dfd8ebfd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-04.htm @@ -0,0 +1,2 @@ +Verdure Wiseman Elikia:
+His power is strong, I'll need your help to defeat him. Show your strength! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-05.htm new file mode 100644 index 0000000000..472d66c8e6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-05.htm @@ -0,0 +1,4 @@ +Verdure Wiseman Elikia:
+I can't let you have your way, Tanakia.
+Stand back, this is not your fight! + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-06.htm new file mode 100644 index 0000000000..f39c6eab84 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-06.htm @@ -0,0 +1,3 @@ +Verdure Wiseman Elikia:
+With your help, we can uncover the conspiracy. I came here when I heard about the Saint of Light Agnes in Goddard Castle Town. Agnes may not be the true Saint of Light! Meeting the Fallen Angel here may be a part of Agnes's conspiracy.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-07.htm new file mode 100644 index 0000000000..8b41a67018 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-07.htm @@ -0,0 +1,3 @@ +Verdure Wiseman Elikia:
+With your help, we can uncover the conspiracy. I came here when I heard about the Saint of Light Agnes in Goddard Castle Town. Agnes may not be the true Saint of Light! Meeting the Fallen Angel here may be a part of Agnes's conspiracy.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-08.htm new file mode 100644 index 0000000000..58c2d77466 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-08.htm @@ -0,0 +1,2 @@ +Verdure Wiseman Elikia:
+We'll handle this fight. Commune with the Tablet of Vision using the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-09.htm new file mode 100644 index 0000000000..b25250896e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/4-09.htm @@ -0,0 +1,2 @@ +Verdure Wiseman Elikia:
+Agnes wants you to commune with the Tablet of Vision using this Stone of Commune. Go to the tablet! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/5-01.htm new file mode 100644 index 0000000000..5949f58aaf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/5-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+A rough tablet appears before you.
+It emits a faint hum similar to the Stone of Commune as you approach.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/5-02.htm new file mode 100644 index 0000000000..030bb14fb1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. In a mesmerizing revelation you realize that this isn't the only Stone of Commune nor Tablet of Vision! The knowledge contained in these tablets could change the world!
+As the pain subsides, a strange vision appears before you. A creature with four white wings, flying above the Valley of Saints, is carrying the Stone of Commune! In a moment, the vision fades...
+The tablet goes still and dark, as if nothing had happened. Go to the west of the Valley of Saints and find the Tablet of Vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/5-03.htm new file mode 100644 index 0000000000..9a526bc49a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark, as if nothing had happened. Go to the west of the Valley of Saints and find the next Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/6-01.htm new file mode 100644 index 0000000000..e51587de0c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have the Stone of Commune to access the Tablet of Vision. The Stone of Commune is held by a creature with four wings. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/6-02.htm new file mode 100644 index 0000000000..ae04f51edf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins to tremble and emit a faint light as the Stone of Commune draws near.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/6-03.htm new file mode 100644 index 0000000000..d4497f4b3e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/6-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Painful thoughts... thoughts that you don't understand creep into the back of your mind... You look toward a bright light and teh pain slowly subsides. You see the next Tablet. It seems to be in the southeastern outpost of the Ketra Orc. But there seems to be someone else holding the Stone of Commune. He looks like Von Haures who you know from a book. You try to look closely at him, but the vision fades. You feel compelled to discover the truth! Go to the next Tablet in the southeastern outpost of the Ketra Orc. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/6-04.htm new file mode 100644 index 0000000000..778617a936 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+ Communing further with this tablet would be futile. Go to the Southeast of Ketra Orc Outpost and get the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-01.htm new file mode 100644 index 0000000000..554006d6b1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is vibrating softly. Someone is nearby!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-02.htm new file mode 100644 index 0000000000..cc6285551f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Suddenly, someone appears on the other side of the tablet. Could it be Haures, the subject of that book that came from Hollint? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-03.htm new file mode 100644 index 0000000000..a4c6b43a26 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+I'm certain that Haures has the Stone of Commune I need to access the Tablet of Vision. I must get it away from her! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-04.htm new file mode 100644 index 0000000000..1df6dcf565 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Somewhere far away, people are fighting. Don't get involved. Wait and see what happens. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-05.htm new file mode 100644 index 0000000000..273c20b232 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins to buzz when you pick up the Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-06.htm new file mode 100644 index 0000000000..7964e66ded --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-06.htm @@ -0,0 +1 @@ +Tablet of Vision:
New knowledge is seared painfully into your brain. Some secrets of the Tablet of Vision are becoming clear.
Suddenly everything goes white, and a familiar face comes into view... It's...! Bastian in the Goddard Castle Town? And then the vision is gone! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-07.htm new file mode 100644 index 0000000000..ff6a36cd56 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and quiet, as if nothing had ever happened. The Stone of Commune beckons you to visit Priest Bastian of Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/8-01.htm new file mode 100644 index 0000000000..85792dce03 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune is shaking so violently you fear that it will destroy itself.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/8-02.htm new file mode 100644 index 0000000000..4e50390b3a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/8-02.htm @@ -0,0 +1,5 @@ +Tablet of Vision:
+The pain signals that more knowledge is being absorbed. But, this time, it is all mixed up so that I don't understand what it is.
+.
+.
+The commune is over as the pain gets relieved. But where is the next Stone of Commune? Bastian's last words were troubling. Talk to him again soon. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/8-03.htm new file mode 100644 index 0000000000..6f12322fa1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark as if nothing had happened. Talk to Bastian, maybe he'll have an idea where the next Stone of Commune might be! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/9-01.htm new file mode 100644 index 0000000000..deadbe8c59 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/9-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+As Bastian said, kill the Archon of Halisha at the Wall of Argos or the Shrine of the Loyal and take the stone from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/9-02.htm new file mode 100644 index 0000000000..e53911f191 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The reaction doesn't seem as dramatic as before, but it appears to be working.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/9-03.htm new file mode 100644 index 0000000000..697c78e162 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/9-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension once again sear painfully into your brain. Now, the words of Haures make sense! I know where the next Tablet of Vision is! It's southeast of Rune Castle Town. Someone near the tablet has the Stone of Commune. It's hard to make out, but he seems to be riding something, and something else is bearing down on him from behind! And then the vision fades... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/9-04.htm new file mode 100644 index 0000000000..e919680c98 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark as if nothing had happened. Find the next Stone of Commune southeast of Rune Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/Q00087_SagaOfEvasSaint.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/Q00087_SagaOfEvasSaint.java new file mode 100644 index 0000000000..513e0d20a9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00087_SagaOfEvasSaint/Q00087_SagaOfEvasSaint.java @@ -0,0 +1,105 @@ +/* + * 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.Q00087_SagaOfEvasSaint; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of Eva's Saint (87) + * @author Emperorc + */ +public class Q00087_SagaOfEvasSaint extends AbstractSagaQuest +{ + public Q00087_SagaOfEvasSaint() + { + super(87); + _npc = new int[] + { + 30191, + 31626, + 31588, + 31280, + 31620, + 31646, + 31649, + 31653, + 31654, + 31655, + 31657, + 31280 + }; + Items = new int[] + { + 7080, + 7524, + 7081, + 7502, + 7285, + 7316, + 7347, + 7378, + 7409, + 7440, + 7088, + 0 + }; + Mob = new int[] + { + 27266, + 27236, + 27276 + }; + classid = new int[] + { + 105 + }; + prevclass = new int[] + { + 0x1e + }; + npcSpawnLocations = new Location[] + { + new Location(164650, -74121, -2871), + new Location(46087, -36372, -1685), + new Location(46066, -36396, -1685) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-01.htm new file mode 100644 index 0000000000..7b26901ba9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-01.htm @@ -0,0 +1,4 @@ +Grand Magister Valleria:
+
+To become an Archmage you have to transcend your life as a Human and live as a god. You must unlock the power of the gods, sealed long ago to prevent Humans from accessing it.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-010.htm new file mode 100644 index 0000000000..cc146d830e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-010.htm @@ -0,0 +1,3 @@ +Grand Magister Valleria:
+I can't allow you to become an Archmage yet!
+(Class transfer is allowed only for characters of level 76 or above. Do not abandon quest before transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-02.htm new file mode 100644 index 0000000000..42713f2f7e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-02.htm @@ -0,0 +1,3 @@ +Grand Magister Valleria:
+I still think Archmage is beyond your reach.
+(This quest may only be undertaken by a character level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-03.htm new file mode 100644 index 0000000000..2a3e56c56f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-03.htm @@ -0,0 +1,2 @@ +Grand Magister Valleria:
+To put it simply, you can't just read the text on the Tablet of Vision, you must have a Stone of Commune. It gives you a direct transmission of the knowledge if you commune with the tablet. This stone is quite rare, but has been sighted recently. Ask Magister Justin of Goddard Castle Town about what to do from here. Here, take a guild newsletter with you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-04.htm new file mode 100644 index 0000000000..e9114a30be --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-04.htm @@ -0,0 +1,3 @@ +Grand Magister Valleria:
+To become an Archmage, you must receive the contents of six Tablets of Vision. They are scattered about the world.
+Meet Magister Justin of Goddard Castle Town, he'll tell you what to do next. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-05.htm new file mode 100644 index 0000000000..d218944866 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-05.htm @@ -0,0 +1,3 @@ +Grand Magister Valleria:
+The gods sealed the Tablets of Vision and scattered them all over the world. If you commune with all six, you shall obtain great power! Once you do that, I'll grant you Archmage status. It won't be easy.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-06.htm new file mode 100644 index 0000000000..4e0a25574d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-06.htm @@ -0,0 +1,5 @@ +Grand Magister Valleria:
+You communed with them all?
+You seek the truth. I'll tell you...
+I have had many disciples, all of which have died pursuing this great power. Until now. I didn't want you to have the same fate, so I sent the fallen angel to stop you. I tried myself at the last tablet, but Devianne intervened. I could have easily dealt with you two.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-07.htm new file mode 100644 index 0000000000..90d5cd801e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-07.htm @@ -0,0 +1,4 @@ +Grand Magister Valleria:
+When we battled, I realized you had become better than all my previous disciples. You can handle yourself now, I see that. That's why I withdrew.
+It's time to release you from my care. Forgive me, but I had good intentions.
+I now bestow upon you the title of Archmage! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-08.htm new file mode 100644 index 0000000000..69b4c298eb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-08.htm @@ -0,0 +1,4 @@ +Grand Magister Valleria:
+When we battled, I realized you had become better than all my previous disciples. You can handle yourself now, I see that. That's why I withdrew.
+You still need to grow a little before you can become an Archmage.
+(Class transfer is allowed only for characters of level 76 or above. Do not abandon quest before transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-09.htm new file mode 100644 index 0000000000..e9e5cca29a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/0-09.htm @@ -0,0 +1,2 @@ +Grand Magister Valleria:
+You've done well. I bestow upon you the title of Archmage! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-01.htm new file mode 100644 index 0000000000..3a8c0a37a6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-01.htm @@ -0,0 +1,4 @@ +Information Broker Mist:
+I know the truth seeker is pretending to be Magister Justin of Goddard Castle Town. I have the report he requested.
+This investigation was difficult, so I can't give it for free!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-02.htm new file mode 100644 index 0000000000..ced0966b56 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-02.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+ Bring me some Ice Crystals and I'll give you the report I prepared for the Truth Scholar.
+You should be able to get some from Chef Jeremy if you help him prepare for the upcoming cooking competition. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-03.htm new file mode 100644 index 0000000000..8fa4ee7245 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-03.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+You brought the ice crystal!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-04.htm new file mode 100644 index 0000000000..9b62f4c6d7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-04.htm @@ -0,0 +1,2 @@ +Information Broker Mist:
+Take the report to the truth seeker, who is pretending to be Magister Justin in Goddard Castle Town! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-05.htm new file mode 100644 index 0000000000..c3c673510c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-05.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+ I've heard that you can find Ice Crystals in this hot springs area. I've been suffering from chronic back pain lately, and I'd like to make an ice pack with some of the crystals.
+ Chef Jeremy is worried about the upcoming cooking contest, and will give you some ice crystals if you help him prepare for it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-06.htm new file mode 100644 index 0000000000..d5344224aa --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/1-06.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+Ah! So nice and cool. Now my back ache is gone!
+Give this report to the truth seeker. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-01.htm new file mode 100644 index 0000000000..b79d175759 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Someone nearby has the Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-02.htm new file mode 100644 index 0000000000..a801dcc68c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+A vision appears of two men... The man being pursued has the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-03.htm new file mode 100644 index 0000000000..32a0170c37 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Listen to Dianne first. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-04.htm new file mode 100644 index 0000000000..8da1c3fd6f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone nearby has the Stone of Commune, but it's too noisy right now. Wait until it quiets down. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-05.htm new file mode 100644 index 0000000000..938ca9cf0a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is covered with indecipherable hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-06.htm new file mode 100644 index 0000000000..a9bc4aa397 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-06.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+A sharp blast of knowlege courses through your cranium! You hear the sound of distant laughter.
+A man announces the birth of another Hero.
+The woman in blue disagrees... This is the last time she'll see the child!
+
+Communion with the six Tablets of Vision is complete. Go back to Grand Magister Valleria. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-07.htm new file mode 100644 index 0000000000..4770fc6c12 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Return to Grand Magister Valleria. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/11-01.htm new file mode 100644 index 0000000000..48a71e20c3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/11-01.htm @@ -0,0 +1,4 @@ +Magister Justin:
+Now I must continue my investigation about who is trying to stop you from becoming a Mystic Muse.
+I'll need this stone myself, but I can tell you how to get your own.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/11-02.htm new file mode 100644 index 0000000000..73bdf59dda --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/11-02.htm @@ -0,0 +1,4 @@ +Magister Justin:
+You can get the next stone by killing the Archon of Halisha in the Four Sepulchers. You'll need help to gain entry.
+If that proves too difficult, go to the Shrine of the Loyal and slay Halisha's minions. If you collect 700 Halisha's Marks, the Archon will appear.
+The minions include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights, and Shrine Guards. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/11-03.htm new file mode 100644 index 0000000000..73bdf59dda --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/11-03.htm @@ -0,0 +1,4 @@ +Magister Justin:
+You can get the next stone by killing the Archon of Halisha in the Four Sepulchers. You'll need help to gain entry.
+If that proves too difficult, go to the Shrine of the Loyal and slay Halisha's minions. If you collect 700 Halisha's Marks, the Archon will appear.
+The minions include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights, and Shrine Guards. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-01.htm new file mode 100644 index 0000000000..d6d15a2d37 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-01.htm @@ -0,0 +1,3 @@ +Magister Justin:
+Grand Magister Valleria didn't know that I'm conducting an investigation under the guise of Justin. In a letter I intercepted Valleria wanted Justin to discourage you from becoming an Archmage! Don't worry, since I'm not bound to him I can still tell you what you need to do to become one.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-02.htm new file mode 100644 index 0000000000..a6a3ec70d5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-02.htm @@ -0,0 +1,2 @@ +Magister Justin:
+Visit Information Broker Mist at the hot springs resort and pick up the Investigative Report I requested. Tell him the truth seeker sent you. Bring the report and I'll tell you how to get the power of the six stone tablets. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-03.htm new file mode 100644 index 0000000000..5c6a72ca9f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-03.htm @@ -0,0 +1,5 @@ +Magister Justin:
+Thanks for the report. This merits further investigation.
+To become an Archmage, you'll need a Stone of Commune for each of the six stone tablets. Use the stones to commune with the tablets and your path will become clear.
+Here's the first Stone of Commune, take it to the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-04.htm new file mode 100644 index 0000000000..81bf0f3143 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-04.htm @@ -0,0 +1,2 @@ +Magister Justin:
+Commune with the Tablet of Vision south of the Tower of Insolence with the Stone of Commune I gave you. The path will then become clear. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-05.htm new file mode 100644 index 0000000000..338df2c89a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-05.htm @@ -0,0 +1,3 @@ +Magister Justin:
+I'll tell you in due time.
+Meet with Information Broker Mist at the hot springs resort. Get the Investigative Report I asked for. Tell him the silver light wanderer sent you. Bring back the report and I'll tell you of the six stone tablets. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-06.htm new file mode 100644 index 0000000000..9064bd2176 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/2-06.htm @@ -0,0 +1,4 @@ +Magister Justin:
+Stones of commune and Tablets of Vision have a magical mutual attraction. You can use this force to locate the Tablets of Vision.
+Put simply, when you have a Stone of Commune, the location of the corresponding Tablet of Vision will appear in your mind. After you commune with it, the location of the next Stone of Commune will be revealed to you. This process will become clear to you as you move along.
+Now take the first Stone of Commune I gave you and find the Tablet of Vision south of the Tower of Insolence! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-01.htm new file mode 100644 index 0000000000..2e9decd246 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-01.htm @@ -0,0 +1,5 @@ +Magister Justin:
+You say you fought with Allector, the fallen angel?
+How could he have escaped the prison in the Ivory Tower? He must have had help. But who? It could only be ....
+I shouldn't say, I need more proof. I have the Stone of Commune, but it's unstable. You'll need the other fragment.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-02.htm new file mode 100644 index 0000000000..497b2c8d16 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-02.htm @@ -0,0 +1,3 @@ +Magister Justin:
+ Then visit the Ketra Orcs to get the missing fragment, the Divine Stone of Wisdom. If you earn the trust of Asefa, guide of dead souls, through Ketra's Messenger Wahkan and prove to her your wisdom, you'll find it.
+If you change your mind halfway, you can get it from the best Shaman of Varka Silenos, Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk. Just bring it to me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-03.htm new file mode 100644 index 0000000000..a481d82d36 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-03.htm @@ -0,0 +1,3 @@ +Magister Justin:
+ Then visit the Varka Silenos to get the missing fragment, the Divine Stone of Wisdom. If you earn the Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk and prove to her your wisdom, you'll find it.
+If you change your mind halfway, you can get it from the best Shaman of Ketra Orcs, Soul Guide Asefa through through Ketra's Messenger Wahkan, just bring it to me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-04.htm new file mode 100644 index 0000000000..a7a5ea556a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-04.htm @@ -0,0 +1,3 @@ +Magister Justin:
+Go to the Ketra Orcs or the Varka Silenos to get the missing fragment, the Divine Stone of Wisdom
+. They both know the mysterious knowledge of the stone, but not its exact use. They'll give it to the wisest of the tribe. So, it is presented as some kind of mark for ‘the wisest man of the tribe.' If you earn the trust of Asefa, guide of dead souls, through Ketra's Messenger Wahkan and prove to her your wisdom, you'll find it. Or, you can get the Divine Stone of Wisdom from Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk by gaining his trust and proving your wisdom. Either way is fine. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-05.htm new file mode 100644 index 0000000000..82e1ab5177 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-05.htm @@ -0,0 +1,5 @@ +Magister Justin:
+The Divine Stone of Wisdom! Good work.
+My hunch was right. The only person who could have freed Allector is indeed the Grand Magister of the Ivory Tower! Never let your guard down, there are powerful forces trying to stop you!
+Shall I combine the stones now?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-06.htm new file mode 100644 index 0000000000..29fa58b424 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-06.htm @@ -0,0 +1,2 @@ +Magister Justin:
+Take the Stone of Commune I gave you and go to the next Tablet of Vision on the north side of the Varka Silenos barracks. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-07.htm new file mode 100644 index 0000000000..f6927efa9c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-07.htm @@ -0,0 +1,6 @@ +Magister Justin:
+Go to the Ketra Orcs or the Varka Silenos to get the Divine Stone of Wisdom, a fragment of the Stone of Commune.
+They know of its powerful magic, but not its exact use. They'll reward the wisest of their tribe with it. You'll need to earn the trust of Asefa, chief shaman of the Ketra Orcs, or Udan Mardui, chief shaman of the Varka Silenos.
+Which side will you choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-08.htm new file mode 100644 index 0000000000..7bbc973929 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/3-08.htm @@ -0,0 +1,2 @@ +Magister Justin:
+ Now it's a complete Stone of Commune. Go find the Tablet of Vision on the north of the Varka Silenos Barracks. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-01.htm new file mode 100644 index 0000000000..6f5778f1c2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-01.htm @@ -0,0 +1,3 @@ +Truth Scholar Devianne:
+Help or I'll lose him!
+He's the source of your troubles! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-010.htm new file mode 100644 index 0000000000..e6a3d6ca80 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-010.htm @@ -0,0 +1,4 @@ +Truth Scholar Devianne:
+I missed getting the whole truth, but at least I got the Stone of Commune! I don't know if she was trying to prevent your communing, hide the stone or what. She didn't put up much of a fight though.
+At least you have finished! Now I must go find Valleria.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-011.htm new file mode 100644 index 0000000000..70757b6fdb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-011.htm @@ -0,0 +1,3 @@ +Truth Scholar Devianne:
+I missed getting the whole truth, but at least I got the Stone of Commune! I don't know if she was trying to prevent your communing, hide the stone or what. She didn't put up much of a fight though.
+At least you have finished! Now I must go find Valleria. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-02.htm new file mode 100644 index 0000000000..92e5073995 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-02.htm @@ -0,0 +1,2 @@ +Truth Scholar Devianne:
+Help, I'm about to lose him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-03.htm new file mode 100644 index 0000000000..3437cf57cf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-03.htm @@ -0,0 +1,2 @@ +Truth Scholar Devianne:
+Rats, missed again. I must keep after him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-04.htm new file mode 100644 index 0000000000..6f5778f1c2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-04.htm @@ -0,0 +1,3 @@ +Truth Scholar Devianne:
+Help or I'll lose him!
+He's the source of your troubles! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-05.htm new file mode 100644 index 0000000000..820b1f56c0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-05.htm @@ -0,0 +1,2 @@ +Truth Scholar Devianne:
+I'm about to lose him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-06.htm new file mode 100644 index 0000000000..c41a036f56 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-06.htm @@ -0,0 +1,5 @@ +Truth Scholar Devianne:
+Let me properly introduce myself. I'm Devianne.
+Someone is getting in the way of you becoming an Archmage, so I was investigating disguised as Magister Justin of Goddard Castle Town. The real Justin may be back by now.
+I was right! Grand Magister Valleria was behind it! You showed up just as I found out the truth. You saw her in disguise.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-07.htm new file mode 100644 index 0000000000..d95cdcc5ec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-07.htm @@ -0,0 +1,5 @@ +Truth Scholar Devianne:
+Let me properly introduce myself. I'm Devianne.
+Something is getting in the way of you becoming an Archmage, so I was investigating disguised as Magister Justin of Goddard Castle Town. The real Justin may be back by now.
+I was right! Grand Magister Valleria was behind it! You showed up just as I found out the truth. You saw her in disguise.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-08.htm new file mode 100644 index 0000000000..6d5e002a39 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-08.htm @@ -0,0 +1,2 @@ +Truth Scholar Devianne:
+This won't be easy. Commune with the Tablet of Vision using the stone I gave you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-09.htm new file mode 100644 index 0000000000..9de00433c1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/4-09.htm @@ -0,0 +1,2 @@ +Truth Scholar Devianne:
+I'll chase Valleria to find the truth. Commune with the Tablet of Vision using the stone I gave you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/5-01.htm new file mode 100644 index 0000000000..f78e59ee71 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision is engraved with many incomprehensible hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/5-02.htm new file mode 100644 index 0000000000..3e48905234 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if she were quietly laughing at you...
+You sense the location of the next Stone of Commune...
+It is being held by the Guardians of Forbidden Knowledge beside the Tablet of Vision in the northeastern Valley of the Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/5-03.htm new file mode 100644 index 0000000000..4d47d3e32d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet is futile. You must go and find the next Stone of Commune! You sense that the next stone is being held by the Guardians of Forbidden Knowledge beside the Tablet of Vision in the northeastern Valley of the Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/6-01.htm new file mode 100644 index 0000000000..0006fbd782 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have a certain Stone of Commune to access this Tablet of Vision. You get a feeling that one of Guardians of Forbidden Knowledge protecting this tablet has the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/6-02.htm new file mode 100644 index 0000000000..a4916dff07 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision is engraved with many incomprehensible hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/6-03.htm new file mode 100644 index 0000000000..0dc9214403 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if she were quietly laughing at you...
+You sense the location of the next Stone of Commune...
+It is being held by a suspicious person beside the Tablet of Vision along the Wall of the Argos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/6-04.htm new file mode 100644 index 0000000000..2ff725100f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet is futile. You must go and find the next Stone of Commune! You sense the location of the next Stone of Commune. It is being held by a suspicious person beside the Tablet of Vision along the Wall of the Argos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-01.htm new file mode 100644 index 0000000000..2558eaa5b5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+I feel the Stone of Commune nearby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-02.htm new file mode 100644 index 0000000000..e218a3e15c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The suspicious person must be Allector! Therefore he must have the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-03.htm new file mode 100644 index 0000000000..34a1bf359f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The time has come to get the first Stone of Commune. Destroy Allector and take his stone. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-04.htm new file mode 100644 index 0000000000..eb467e2abb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone nearby must have the Stone of Commune! It's too noisy now. Try again later when things quiet down a bit. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-05.htm new file mode 100644 index 0000000000..5e50729d8a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision is engraved with many incomprehensible hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-06.htm new file mode 100644 index 0000000000..6b0403ff27 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-06.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A vision appears of a woman in blue.
+The location of the next Stone of Commune suddenly becomes clear! Magister Justin in Goddard Castle Town has it! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-07.htm new file mode 100644 index 0000000000..87dcc16c3c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. You must find the next Stone of Commune! You sense that Magister Justin of Goddard Castle Town has it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/8-01.htm new file mode 100644 index 0000000000..68beffea28 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is covered with indecipherable hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/8-02.htm new file mode 100644 index 0000000000..db6e6c0f05 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/8-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear a man's voice lingering in the air...
+Suddenly, the location of the next Stone of Commune is clear!
+Magister Justin of Goddard Castle Town has it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/8-03.htm new file mode 100644 index 0000000000..2f8c2299e8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Get the next Stone of Commune from Magister Justin of Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/9-01.htm new file mode 100644 index 0000000000..f49d434d2c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/9-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is useless without a Stone of Commune. Get one from the Archon of Halisha. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/9-02.htm new file mode 100644 index 0000000000..5aadd47e5a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is covered with indecipherable hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/9-03.htm new file mode 100644 index 0000000000..af7dc2b37c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/9-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+A sharp blast of knowlege courses through your cranium! A vision appears of a black knight!
+You know where the next Stone of Commune is!
+A suspicious person has it, near the next Tablet of Vision in the southern Forest of the Dead. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/9-04.htm new file mode 100644 index 0000000000..a90bfe4b6f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/9-04.htm @@ -0,0 +1,2 @@ +Table of Vision:
+I can no longer commune with this Tablet. Let's find the next Stone of Commune. l feel someone who looks suspicious around the Tablet of Vision in the south of the Forest of the Dead has it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/Q00088_SagaOfTheArchmage.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/Q00088_SagaOfTheArchmage.java new file mode 100644 index 0000000000..39954024a1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00088_SagaOfTheArchmage/Q00088_SagaOfTheArchmage.java @@ -0,0 +1,105 @@ +/* + * 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.Q00088_SagaOfTheArchmage; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Archmage (88) + * @author Emperorc + */ +public class Q00088_SagaOfTheArchmage extends AbstractSagaQuest +{ + public Q00088_SagaOfTheArchmage() + { + super(88); + _npc = new int[] + { + 30176, + 31627, + 31282, + 31282, + 31590, + 31646, + 31647, + 31650, + 31654, + 31655, + 31657, + 31282 + }; + Items = new int[] + { + 7080, + 7529, + 7081, + 7503, + 7286, + 7317, + 7348, + 7379, + 7410, + 7441, + 7082, + 0 + }; + Mob = new int[] + { + 27250, + 27237, + 27254 + }; + classid = new int[] + { + 94 + }; + prevclass = new int[] + { + 0x0c + }; + npcSpawnLocations = new Location[] + { + new Location(191046, -40640, -3042), + new Location(46066, -36396, -1685), + new Location(46087, -36372, -1685) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-01.htm new file mode 100644 index 0000000000..8445b19fb3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-01.htm @@ -0,0 +1,4 @@ +Grand Magister Arkenias:
+So, you want to become a Mystic Muse? You've chosen a noble path, my child!
+You'll undergo a process that transforms your Elven mind to one that approaches the realm of the gods! You'll receive the power sealed by the gods in the past that prevented Elves from developing their full potential!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-010.htm new file mode 100644 index 0000000000..ce5e0fbff8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-010.htm @@ -0,0 +1,3 @@ +Grand Magister Arkenias:
+You can't transfer to another class yet. Improve your skills and return.
+(Only a character of level 76 or above can transfer to the Mystic Muse class. Don't abandon the quest until your class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-02.htm new file mode 100644 index 0000000000..6a8d1fc80c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-02.htm @@ -0,0 +1,3 @@ +Grand Magister Arkenias:
+So you want to become a Mystic Muse, eh? That path is too perilous for you to walk at this time. Get some more training, and come back and see me again.
+(Only a character of level 76 or above and of the Spellsinger class may undertake this quest.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-03.htm new file mode 100644 index 0000000000..3739682c9d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-03.htm @@ -0,0 +1,4 @@ +Grand Magister Arkenias:
+I didn't scare you off, huh? Well, I won't try to stop you.
+Just one more thing... The Tablet of Vision can't be read alone. Only by using the Stone of Commune can you decipher it. The Stone of Commune acts as a medium, and you absorb the information directly into your body! This is known as communing with the stone tablet. At one time Stones of Commune were quite rare, but they've been turning up in lots of places lately! I fear that there are unseen, foreign hands at work here...
+You should go and talk to Magister Alminas in Goddard Castle Town. He'll know best what you should do next... Take a copy of the guild bulletin with you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-04.htm new file mode 100644 index 0000000000..564a190be2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-04.htm @@ -0,0 +1,3 @@ +Grand Magister Arkenias:
+To become a Mystic Muse you must find six Tablets of Vision. The tablets are scattered throughout the world. You must absorb the power from the six stone tablets into your body!
+Go and speak with Magister Alminas in Goddard Castle Town. He'll know what you should do next. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-05.htm new file mode 100644 index 0000000000..604f28b80b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-05.htm @@ -0,0 +1,4 @@ +Grand Magister Arkenias:
+The gods have sealed the power in several parts of the world. The Tablet of Vision is the form in which the power is sealed. You must absorb into your body all the information contained in the six stone Tablets of Vision throughout the world to obtain the power. Absorb the power from all six stone tablets, then come back to me... I'll transform you into a Mystic Muse... But, I must warn you... You've chosen a difficult path!
+Are you sure you wish to become a Mystic Muse?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-06.htm new file mode 100644 index 0000000000..4bdc4a4575 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-06.htm @@ -0,0 +1,7 @@ +Grand Magister Arkenias:
+You've obtained the power of all the stone tablets! Good job!
+
+What? Why are you looking at me like that? You want the truth, eh? Very well. What did Feyshar tell you? Oh well, no use crying over spilt milk...
+Since I'm an Elf, I've always dreamed of being a top level wizard! You wouldn't believe what I've had to do just to get where I am now! But this isn't enough! I meant to stay on top forever! I couldn't allow anyone under me to grow stronger! That's why I tried to stop your class transfer...
+But you were tougher than I anticipated! The Fallen Angel Allector tried to stop you but failed. At the last stone tablet, I tried to stop you myself, but that busybody Feyshar interfered... I could've taken on both of you lightweights!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-07.htm new file mode 100644 index 0000000000..ac914bbd25 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-07.htm @@ -0,0 +1,3 @@ +Grand Magister Arkenias:
+While fighting you, I came to a realization! I was wrong... I was just trying to hold onto my position. I'd forgotten what it's like to compete with powerful opponents, all determined to win first place! I realized that you could possibly be my equal! If I continued to fight young up-and-comers like you, I could maintain my strength! That's why I withdrew.
+Forgive me. And, thank you! Congratulations! You're officially a Mystic Muse! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-08.htm new file mode 100644 index 0000000000..fbd2c4f524 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-08.htm @@ -0,0 +1,4 @@ +Grand Magister Arkenias:
+While fighting you, I came to a realization! I was wrong... I was just trying to hold onto my position! I forgot what it was like to compete with many powerful opponents, all determined to win first place! I realized that, with practice, you could possibly be my equal! If I continued to fight young up-and-comers like you, I could maintain my strength! That's why I withdrew.
+Forgive me, and thank you! However I can't let you transfer classes yet. Improve your abilities and come back.
+(Only a character of level 76 or above can transfer to the Mystic Muse class. Don't abandon the quest until your class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-09.htm new file mode 100644 index 0000000000..92140c7a1b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/0-09.htm @@ -0,0 +1,2 @@ +Grand Magister Arkenias:
+Thank you for your hard work. Congratulations! You're now a Mystic Muse! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-01.htm new file mode 100644 index 0000000000..314e91538d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-01.htm @@ -0,0 +1,4 @@ +Information Broker Mist:
+I know the silver light wanderer is pretending to be Magister Alminas of Goddard Castle Town. I have the report he requested.
+This investigation was difficult, so I can't give it for free!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-02.htm new file mode 100644 index 0000000000..65dee24822 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-02.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+Bring me some Ice Crystals and I'll give you the report I prepared for the Truth Scholar.
+You should be able to get some from Chef Jeremy if you help him prepare for the upcoming cooking contest. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-03.htm new file mode 100644 index 0000000000..7cfc1752f0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-03.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+You brought the ice crystal!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-04.htm new file mode 100644 index 0000000000..98defe3f10 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-04.htm @@ -0,0 +1,2 @@ +Information Broker Mist:
+Give the Investigative Report to the silver light wanderer who is pretending to be Magister Alminas in Goddard Castle Town! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-05.htm new file mode 100644 index 0000000000..a119757da5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-05.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+ I've heard that you can find Ice Crystals in this hot springs area. I've been suffering from chronic back pain lately, and I'd like to try to make an ice pack with them.
+ Help Chef Jeremy prepare for the upcoming cooking competition and he'll give you some. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-06.htm new file mode 100644 index 0000000000..c5c863f8a3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/1-06.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+Ah! So nice and cool. Now my back ache is gone!
+Give this report to the silver light wanderer. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-01.htm new file mode 100644 index 0000000000..fba1174eb8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Someone nearby has the Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-02.htm new file mode 100644 index 0000000000..a801dcc68c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+A vision appears of two men... The man being pursued has the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-03.htm new file mode 100644 index 0000000000..e75110903d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Listen to Feyshar first. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-04.htm new file mode 100644 index 0000000000..8da1c3fd6f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone nearby has the Stone of Commune, but it's too noisy right now. Wait until it quiets down. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-05.htm new file mode 100644 index 0000000000..ecd9182f8e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is covered with indecipherable hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-06.htm new file mode 100644 index 0000000000..c0b9addcc8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-06.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+Thoughts beyond understanding race through your mind. Laughter floats on the breeze...
+A man announces the birth of another Hero.
+The woman in blue disagrees... This is the last time she'll see the child!
+
+Communion with the six Tablets of Vision is complete. Return to Grand Magister Arkenias. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-07.htm new file mode 100644 index 0000000000..37a65cacaa --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Communion with the six Tablets of Vision is complete. Now return to Grand Magister Arkenias. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/11-01.htm new file mode 100644 index 0000000000..993ed568dd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/11-01.htm @@ -0,0 +1,4 @@ +Magister Alminas:
+Now I must continue my investigation about who is trying to stop you from becoming a Mystic Muse.
+I'll need this stone myself, but I can tell you how to get your own.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/11-02.htm new file mode 100644 index 0000000000..cd266d3f5a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/11-02.htm @@ -0,0 +1,4 @@ +Magister Alminas:
+You can get the next stone by killing the Archon of Halisha in the Four Sepulchers. You'll need help to gain entry.
+If that proves too difficult, go to the Shrine of the Loyal and slay Halisha's minions. If you collect 700 of Halisha's Marks, the Archon will appear.
+The minions include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights, and Shrine Guards. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/11-03.htm new file mode 100644 index 0000000000..018cc56e83 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/11-03.htm @@ -0,0 +1,4 @@ +Magister Alminas:
+You can get the next stone by killing the Archon of Halisha in the Four Sepulchers. You'll need help to gain entry.
+If that proves too difficult, go to the Shrine of the Loyal and slay Halisha's minions. If you collect 700 Halisha's Marks, the Archon will appear.
+The minions include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights, and Shrine Guards. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-01.htm new file mode 100644 index 0000000000..955de8a66e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-01.htm @@ -0,0 +1,3 @@ +Magister Alminas:
+Arkenias didn't know that I'm conducting an investigation under the guise of Alminas. In a letter I intercepted Arkenias wanted Alminas to discourage you from becoming a Mystic Muse! Don't worry, since I'm not bound to him I can still tell you what you need to do to become one.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-02.htm new file mode 100644 index 0000000000..9e65ec2a35 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-02.htm @@ -0,0 +1,2 @@ +Magister Alminas:
+Visit Information Broker Mist at the hot springs resort and pick up the Investigative Report I requested. Tell him the silver light wanderer sent you. Bring the report and I'll tell you how to get the power of the six stone tablets. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-03.htm new file mode 100644 index 0000000000..8688f37124 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-03.htm @@ -0,0 +1,5 @@ +Magister Alminas:
+Thanks for the report. This merits further investigation.
+To become a Mystic Muse, you'll need a Stone of Commune for each of the six stone tablets. Use the stones to commune with the tablets and your path will become clear.
+Here's the first Stone of Commune, take it to the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-04.htm new file mode 100644 index 0000000000..19adc32b68 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-04.htm @@ -0,0 +1,2 @@ +Magister Alminas:
+Commune with the Tablet of Vision south of the Tower of Insolence with the Stone of Commune I gave you. The path will then become clear. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-05.htm new file mode 100644 index 0000000000..45d8ee3e38 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-05.htm @@ -0,0 +1,3 @@ +Magister Alminas:
+I'll tell you in due time.
+Meet with Information Broker Mist at the hot springs resort. Get the Investigative Report I asked for. Tell him the silver light wanderer sent you. Bring back the report and I'll tell you of the six stone tablets. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-06.htm new file mode 100644 index 0000000000..89370af47e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/2-06.htm @@ -0,0 +1,4 @@ +Magister Alminas:
+Stones of commune and Tablets of Vision have a magical mutual attraction. You can use this force to locate the Tablets of Vision.
+ Put simply, when you have a Stone of Commune, the location of the corresponding Tablet of Vision will appear in your mind. Once you find the next stone, you will see where to find the next tablet. After you commune with it, the location of the next Stone of Commune will be revealed to you. This process will become clearer to you as you move along.
+Now, take the first Stone of Commune I gave you and find the Tablet of Vision south of the Tower of Insolence! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-01.htm new file mode 100644 index 0000000000..9d98315914 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-01.htm @@ -0,0 +1,5 @@ +Magister Alminas:
+You say you fought with Allector, the fallen angel?
+How could he have escaped the prison in the Ivory Tower? He must have had help. But who? It could only be ....
+I shouldn't say, I need more proof. I have the Stone of Commune, but it's unstable. You'll need the other fragment.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-02.htm new file mode 100644 index 0000000000..15679fc5c4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-02.htm @@ -0,0 +1,3 @@ +Magister Alminas:
+ Then visit the Ketra Orcs to get the missing fragment, the Divine Stone of Wisdom. If you earn the trust of Asefa, guide of dead souls, through Ketra's Messenger Wahkan and prove to her your wisdom, you'll find it.
+If you change your mind halfway, you can get it from the best Shaman of Varka Silenos, Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk., just bring it to me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-03.htm new file mode 100644 index 0000000000..998686490f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-03.htm @@ -0,0 +1,3 @@ +Magister Alminas:
+ Then visit the Varka Silenos to get the missing fragment, the Divine Stone of Wisdom. If you earn the Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk and prove to her your wisdom, you'll find it.
+If you change your mind halfway, you can get it from the best Shaman of Ketra Orcs, Soul Guide Asefa through through Ketra's Messenger Wahkan, just bring it to me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-04.htm new file mode 100644 index 0000000000..3a5557bc59 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-04.htm @@ -0,0 +1,3 @@ +Magister Alminas:
+Go to the Ketra Orcs or the Varka Silenos to get the missing fragment, the Divine Stone of Wisdom
+. They both know the mysterious knowledge of the stone, but not its exact use. They'll give it to the wisest of the tribe. So, it is presented as some kind of mark for ‘the wisest man of the tribe.' If you earn the trust of Asefa, guide of dead souls, through Ketra's Messenger Wahkan and prove to her your wisdom, you'll find it. Or, you can get the Divine Stone of Wisdom from Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk by gaining his trust and proving your wisdom. Either way is fine. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-05.htm new file mode 100644 index 0000000000..e7716e003a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-05.htm @@ -0,0 +1,5 @@ +Magister Alminas:
+The Divine Stone of Wisdom! Good work.
+My hunch was right. The only person who could have freed Allector is indeed the Grand Magister of the Ivory Tower! Never let your guard down, there are powerful forces trying to stop you!
+Shall I combine the stones now?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-06.htm new file mode 100644 index 0000000000..cf3462a222 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-06.htm @@ -0,0 +1,2 @@ +Magister Alminas:
+Take the Stone of Commune I gave you and find the Tablet of Vision on the north side of the Varka Silenos barracks. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-07.htm new file mode 100644 index 0000000000..0fc2aaa861 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-07.htm @@ -0,0 +1,6 @@ +Magister Alminas:
+Go to the Ketra Orcs or the Varka Silenos to get the Divine Stone of Wisdom, a fragment of the Stone of Commune.
+They know of its powerful magic, but not its exact use. They'll reward the wisest of their tribe with it. You'll need to earn the trust of Asefa, chief shaman of the Ketra Orcs, or Udan Mardui, chief shaman of the Varka Silenos.
+Which side will you choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-08.htm new file mode 100644 index 0000000000..09d0950dc6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/3-08.htm @@ -0,0 +1,2 @@ +Magister Alminas:
+The Stone of Commune is now complete. Find the Tablet of Vision on the north side of the Varka Silenos barracks. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-01.htm new file mode 100644 index 0000000000..bc39d1b180 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-01.htm @@ -0,0 +1,3 @@ +Silver Feyshar:
+Damn it. I'll miss him like this. Help me!
+He's the source of your trouble. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-010.htm new file mode 100644 index 0000000000..d1809c8037 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-010.htm @@ -0,0 +1,5 @@ +Silver Feyshar:
+I missed Arkenias, but I robbed him of the Stone of Commune! Either he was hiding it to try to interrupt, or he's guarding the tablet to prevent you communing with it.
+He didn't put up much of a fight, he could easily have handled us both.
+This should finish your class transfer. See you later, I must follow Arkenias to find out the truth.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-011.htm new file mode 100644 index 0000000000..9fa0b68156 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-011.htm @@ -0,0 +1,4 @@ +Silver Feyshar:
+I missed Arkenias, but I robbed him of the Stone of Commune! Either he was hiding it to try to interrupt, or he's guarding the tablet to prevent you communing with it.
+He didn't put up much of a fight, he could easily have handled us both.
+This should finish your class transfer. See you later, I must follow Arkenias to find out the truth. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-02.htm new file mode 100644 index 0000000000..d815974476 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-02.htm @@ -0,0 +1,2 @@ +Silver Feyshar:
+Damn it! I'll miss him like this. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-03.htm new file mode 100644 index 0000000000..8bd75b0a17 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-03.htm @@ -0,0 +1,2 @@ +Silver Feyshar:
+Missed again! I must continue the chase. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-04.htm new file mode 100644 index 0000000000..1fdb8067e7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-04.htm @@ -0,0 +1,3 @@ +Silver Feyshar:
+Damn it! I'll miss him like this. Help me!
+He's the source of your trouble. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-05.htm new file mode 100644 index 0000000000..d815974476 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-05.htm @@ -0,0 +1,2 @@ +Silver Feyshar:
+Damn it! I'll miss him like this. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-06.htm new file mode 100644 index 0000000000..e56a4cc733 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-06.htm @@ -0,0 +1,4 @@ +Silver Feyshar:
+Let me introduce myself. I'm Feyshar, not Alminas as you may remember me. Somebody is hindering the transfer to Mystic Muse, so I was investigating in disguise. The real Alminas is probably back to Goddard Castle Town by now.
+As I suspected, Grand Magister Arkenias is behind it! You showed up while I was finding out the truth. You saw him in disguise before.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-07.htm new file mode 100644 index 0000000000..13db169d22 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-07.htm @@ -0,0 +1,4 @@ +Silver Feyshar:
+Let me introduce myself. I'm Feyshar, not Alminas as you may remember me. Somebody is hindering the transfer to Mystic Muse, so I was investigating in disguise. The real Alminas is probably back to Goddard Castle Town by now.
+As I suspected, Grand Magister Arkenias is behind it! You showed up while I was finding out the truth. You saw him in disguise before.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-08.htm new file mode 100644 index 0000000000..78210983cc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-08.htm @@ -0,0 +1,2 @@ +Silver Feyshar:
+Damn it! He won't talk easily. Commune with the Tablet of Vision using the stone I gave you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-09.htm new file mode 100644 index 0000000000..c17387d512 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/4-09.htm @@ -0,0 +1,2 @@ +Silver Feyshar:
+I'll follow him to find the truth. Commune with the Tablet of Vision using the stone I gave you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/5-01.htm new file mode 100644 index 0000000000..2a9074b4d4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision is engraved with many incomprehensible hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/5-02.htm new file mode 100644 index 0000000000..7b91eb0d63 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if she were quietly laughing at you...
+You sense the location of the next Stone of Commune...
+It is being held by the Guardians of Forbidden Knowledge beside the Tablet of Vision in the southern Valley of the Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/5-03.htm new file mode 100644 index 0000000000..177cfe37b5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet is futile. You must go and find the next Stone of Commune! You sense that the next stone is being held by the Guardians of Forbidden Knowledge beside the Tablet of Vision in the southern Valley of the Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/6-01.htm new file mode 100644 index 0000000000..67dfbe9074 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have a certain Stone of Commune to access this Tablet of Vision. You sense that one of the Guardians of Forbidden Knowledge protecting this tablet has the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/6-02.htm new file mode 100644 index 0000000000..bdac948fb6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision is engraved with many incomprehensible hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/6-03.htm new file mode 100644 index 0000000000..592bcb47e4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if she were quietly laughing at you...
+You sense the location of the next Stone of Commune...
+ It is being held by a suspicious person beside the Tablet of Vision in the southern station of the Varca Silenos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/6-04.htm new file mode 100644 index 0000000000..816368de8d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet is futile. You must go and find the next Stone of Commune! You sense that the next stone is being held by a suspicious person beside the Tablet of Vision in the southern station of the Varca Silenos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-01.htm new file mode 100644 index 0000000000..144ce8bc23 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+I feel the Stone of Commune nearby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-02.htm new file mode 100644 index 0000000000..73ca7b5d40 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Fallen Angel Allector? He must be the suspicious one that I felt before. I sense that he has the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-03.htm new file mode 100644 index 0000000000..34a1bf359f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The time has come to get the first Stone of Commune. Destroy Allector and take his stone. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-04.htm new file mode 100644 index 0000000000..eb467e2abb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone nearby must have the Stone of Commune! It's too noisy now. Try again later when things quiet down a bit. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-05.htm new file mode 100644 index 0000000000..3a96df0a4d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision is engraved with many incomprehensible hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-06.htm new file mode 100644 index 0000000000..5bf4758c81 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-06.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A vision appears of a woman in blue.
+And suddenly, the location of the next Stone of Commune becomes clear!
+Magister Alminas of Goddard Castle Town has it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-07.htm new file mode 100644 index 0000000000..c94f0717b0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/7-07.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet is futile. You must find the next Stone of Commune!
+ Magister Alminas of Goddard Castle Town has it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/8-01.htm new file mode 100644 index 0000000000..218a8e5863 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is engraved with incomprehensible hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/8-02.htm new file mode 100644 index 0000000000..795b8f6def --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/8-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear a man's voice lingering in the air...
+Suddenly, the location of the next Stone of Commune is clear!
+Magister Alminas of Goddard Castle Town has it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/8-03.htm new file mode 100644 index 0000000000..1010c3c50f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/8-03.htm @@ -0,0 +1,2 @@ +Table of Vision:
+Further communion with this tablet would be futile. Get the next Stone of Commune from Magister Alminas of Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/9-01.htm new file mode 100644 index 0000000000..b2df930f81 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/9-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The Tablet of Vision is useless without a Stone of Commune. Kill the Archon of Halisha and take it from him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/9-02.htm new file mode 100644 index 0000000000..7e83fc7785 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is covered with indecipherable hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/9-03.htm new file mode 100644 index 0000000000..4c42238178 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/9-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
A sharp blast of knowlege courses through your cranium! A vision appears... of a black knight!
The location of the next Stone of Commune flashes into my mind! The next Stone of Commune...
There is a suspicious figure near the next Tablet of Vision in the southeast of the Hunters' Town. It seems the figure has the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/9-04.htm new file mode 100644 index 0000000000..3c969ad0f4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/9-04.htm @@ -0,0 +1 @@ +Tablet of Vision:
Communing with this tablet is completed. It's time to find the next Stone of Commune. Near the Tablet of Vision in the southeast of the Hunters' Town, there is a suspicious figure apparently having the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/Q00089_SagaOfTheMysticMuse.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/Q00089_SagaOfTheMysticMuse.java new file mode 100644 index 0000000000..3e537c895b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00089_SagaOfTheMysticMuse/Q00089_SagaOfTheMysticMuse.java @@ -0,0 +1,105 @@ +/* + * 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.Q00089_SagaOfTheMysticMuse; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Mystic Muse (89) + * @author Emperorc + */ +public class Q00089_SagaOfTheMysticMuse extends AbstractSagaQuest +{ + public Q00089_SagaOfTheMysticMuse() + { + super(89); + _npc = new int[] + { + 30174, + 31627, + 31283, + 31283, + 31643, + 31646, + 31648, + 31651, + 31654, + 31655, + 31658, + 31283 + }; + Items = new int[] + { + 7080, + 7530, + 7081, + 7504, + 7287, + 7318, + 7349, + 7380, + 7411, + 7442, + 7083, + 0 + }; + Mob = new int[] + { + 27251, + 27238, + 27255 + }; + classid = new int[] + { + 103 + }; + prevclass = new int[] + { + 0x1b + }; + npcSpawnLocations = new Location[] + { + new Location(119518, -28658, -3811), + new Location(181227, 36703, -4816), + new Location(181215, 36676, -4812) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-01.htm new file mode 100644 index 0000000000..e4c872aa87 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-01.htm @@ -0,0 +1,4 @@ +Grand Magister Fairen:
+So you want to become a Storm Screamer, eh? Well, I suppose you're ready. I'd hoped that you would at least preserve your appearance!
+When you become a Storm Screamer, you'll actually break free of this mortal coil and enter the realm of the gods! You must absorb their very power into your body! Long ago, the foolish gods sealed the power in an attempt to keep Humans from reaching their full potential.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-010.htm new file mode 100644 index 0000000000..174671e211 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-010.htm @@ -0,0 +1,3 @@ +Grand Magister Fairen:
+You're not ready to transfer classes yet. Improve your abilities and come back. I'll transfer you when you're qualified!
+(Only characters of level 76 or above may transfer to the Storm Screamer class. Don't abandon the quest until your class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-02.htm new file mode 100644 index 0000000000..679febb356 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-02.htm @@ -0,0 +1,3 @@ +Grand Magister Fairen:
+So, you want to be a Storm Screamer? You're not ready to take that path yet. Train and try again later.
+(Only characters of level 76 or above and of the Spellhowler class may undertake this quest.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-03.htm new file mode 100644 index 0000000000..2b9fdf5d3d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-03.htm @@ -0,0 +1,5 @@ +Grand Magister Fairen:
+Well, I suppose you have your mind made up, eh? Well, I won't try to stop you.
+But I'll give you one last piece of advice: the Tablet of Vision cannot be read with your eyes alone. You must use a Stone of Commune to truly comprehend its message. This is known as communing with the tablet. At one time, the Stone of Commune was very rare, but lately, it's been turning up everywhere! I think that dark forces are behind this!
+Now, go and speak with Magister Kamilen in Goddard Castle Town. He'll tell you what to do next.
+Good luck! Pick up a copy of the guild bulletin on your way out! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-04.htm new file mode 100644 index 0000000000..fe1347f791 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-04.htm @@ -0,0 +1,3 @@ +Grand Magister Fairen:
+To become a Storm Screamer, you must absorb information from the six Tablets of Vision scattered throughout the world. You must undergo a process of obtaining the power stored in the six stone tablets.
+First, speak with Magister Kamilen in Goddard Castle Town. He'll tell you what to do next. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-05.htm new file mode 100644 index 0000000000..08f33fcbf8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-05.htm @@ -0,0 +1,4 @@ +Grand Magister Fairen:
+The gods divided the power between the stones, and then buried and sealed them throughout the world. The stones are known as the Tablets of Vision. Absorb the knowledge from all six Tablets of Vision, and you'll become much stronger than you currently are. After you've done this, return to me and I'll make you a Storm Screamer! I must warn you... You've not chosen an easy path!
+Are you sure you want to become a Storm Screamer?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-06.htm new file mode 100644 index 0000000000..42b47b6e2e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-06.htm @@ -0,0 +1,7 @@ +Grand Magister Fairen:
+The news of your success has preceded you! Congratulations!
+.
+What? You want the truth? Very well. What did Medina tell you? I suppose there's no harm...
+I've seen too many of my treasured disciples, whom I raised with great care and devotion, fall in battle. I couldn't bear to have you, my most treasured disciple, step into the maelstrom! The more powerful you become, the more dangerous battles you'll be drawn into! That's why I tried to block your class transfer!
+I sent Allector to stop you... but he failed! Finally, just as you'd reached the last stone tablet, I tried to stop you myself! But that busybody Medina got in the way, and it became impossible to carry out my plan. I should've taken you both out then!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-07.htm new file mode 100644 index 0000000000..a3a2e30dbe --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-07.htm @@ -0,0 +1,4 @@ +Grand Magister Fairen:
+I realized, after suffering your awesome attack, that you'd actually become more powerful than any disciple I'd ever taught! I knew at that moment I didn't have to worry about you anymore, so I backed off!
+I realize I can't keep you in the nest forever. At some point I must let you go.
+Please forgive me! I was wrong. Your diligence is inspiring. Congratulations! You're now a Storm Screamer! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-08.htm new file mode 100644 index 0000000000..32c6dded36 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-08.htm @@ -0,0 +1,5 @@ +Grand Magister Fairen:
+I realized, after suffering your awesome attack, that you'd actually become more powerful than any disciple I'd ever taught! I knew at that moment I didn't have to worry about you anymore, so I backed off!
+I realize I can't keep you in the nest forever. At some point I must let you go.
+Please forgive me! I was wrong. Your diligence is inspiring, but you're not ready to transfer to the Storm Screamer class yet. Come back when you've improved your skills!
+(Only characters of level 76 or above may transfer to the Storm Screamer class. Don't abandon the quest until your class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-09.htm new file mode 100644 index 0000000000..d36d3ffa3d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/0-09.htm @@ -0,0 +1,2 @@ +Grand Magister Fairen:
+Thank you for your hard work. Congratulations! You're a Storm Screamer! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-01.htm new file mode 100644 index 0000000000..c0c7a60135 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-01.htm @@ -0,0 +1,4 @@ +Information Broker Mist:
+I know that M.B. is pretending to be Magister Kamilen of Goddard Castle Town. I have the report she requested.
+This investigation was difficult, so I can't give it for free!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-02.htm new file mode 100644 index 0000000000..9db6bd6c72 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-02.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+Bring me some Ice Crystals and I'll give you the report I prepared for the Truth Scholar.
+If you help Chef Jeremy prepare for the cooking contest, he'll probably give you some. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-03.htm new file mode 100644 index 0000000000..1a43c45c4b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-03.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+You've brought the ice crystal!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-04.htm new file mode 100644 index 0000000000..8c1f9fe473 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-04.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+
+Take the report to M.B., who is pretending to be Magister Kamilen in Goddard Castle Town! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-05.htm new file mode 100644 index 0000000000..0fdac57d47 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-05.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+I've heard that you can find Ice Crystals in this hot springs area. I've been suffering from chronic back pain lately, and I'd like to try to make an ice pack with them.
+ Help Chef Jeremy prepare for the upcoming cooking competition and he'll give you some. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-06.htm new file mode 100644 index 0000000000..dde9f9306a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/1-06.htm @@ -0,0 +1,3 @@ +Information Broker Mist:
+Ah! So nice and cool. Now my back ache is gone!
+Give this report to M.B.. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-01.htm new file mode 100644 index 0000000000..d51d4f2a56 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You sense the presence of the Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-02.htm new file mode 100644 index 0000000000..ba905b314a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You see a vision of two men. The one being chased has the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-03.htm new file mode 100644 index 0000000000..bc46f0e869 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Listen to Medina. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-04.htm new file mode 100644 index 0000000000..770cc1c796 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+There is too much noise to find the Stone of Commune. Come back when it's quieter. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-05.htm new file mode 100644 index 0000000000..b57c0b2f03 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is covered with indecipherable hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-06.htm new file mode 100644 index 0000000000..208b825e78 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-06.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+Thoughts beyond understanding race through your mind. You hear the sound of distant laughter.
+A man announces the birth of another Hero.
+The woman in blue disagrees... This is the last time she'll see the child!
+
+Communion with the six Tablets of Vision is complete. Return to Magister Fairen. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-07.htm new file mode 100644 index 0000000000..621fca474b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Communion with the six Tablets of Vision is complete. Now return to Grand Magister Fairen. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/11-01.htm new file mode 100644 index 0000000000..4dadb04b74 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/11-01.htm @@ -0,0 +1,4 @@ +Magister Kamilen:
+Now I must continue my investigation about who is trying to stop you from becoming a Storm Screamer.
+I'll need this stone myself, but I can tell you how to get your own.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/11-02.htm new file mode 100644 index 0000000000..01b3fd34ae --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/11-02.htm @@ -0,0 +1,4 @@ +Magister Kamilen:
+You can get the next stone by killing the Archon of Halisha in the Four Sepulchers. You'll need help to gain entry.
+If that proves too difficult, go to the Shrine of the Loyal and slay Halisha's minions. If you collect 700 Halisha's Marks, the Archon will appear.
+The minions include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights, and Shrine Guards. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/11-03.htm new file mode 100644 index 0000000000..01b3fd34ae --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/11-03.htm @@ -0,0 +1,4 @@ +Magister Kamilen:
+You can get the next stone by killing the Archon of Halisha in the Four Sepulchers. You'll need help to gain entry.
+If that proves too difficult, go to the Shrine of the Loyal and slay Halisha's minions. If you collect 700 Halisha's Marks, the Archon will appear.
+The minions include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights, and Shrine Guards. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-01.htm new file mode 100644 index 0000000000..f814400dca --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-01.htm @@ -0,0 +1,3 @@ +Magister Kamilen:
+Fairen didn't know that I'm conducting an investigation under the guise of Kamilen. In a letter I intercepted Fairen wanted Kamilen to discourage you from becoming a Storm Screamer! Don't worry, since I'm not bound to him I can still tell you what you need to do to become one.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-02.htm new file mode 100644 index 0000000000..fcb50e2623 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-02.htm @@ -0,0 +1,2 @@ +Magister Kamilen:
+Visit Information Broker Mist at the hot springs resort and pick up the Investigative Report I requested. Tell him M.B. sent you. Bring the report and I'll tell you how to get the power of the six stone tablets. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-03.htm new file mode 100644 index 0000000000..bf2dc49344 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-03.htm @@ -0,0 +1,5 @@ +Magister Kamilen:
+Thanks for the report. This merits further investigation.
+To become a Storm Screamer, you'll need a Stone of Commune for each of the six stone tablets. Use the stones to commune with the tablets and your path will become clear.
+Here's the first Stone of Commune, take it to the Tablet of Vision.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-04.htm new file mode 100644 index 0000000000..d57b78e5ba --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-04.htm @@ -0,0 +1,2 @@ +Magister Kamilen:
+Commune with the Tablet of Vision south of the Tower of Insolence using the Stone of Commune I gave you. The path will then become clear. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-05.htm new file mode 100644 index 0000000000..b26d884ec6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-05.htm @@ -0,0 +1,3 @@ +Magister Kamilen:
+I'll tell you in due time.
+Meet with Information Broker Mist at the hot springs resort. Get the Investigative Report I asked for. Tell him M.B. sent you. Bring back the report and I'll tell you of the six stone tablets. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-06.htm new file mode 100644 index 0000000000..afb47822e3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/2-06.htm @@ -0,0 +1,4 @@ +Magister Kamilen:
+Stones of commune and Tablets of Vision have a magical mutual attraction. You can use this force to locate the Tablets of Vision.
+Put simply, when you have a Stone of Commune, the location of the corresponding Tablet of Vision will appear in your mind. After you commune with it, the location of the next Stone of Commune will be revealed to you. This process will become clear to you as you move along.
+Now, take the first Stone of Commune I gave you and find the Tablet of Vision south of the Tower of Insolence! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-01.htm new file mode 100644 index 0000000000..a519f8ea20 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-01.htm @@ -0,0 +1,5 @@ +Magister Kamilen:
+You say you fought with Allector, the fallen angel?
+How could he have escaped the prison in the Ivory Tower? He must have had help. But who? It could only be ....
+I shouldn't say, I need more proof. I have the Stone of Commune, but it's unstable. You'll need the other fragment.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-02.htm new file mode 100644 index 0000000000..88fb332d73 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-02.htm @@ -0,0 +1,3 @@ +Magister Kamilen:
+ Then visit the Ketra Orcs to get the missing fragment, the Divine Stone of Wisdom. If you earn the trust of Asefa, guide of dead souls, through Ketra's Messenger Wahkan and prove to her your wisdom, you'll find it.
+If you change your mind halfway, you can get it from the best Shaman of Varka Silenos, Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk., just bring it to me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-03.htm new file mode 100644 index 0000000000..9f2571083c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-03.htm @@ -0,0 +1,3 @@ +Magister Kamilen:
+ Then visit the Varka Silenos to get the missing fragment, the Divine Stone of Wisdom. If you earn the Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk and prove to her your wisdom, you'll find it.
+If you change your mind halfway, you can get it from the best Shaman of Ketra Orcs, Soul Guide Asefa through through Ketra's Messenger Wahkan, just bring it to me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-04.htm new file mode 100644 index 0000000000..56bf253abd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-04.htm @@ -0,0 +1,3 @@ +Magister Kamilen:
+Go to the Ketra Orcs or the Varka Silenos to get the missing fragment, the Divine Stone of Wisdom
+. They both know the mysterious knowledge of the stone, but not its exact use. They'll give it to the wisest of the tribe. So, it is presented as some kind of mark for ‘the wisest man of the tribe.' If you earn the trust of Asefa, guide of dead souls, through Ketra's Messenger Wahkan and prove to her your wisdom, you'll find it. Or, you can get the Divine Stone of Wisdom from Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk by gaining his trust and proving your wisdom. Either way is fine. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-05.htm new file mode 100644 index 0000000000..23061f4425 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-05.htm @@ -0,0 +1,5 @@ +Magister Kamilen:
+The Divine Stone of Wisdom! Good work.
+My hunch was right. The only person who could have freed Allector is indeed the Grand Magister of the Ivory Tower! Never let your guard down, there are powerful forces trying to stop you!
+Shall I combine the stones now?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-06.htm new file mode 100644 index 0000000000..b3bae6ad43 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-06.htm @@ -0,0 +1,2 @@ +Magister Kamilen:
+Take the Stone of Commune I gave you and go to the next Tablet of Vision on the north side of the Varka Silenos barracks. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-07.htm new file mode 100644 index 0000000000..e79d67249f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-07.htm @@ -0,0 +1,6 @@ +Magister Kamilen:
+Go to the Ketra Orcs or the Varka Silenos to get the Divine Stone of Wisdom, a fragment of the Stone of Commune.
+They know of its powerful magic, but not its exact use. They'll reward the wisest of their tribe with it. You'll need to earn the trust of Asefa, chief shaman of the Ketra Orcs, or Udan Mardui, chief shaman of the Varka Silenos.
+Which side will you choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-08.htm new file mode 100644 index 0000000000..d0d4af8c8e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/3-08.htm @@ -0,0 +1,2 @@ +Magister Kamilen:
+Now it's a complete Stone of Commune. Find the Tablet of Vision on the north side of the Varka Silenos barracks. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-01.htm new file mode 100644 index 0000000000..6e27a76380 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-01.htm @@ -0,0 +1,2 @@ +Medina Blackheart:
+He's getting away! Help me, he's the one trying to stop you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-010.htm new file mode 100644 index 0000000000..9b73a25140 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-010.htm @@ -0,0 +1,6 @@ +Medina Blackheart:
+Fairen got away, but I got the Stone of Commune! I'm not sure if she was trying to stop you or to guard the tablet.
+Either way, she changed her mind and didn't put up a fight when she could have easily dealt with both of us. I'll have to find out from her.
+At least you've succeeded!
+Farewell! I must find her.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-011.htm new file mode 100644 index 0000000000..d9a298d5b6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-011.htm @@ -0,0 +1,5 @@ +Medina Blackheart:
+Fairen got away, but I got the Stone of Commune! I'm not sure if she was trying to stop you or to guard the tablet.
+Either way, she changed her mind and didn't put up a fight when she could have easily dealt with both of us. I'll have to find out from her.
+At least you've succeeded!
+Farewell! I must find her. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-02.htm new file mode 100644 index 0000000000..364d92d8be --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-02.htm @@ -0,0 +1,2 @@ +Medina Blackheart:
+He's getting away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-03.htm new file mode 100644 index 0000000000..53ee4a562c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-03.htm @@ -0,0 +1,2 @@ +Medina Blackheart:
+I missed him again! I'm going to track him down! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-04.htm new file mode 100644 index 0000000000..6e27a76380 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-04.htm @@ -0,0 +1,2 @@ +Medina Blackheart:
+He's getting away! Help me, he's the one trying to stop you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-05.htm new file mode 100644 index 0000000000..c146652d09 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-05.htm @@ -0,0 +1,2 @@ +Medina Blackheart:
+Don't let him get away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-06.htm new file mode 100644 index 0000000000..0ddd52e24d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-06.htm @@ -0,0 +1,4 @@ +Medina Blackheart:
+Sorry for the confusion, but I'm really Medina Blackheart. I disguised myself as Magister Kamilen of Goddard Castle Town to investigate who was trying to stop the Storm Screamers.
+It was Grand Magister Fairen! You saw her in disguise at the stone tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-07.htm new file mode 100644 index 0000000000..af685efc15 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-07.htm @@ -0,0 +1,4 @@ +Medina Blackheart:
+Sorry for the confusion, but I'm really Medina Blackheart. I disguised myself as Magister Kamilen of Goddard Castle Town to investigate who was trying to stop the Storm Screamers.
+It was Grand Magister Fairen! You saw her in disguise at the stone tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-08.htm new file mode 100644 index 0000000000..cdd509cdd8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-08.htm @@ -0,0 +1,2 @@ +Medina Blackheart:
+Go to the tablet with the stone I gave you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-09.htm new file mode 100644 index 0000000000..c4be57bc5c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/4-09.htm @@ -0,0 +1,2 @@ +Medina Blackheart:
+I have to find Fairen to get to the bottom of this. Take the stone I gave you and commune with the Tablet of Vision! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/5-01.htm new file mode 100644 index 0000000000..524a6c41ff --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision is engraved with many incomprehensible hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/5-02.htm new file mode 100644 index 0000000000..754276bf49 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if she were quietly laughing at you...
+You sense the location of the next Stone of Commune...
+It is being held by the Guardians of Forbidden Knowledge beside the Tablet of Vision in the western Valley of the Saints \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/5-03.htm new file mode 100644 index 0000000000..55bbd7f1d0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet is futile. You must go and find the next Stone of Commune! You sense that the next stone is being held by the Guardians of Forbidden Knowledge beside the Tablet of Vision in the western Valley of the Saints \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/6-01.htm new file mode 100644 index 0000000000..0006fbd782 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have a certain Stone of Commune to access this Tablet of Vision. You get a feeling that one of Guardians of Forbidden Knowledge protecting this tablet has the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/6-02.htm new file mode 100644 index 0000000000..dfb088acb0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision is engraved with many incomprehensible hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/6-03.htm new file mode 100644 index 0000000000..2c70cc790d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if she were quietly laughing at you...
+You sense the location of the next Stone of Commune...
+ It is being held by a suspicious person beside the Tablet of Vision in the northeastern outpost of the Ketra Orc. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/6-04.htm new file mode 100644 index 0000000000..9723350ec2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet is futile. You must go and find the next Stone of Commune. It is being held by a suspicious person beside the Tablet of Vision in the northeastern outpost of the Ketra Orc. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-01.htm new file mode 100644 index 0000000000..dd1d295355 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+I feel the Stone of Commune nearby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-02.htm new file mode 100644 index 0000000000..493359723e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Fallen Angel Allector? I should have known! What was I thinking? I sense that he has the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-03.htm new file mode 100644 index 0000000000..34a1bf359f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The time has come to get the first Stone of Commune. Destroy Allector and take his stone. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-04.htm new file mode 100644 index 0000000000..eb467e2abb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone nearby must have the Stone of Commune! It's too noisy now. Try again later when things quiet down a bit. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-05.htm new file mode 100644 index 0000000000..864b2ffbb5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision is engraved with many incomprehensible hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-06.htm new file mode 100644 index 0000000000..c9e31359c7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-06.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A vision appears of a woman in blue.
+The location of the next Stone of Commune suddenly becomes clear...
+Magister Kamilen of Goddard Castle Town has it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-07.htm new file mode 100644 index 0000000000..81d6ffbe24 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. You must find the next Stone of Commune! Magister Kamilen of Goddard Castle Town has it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/8-01.htm new file mode 100644 index 0000000000..45afda42d5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is covered with indecipherable hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/8-02.htm new file mode 100644 index 0000000000..553a033c24 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/8-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear a man's voice lingering in the air...
+Suddenly, the location of the next Stone of Commune is clear!
+Magister Kamilen of Goddard Castle Town has it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/8-03.htm new file mode 100644 index 0000000000..3e9f51c261 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/8-03.htm @@ -0,0 +1,2 @@ +Table of Vision:
+Further communion with this tablet would be futile. Get the next Stone of Commune from Magister Kamilen of Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/9-01.htm new file mode 100644 index 0000000000..b2df930f81 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/9-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The Tablet of Vision is useless without a Stone of Commune. Kill the Archon of Halisha and take it from him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/9-02.htm new file mode 100644 index 0000000000..c85fe481d4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is covered with indecipherable hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/9-03.htm new file mode 100644 index 0000000000..ae57d01142 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/9-03.htm @@ -0,0 +1 @@ +The Tablet of Vision:
Incomprehensible knowledge is seared painfully into your mind. A series of visions appear... Of a black knight!
The location of the next Stone of Commune is flashed into my head!
The next Stone of Commune...
There is a suspicious figure near the next Tablet of Vision in the southeast of the Hunters' Town. It seems the figure has the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/9-04.htm new file mode 100644 index 0000000000..44f73b9889 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/9-04.htm @@ -0,0 +1 @@ +Tablet of Vision:
Communing with this tablet is completed. It's time to find the next Stone of Commune. Near the Tablet of Vision in the south-east of the Hunters' Town, there is a suspicious figure apparently having the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/Q00090_SagaOfTheStormScreamer.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/Q00090_SagaOfTheStormScreamer.java new file mode 100644 index 0000000000..8e20bd32ee --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00090_SagaOfTheStormScreamer/Q00090_SagaOfTheStormScreamer.java @@ -0,0 +1,105 @@ +/* + * 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.Q00090_SagaOfTheStormScreamer; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Storm Screamer (90) + * @author Emperorc + */ +public class Q00090_SagaOfTheStormScreamer extends AbstractSagaQuest +{ + public Q00090_SagaOfTheStormScreamer() + { + super(90); + _npc = new int[] + { + 30175, + 31627, + 31287, + 31287, + 31598, + 31646, + 31649, + 31652, + 31654, + 31655, + 31659, + 31287 + }; + Items = new int[] + { + 7080, + 7531, + 7081, + 7505, + 7288, + 7319, + 7350, + 7381, + 7412, + 7443, + 7084, + 0 + }; + Mob = new int[] + { + 27252, + 27239, + 27256 + }; + classid = new int[] + { + 110 + }; + prevclass = new int[] + { + 0x28 + }; + npcSpawnLocations = new Location[] + { + new Location(161719, -92823, -1893), + new Location(124376, 82127, -2796), + new Location(124355, 82155, -2803) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-01.htm new file mode 100644 index 0000000000..e60048ce6c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-01.htm @@ -0,0 +1,4 @@ +Chief Summoner Kinsley:
+ Well..., shall we look at your records? You graduated from Einhovant's School of Magic, attained a Wizard''s license at Gludio Temple, passed the Test of the Summoner with flying colors and even received a Recommendation letter from Galatea!
+Your record is flawless! You shouldn't have any problem! I'm going to recommend you to be a candidate for Arcana Lord, the ultimate summoner! How about it? Will you take the test?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-010.htm new file mode 100644 index 0000000000..188471a5a4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-010.htm @@ -0,0 +1,3 @@ +Chief Summoner Kinsley:
+ You've gained the ultimate knowledge, but don't fully comprehend it yet. Like food, knowledge must be digested to become truth. You'll need more time.
+(Only a character of level 76 or above can transfer to the Elemental Master class. Don't abandon quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-02.htm new file mode 100644 index 0000000000..be41a1b878 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-02.htm @@ -0,0 +1,4 @@ +Chief Summoner Kinsley:
+Well..., shall we look at your records? You graduated from Einhovant's School of Magic, attained a Wizard''s license at Gludio Temple, passed the Test of the Summoner with flying colors and even received a Recommendation letter from Galatea!
+Your record is flawless! However, it's been pointed out that your research activities have been somewhat sluggish since you were promoted to Warlock. Please work harder. Eventually, I'm going to recommend you be a candidate for Arcana Lord, the ultimate summoner!
+(The quest may only be undertaken by a Warlock of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-03.htm new file mode 100644 index 0000000000..1b6073c6fd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-03.htm @@ -0,0 +1,4 @@ +Chief Summoner Kinsley:
+ Ask Sparky the Cat, Keats's servitor, where his owner is. He's probably in Goddard Castle Town. It's pretty smart for a low-level spirit, so it should be helpful to you.
+Take this report with you. It's the document Keats was working on before he disappeared. It's about the spirit protecting one of the six tablets. Please read it, you'll be facing that monster one day soon!
+You'd better get going! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-04.htm new file mode 100644 index 0000000000..bada11c4f8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-04.htm @@ -0,0 +1,2 @@ +Chief Summoner Kinsley:
+ Ask Sparky the Cat in Goddard Castle Town where his owner is. Make sure to read the report that I gave you! It will be crucial to the difficulty that you're going to face someday. Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-05.htm new file mode 100644 index 0000000000..92e77ab70a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-05.htm @@ -0,0 +1,4 @@ +Chief Summoner Kinsley:
+No book or scroll speaks of the ultimate summoning spell. That information has always been restricted to the gods, far beyond the grasp of mere Humans. The secrets are supposedly written on six ancient tablets, in the language of the gods. The gods put these tablets in very out-of-the-way places, and stationed formidable beasts nearby to guard them.
+If you can learn the secrets of the six tablets, you will pass the test to become an Arcana Lord. Two people left to take this test before you, but Belinda sent me a letter saying that she wanted to give up, and I haven't heard from Keats for some time. He's a well-known playboy, and I'm worried that he's in trouble... You must meet them first.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-06.htm new file mode 100644 index 0000000000..705dba33be --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-06.htm @@ -0,0 +1,4 @@ +Chief Summoner Kinsley:
+Welcome, pilgrim of vision! Chief Summoner Kinsley of the Ivory Tower humbly greets you. Congratulations on safely completing the pilgrimage of the six tablets and mastering the ultimate knowledge!
+ Sparky's kept me apprised of your progress. I'm glad to hear that Keats and Belinda are safe.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-07.htm new file mode 100644 index 0000000000..382f575583 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-07.htm @@ -0,0 +1,3 @@ +Chief Summoner Kinsley:
+You've obtained the sacred knowledge. I'm just a lowly magister whose sole purpose is to recognize those who have achieved knowledge. I hereby bestow upon you the title of Arcana Lord!
+Please take us to a higher level! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-08.htm new file mode 100644 index 0000000000..f95efb7ec3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-08.htm @@ -0,0 +1,3 @@ +Chief Summoner Kinsley:
+ You've obtained the sacred knowledge, but you haven't made it entirely your own. Like food, knowledge must be digested to become truth. To do so, you'll need more time.
+(Only a character of level 76 or above can transfer to the Elemental Master class. Don't abandon the quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-09.htm new file mode 100644 index 0000000000..382f575583 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/0-09.htm @@ -0,0 +1,3 @@ +Chief Summoner Kinsley:
+You've obtained the sacred knowledge. I'm just a lowly magister whose sole purpose is to recognize those who have achieved knowledge. I hereby bestow upon you the title of Arcana Lord!
+Please take us to a higher level! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-01.htm new file mode 100644 index 0000000000..8e33871487 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-01.htm @@ -0,0 +1,3 @@ +Accursed Summoner Keats:
+ Ribbit, ribbit, ribbit!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-02.htm new file mode 100644 index 0000000000..ffa8e5d9b8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-02.htm @@ -0,0 +1,2 @@ +Accursed Summoner Keats:
+ Ribbit! I've heard of a wonderful remedy called ice crystal that might lift this horrible curse! Chef Jeremy can tell you how to find some. Help me, please! I'll tell you how to become an Arcana Lord. Belinda's waiting for me but I can't propose to her looking like this! Sob... ...bit! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-03.htm new file mode 100644 index 0000000000..2183db394e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-03.htm @@ -0,0 +1,4 @@ +Accursed Summoner Keats:
+ Is it true, what I've heard about you? Ribbit! Did you actually kill Bumbalump? You're awesome!
+And this is the legendary ice crystal!? Oh, I pray it will lift this horrible curse!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-04.htm new file mode 100644 index 0000000000..8604f42611 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-04.htm @@ -0,0 +1,2 @@ +Accursed Summoner Keats:
+Take this letter to Sparky the Cat. I've told him to give you information on becoming an Arcana Lord. He's very smart! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-05.htm new file mode 100644 index 0000000000..2e7b76cca7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-05.htm @@ -0,0 +1,5 @@ +Accursed Summoner Keats:
+ Well, it's obviously no good to me in my current state... Ribbit! Oh, excuse me! How embarrassing!
+Ah, ha! You're trying to become an Arcana Lord, too, aren't you? Have you spoken with Sparky? I was following the same path, but due to my present condition, I've had to postpone my plans! Ribbit!
+ Please help me lift this curse! In return, I'll tell you how to become an Arcana Lord. I've got much more important things that I must deal with now. I must confess my love for Belinda, the lady who captured my heart, and propose to her as soon as possible, but first I must free myself from this blasted curse! Dammit!
+ I came to this hot springs area in search of Ice Crystals, a wonder drug that may lift the curse! Could you help me to find some? Help Chef Jeremy over there with his soy sauce and he'll tell you where to find ice crystals. Ribbit! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-06.htm new file mode 100644 index 0000000000..7ec1ae6123 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/1-06.htm @@ -0,0 +1,7 @@ +Accursed Summoner Keats:
+ Gulp~!
+ Hmm...
+I'm not feeling anything...
+Am I? I guess it's not working, eh?
+Another failure! Sigh! But I'll never give up! I'll just find another way!
+ Thank you so much! It didn't work, but it certainly boosted my confidence! I've decided to forget this stupid curse and go see Belinda as soon as possible! Now take this letter to Sparky the Cat. I've told him to tell you how to become an Arcana Lord. He's very smart! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-01.htm new file mode 100644 index 0000000000..f270b670ac --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You can feel the presence of the Stone of Commune near the tablet. You feel you can find out its exact location if you lay your hands on the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-02.htm new file mode 100644 index 0000000000..78030a8a48 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+As you are about to lay your hands on the tablet, you can feel something behind you. And a new creature that you haven't seen before appears... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-03.htm new file mode 100644 index 0000000000..0a6843ee77 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You need the Stone of Commune to decipher the hieroglyphs on the tablet. Speak with Sparky the Cat about the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-04.htm new file mode 100644 index 0000000000..99f1cbf806 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone is already communing with the Tablet of Vision. Please try again later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-05.htm new file mode 100644 index 0000000000..d8fa63df9e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is inscribed with indecipherable hieroglyphs. The letters emit a dim light and the tablet seems to manifest strong magical powers.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-06.htm new file mode 100644 index 0000000000..9f1284d632 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-06.htm @@ -0,0 +1,7 @@ +Tablet of Vision:
+As you hold the Stone of Commune and concentrate on it, the tablet gets surrounded by bright light. You hear several hundred people simultaneously reading scriptures, and new knowledge starts to enter your mind. On one hand, you feel like you understand everything. On the other hand, you feel that you don't understand anything.
+You hear someone's low-pitched laughter. And you hear a man's voice.
+"You now have one more successor that you like."
+A blonde woman replies.
+"No, he's like a baby who just started walking. But he will no longer need his mother's protection..."
+All images disappear, and you start to recognize the surrounding environment. You are starting to understand the knowledge you have gained from the tablet little by little. The pilgrimage of the tablet seems to have ended. Return to Ivory Tower and see Head Summoner Kinsley. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-07.htm new file mode 100644 index 0000000000..90e8c7ed4d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Nothing happens any more even when you lay your hands on the tablet. Now that you have finished your pilgrimage of the tablet, return to Ivory Tower and see Head Summoner Kinsley. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/11-01.htm new file mode 100644 index 0000000000..6e7f820c6b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/11-01.htm @@ -0,0 +1,4 @@ +Summoner Belinda:
+I've been waiting for you. While you were away I did some research! I've located the fifth Stone of Commune, but unfortunately, it's already lost its power. You must've felt this Stone of Commune. Didn't it feel weaker than before?
+ Fortunately, there are two more Stones of Commune like that one. One is in the Imperial Tomb and the other is at the Wall of Argos. If you go to the Imperial Tomb, look in the Four Sepulchers near the center. If you go to the Wall of Argos, enter the Shrine of the Loyal at the northeastern end of the wall. And...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/11-02.htm new file mode 100644 index 0000000000..123c76da99 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/11-02.htm @@ -0,0 +1,3 @@ +Summoner Belinda:
+To get the fifth Stone of Commune, you must slay the Archon of Halisha. Find that devil in the Imperial Tomb or at the Wall of Argos.
+ If you go to the Imperial Tomb, you'll find him in the Four Sepulchers. At the Shrine of the Loyal, the Archon will appear after you destroy many of his minions. His death is essential if you are to get the Stone of Commune. Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/11-03.htm new file mode 100644 index 0000000000..21c770b969 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/11-03.htm @@ -0,0 +1,4 @@ +Summoner Belinda:
+Wherever you find him, you must kill the Archon of Halisha if you are to get the fifth Stone of Commune.
+At the Imperial Tomb, you'll find him in the Four Sepulchers. At the Shrine of the Loyal, he'll appear after you destroy many of his minions.
+Please, get going! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-01.htm new file mode 100644 index 0000000000..fb104fc9fb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-01.htm @@ -0,0 +1,6 @@ +Sparky the Cat:
+Meow. Kinsley sent you here, didn't he? Are you training to become an Arcana Lord just like my master?
+But my master...my master was...
+...cursed and turned into a frog! Miss Belinda whom my master had loved for a long time put him under a curse by chanting an ancient spell! She turned him into a frog just because she couldn't accept his love~! Belinda was too cruel, Meow~!!
+Please, Meow~ Help me lift the curse, Meow!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-02.htm new file mode 100644 index 0000000000..5b10f1b91b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-02.htm @@ -0,0 +1,2 @@ +Sparky the Cat:
+Meow! My master went to the hot spring area in Northern Goddard to find a cure for the curse himself~! Please go and help my master Summoner Keats! It will be easy to find him since he's in frog form, Meow! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-03.htm new file mode 100644 index 0000000000..f8f462d11b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-03.htm @@ -0,0 +1,7 @@ +Sparky the Cat:
+Meow, even the remedy found in the hot spring region couldn't lift the curse. This is so sad, Meow! When will my master be transformed back into his regular form?
+Although the curse wasn't lifted, thank you very much for helping my master, Meow! My master has ordered me to help you! My master has already figured out a way to decipher the hieroglyphs on the 'Tablet of Vision!' My master is a great wizard who is well acknowledged by the elder statesmen of the Ivory Tower! This is not a problem for him! This is what my master told me:
+'Sparky, the gods would actually prefer it if we did not master the highest level of magic. It's because human beings too easily fall into the trap of arrogance and self-righteousness. The gods remember all too well the Baium and Beres incidents.
+That's why they divided the tablet, which was originally used by the giants to teach magic. They created six pieces and changed the letters written on the tablet to match the letters of the gods.'
+So I asked my master, Meow! 'Master, does that mean that no one can obtain the knowledge contained in the tablets?' And my master replied, 'There is actually a way.'
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-04.htm new file mode 100644 index 0000000000..af76d18053 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-04.htm @@ -0,0 +1,2 @@ +Sparky the Cat:
+Meow! The Stone of Commune you received! If you follow the Stone of Commune, you can find the first Tablet of Vision, Meow! Follow the Map if you are not sure! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-05.htm new file mode 100644 index 0000000000..5b10f1b91b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-05.htm @@ -0,0 +1,2 @@ +Sparky the Cat:
+Meow! My master went to the hot spring area in Northern Goddard to find a cure for the curse himself~! Please go and help my master Summoner Keats! It will be easy to find him since he's in frog form, Meow! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-06.htm new file mode 100644 index 0000000000..6ddb43a906 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/2-06.htm @@ -0,0 +1,6 @@ +Sparky the Cat:
+This precious stone is the answer! This is what my master said, Meow!
+'Sparky, this is a precious stone called the Stone of Commune. You can decipher the gods' letters on the Tablet of Vision if you use its power. Furthermore, you intuitively know where the tablet is hidden if you hold this stone in your hands.'
+So I asked my master, Meow! 'Master, who made this remarkable stone?' And my master said,
+'Well, I'm not sure who made it...But one thing is for certain. Someone is helping us so that we, human beings, can gain the knowledge forbidden by the gods. I don't want to miss this great opportunity as someone who is searching for knowledge.'
+Meow! I'm going to entrust you with this Stone of Commune that my master used! You have to become Arcana Lord on behalf of my master, Meow! You can find the first Tablet of Vision if you follow the Stone of Commune! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-01.htm new file mode 100644 index 0000000000..8b6896d1c5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-01.htm @@ -0,0 +1,6 @@ +Summoner Belinda:
+Sparky told me about you... you're that friend of Keats, aren't you?
+Poor Keats... He just wouldn't take no for an answer... I finally had to turn him into a frog! Did a good job of it, too! Even the Grand Magisters can't reverse the spell!
+Sigh... I tried everything, but the poor little fellow just hopped away in disgrace!
+I've got a marvelous idea! Why don't you become an Arcana Lord? Maybe then, you could reverse my wicked spell!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-02.htm new file mode 100644 index 0000000000..b8808b956a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-02.htm @@ -0,0 +1,5 @@ +Summoner Belinda:
+First, you must speak with Messenger Wahkan of the Ketra Orcs. They're hiring mercenaries, and this is a great opportunity to earn their trust!
+Soul Guide Asefa, the Chief Shaman of the Ketra Orcs, has something they call the Divine Stone of Wisdom.
+ We must get it from them! If things don't go well with Asefa, try the Varka Silenos tribe. They have one too.
+Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-03.htm new file mode 100644 index 0000000000..af20dd6b41 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-03.htm @@ -0,0 +1,4 @@ +Summoner Belinda:
+First, you must speak with Messenger Naran Ashanuk of the Varka Silenos tribe. They've been hiring mercenaries, and this is a great opportunity to earn their trust!
+Soul Guide Udan Mardui, the Chief Shaman of the Varka Silenos, has something they call the Divine Stone of Wisdom. You must get it from them!
+If things don't go well with the Varka, you should try the Ketra Orc tribe. They also have one of the stones. Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-04.htm new file mode 100644 index 0000000000..2593320983 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-04.htm @@ -0,0 +1,2 @@ +Summoner Belinda:
+To complete the fourth Stone of Commune, you must get the Divine Stone of Wisdom from the Ketra Orcs or the Varka Silenos. You'll need to gain their trust, and it won't be easy! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-05.htm new file mode 100644 index 0000000000..e9dafd9c86 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-05.htm @@ -0,0 +1,3 @@ +Summoner Belinda:
+Those idiotic barbarians worship the stone fragment, and call it their Divine Stone of Wisdom! It's actually a part of the Stone of Commune we need! If we can get it, I 'll join it with this other fragment I have to form the Stone of Commune!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-06.htm new file mode 100644 index 0000000000..c4e062cb27 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-06.htm @@ -0,0 +1,2 @@ +Summoner Belinda:
+Take the Stone of Commune to the fourth Tablet of Vision. The stone should guide you there. If not, just check out the Map! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-07.htm new file mode 100644 index 0000000000..daa2c171b6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-07.htm @@ -0,0 +1,5 @@ +Summoner Belinda:
+The power that you felt comes from this small stone. It's the part of the fourth Stone of Commune. However, you must find the other fragments and put all of the fragments together to properly operate the Stone of Commune.
+The other fragments of the Stone of Commune are worshiped by the barbarians of this area as the 'Divine Stone of Wisdom'. As far as I know, Ketra Orcs and Varka Silenos have them. You must gain their trust first and attain the stone by some means or other. But, both tribes are notorious for being rough and belligerent. I don't know which tribe you should approach...
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-08.htm new file mode 100644 index 0000000000..454c1057a7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/3-08.htm @@ -0,0 +1,3 @@ +Summoner Belinda:
+The two fragments fit together perfectly! Very well, here is the Stone of Commune! Take it to the fourth Tablet of Vision.
+ You must quickly become an Arcana Lord and help me to reverse the spell I foolishly cast on Keats! I simply must restore his humanity! Please help me! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-01.htm new file mode 100644 index 0000000000..ae654ea8c2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-01.htm @@ -0,0 +1,2 @@ +Sparky the Cat:
+Meow~ I'll lose him! Meow~ Help me! Meow~ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-010.htm new file mode 100644 index 0000000000..b619f2ce87 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-010.htm @@ -0,0 +1,4 @@ +Sparky the Cat:
+Meow~ He left this. Meow~
+I have to go to my master now and find how to remove the curse. Meow~ Then he and Belinda can get married! Meow~ I'll send you an invitation!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-011.htm new file mode 100644 index 0000000000..3e460d6eb2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-011.htm @@ -0,0 +1,2 @@ +Sparky the Cat:
+Meow~ He must have left this. Meow~ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-02.htm new file mode 100644 index 0000000000..b4c8e0c731 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-02.htm @@ -0,0 +1,2 @@ +Sparky the Cat:
+Meow~ I'll lose him! Meow~ Help me!Meow~ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-03.htm new file mode 100644 index 0000000000..6616fc590d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-03.htm @@ -0,0 +1,2 @@ +Sparky the Cat:
+I lost him! Meow~ Better luck next time. Meow~ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-04.htm new file mode 100644 index 0000000000..861c81b2fc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-04.htm @@ -0,0 +1,2 @@ +Sparky the Cat:
+I'll lose him! Meow~ Help me!Meow~ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-05.htm new file mode 100644 index 0000000000..28f736b7bc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-05.htm @@ -0,0 +1,2 @@ +Sparky the Cat:
+Meow~ I'll lose him! Meow~ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-06.htm new file mode 100644 index 0000000000..56f52da8f7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-06.htm @@ -0,0 +1,3 @@ +Sparky the Cat:
+Thanks for helping me. Meow~ That devil won't bother Belinda now! Meow~
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-07.htm new file mode 100644 index 0000000000..bdbf616819 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-07.htm @@ -0,0 +1,3 @@ +Sparky the Cat:
+Meow~!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-08.htm new file mode 100644 index 0000000000..5dbc1a1d44 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-08.htm @@ -0,0 +1,2 @@ +Sparky the Cat:
+Meow~ I'll lose him! Meow~ Don't you have the stone I gave you? Commune with the tablet! Meow~ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-09.htm new file mode 100644 index 0000000000..0f066ffbff --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/4-09.htm @@ -0,0 +1,2 @@ +Sparky the Cat:
+Don't you have the stone I gave you? Commune with the tablet! Meow~ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/5-01.htm new file mode 100644 index 0000000000..20cb893e7a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Hieroglyphics are engraved on the tablet. They emit a dim light, with a mysterious and powerful magic.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/5-02.htm new file mode 100644 index 0000000000..da6504e7ba --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge, with the voices of thousands of people reading scripture. You realize the truth of the world, yet understand nothing. One of the voices is a familiar female whisper. But it quickly disappears.
+Slowly, you begin to visualize where the next Stone of Commune is... in the valley of dust... you see a second Tablet of Vision... and a female warrior in platinum armor. She is holding the stone... She then unfolds her wings and flies away along with other female warriors......
+In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/5-03.htm new file mode 100644 index 0000000000..1adb1e56bf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/5-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You visualize the stone once again when touching the Tablet. In the yellow-brown valley... you see a female warrior with platinum wings... She is holding the stone in her hand.
+You are compelled to go forth and find the stone right now! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/6-01.htm new file mode 100644 index 0000000000..0aa237e1ce --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have the Stone of Commune to access this Tablet of Vision. The stone is being held by one of the female warriors with platinum wings. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/6-02.htm new file mode 100644 index 0000000000..b9ca17bfe7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Hieroglyphics are engraved on the tablet. They emit a dim light, with a mysterious and powerful magic.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/6-03.htm new file mode 100644 index 0000000000..da719e317a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. One of the voices is a familiar female whisper. But it quickly disappears.
+Slowly, you sense the Stone of Commune... You see the third Tablet of Vision... and an angel with two pairs of wings... She is holding the stone in her hand...
+In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/6-04.htm new file mode 100644 index 0000000000..6aed244aed --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/6-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Your visions temporarily return, you again see the third Tablet of Vision... and an angel with two pairs of wings... She is holding the stone in her hand...
+You are compelled to go forth and find the stone right now! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-01.htm new file mode 100644 index 0000000000..81730b66b7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Stone of Commune exists near the tablet. Putting your hands on the tablet will reveal the location of the stone. Put your hands on the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-02.htm new file mode 100644 index 0000000000..6dc19cd36f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+When putting your hands on the tablet, your entire body is knocked back by something powerful but invisible. Then, it begins to apprear. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-03.htm new file mode 100644 index 0000000000..0cbffec71c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
The Tablet of Vision cannot be accessed without the Stone of Commune. Defeat Shakiel and take it from him \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-04.htm new file mode 100644 index 0000000000..b6367cf048 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-04.htm @@ -0,0 +1 @@ +Tablet of Vision:
Someone else is currently communing with the Tablet of Vision. Come back later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-05.htm new file mode 100644 index 0000000000..671299bad5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Ancient, indecipherable hieroglyphs are engraved upon the tablet. They emit a mysterious, dim light. There is something magical and powerful in the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-06.htm new file mode 100644 index 0000000000..a1d442570d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-06.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+When you hold the Stone of Commune in your hands and concentrate, the Tablet of Vision is slowly surrounded by bright light. Hundreds of voices begin pounding in your head... they seem to be reading some form of scripture, a scripture that reveals a great and horrible truth. Ah, the fundamental truth of all things is revealed! But wait, I can't understand any of it! Amid the voices, you recognize a whisper of a woman that you think you've heard before, but it fades quickly.
+ You begin to understand where the next Stone of Commune is... a temple in Goddard Castle Town... an Elf lady with a petite body... she must be Summoner Belinda that Keats told you about. You feel the power of the Stone of Commune from her.
+ The images fade and the light turns to darkness.. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-07.htm new file mode 100644 index 0000000000..95ea76a413 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Putting your hands on the tablet, the location of the Stone of Commune again becomes clear. Get the next Stone of Commune from Summoner Belinda in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/8-01.htm new file mode 100644 index 0000000000..75a7a52da4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Ancient, indecipherable hieroglyphs are engraved upon the tablet. They emit a mysterious, dim light. There is something magical and powerful in the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/8-02.htm new file mode 100644 index 0000000000..f5615e6c29 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/8-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+When you hold the Stone of Commune in your hands and concentrate, the Tablet of Vision is slowly surrounded by bright light. Hundreds of voices begin pounding in your head... they seem to be reading some form of scripture, a scripture that reveals a great and horrible truth. Ah, the fundamental truth of all things is revealed! But wait, I can't understand any of it! Before your eyes, a beautiful blonde lady and a knight wearing black armor show up, but quickly vanish.
+ You begin to understand where the next Stone of Commune is... a temple in Goddard Castle Town... Summoner Belinda... she has the Stone of Commune in her hands. Unlike before, the light from the Stone of Commune shimmers very faintly.
+ The images fade and the light turns to darkness.. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/8-03.htm new file mode 100644 index 0000000000..d53c28e7ab --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/8-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
Putting your hands on the tablet, the location of the Stone of Commune again becomes clear. Summoner Belinda in the Goddard Castle Town has the fifth Stone of Commune. Go and get it from her! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/9-01.htm new file mode 100644 index 0000000000..93a8498e10 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/9-01.htm @@ -0,0 +1 @@ +Tablet of Vision:
To decode figures in the tablet, the Stone of Commune is needed. The fifth Stone of Commune is in the possession of the Archon of Halisha! You can find him at the Sepulchers or the Shrine of the Feudal Lords at the northeastern part of the Wall of Argos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/9-02.htm new file mode 100644 index 0000000000..9ac269a67a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/9-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Ancient, indecipherable hieroglyphs are engraved upon the tablet. They emit a mysterious, dim light. There is something magical and powerful in the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/9-03.htm new file mode 100644 index 0000000000..fd94534ab0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/9-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. There is a vision of a beautiful blonde woman and a knight with black armor. The vision disappears. Slowly, you begin to visualize where the next Stone of Commune is...A vision appears...A man-figure stands in front of the sixth Tablet of Vision hinded in the wilds...I can't see his face through the darkness, but his eyes burn with an otherworldly fire!...And, the Stone of Commune emits a dim light.
In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/9-04.htm new file mode 100644 index 0000000000..5786e7bec0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/9-04.htm @@ -0,0 +1 @@ +Tablet of Vision:
Putting your hands on the tablet, the location of the Stone of Commune again becomes clear. The sixth Stone of Commune is hidden in the wilds, and an ominous person is nearby. Go and get the Stone of Commune from that person! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/Q00091_SagaOfTheArcanaLord.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/Q00091_SagaOfTheArcanaLord.java new file mode 100644 index 0000000000..37f2600025 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00091_SagaOfTheArcanaLord/Q00091_SagaOfTheArcanaLord.java @@ -0,0 +1,105 @@ +/* + * 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.Q00091_SagaOfTheArcanaLord; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Arcana Lord (91) + * @author Emperorc + */ +public class Q00091_SagaOfTheArcanaLord extends AbstractSagaQuest +{ + public Q00091_SagaOfTheArcanaLord() + { + super(91); + _npc = new int[] + { + 31605, + 31622, + 31585, + 31608, + 31586, + 31646, + 31647, + 31651, + 31654, + 31655, + 31658, + 31608 + }; + Items = new int[] + { + 7080, + 7604, + 7081, + 7506, + 7289, + 7320, + 7351, + 7382, + 7413, + 7444, + 7110, + 0 + }; + Mob = new int[] + { + 27313, + 27240, + 27310 + }; + classid = new int[] + { + 96 + }; + prevclass = new int[] + { + 0x0e + }; + npcSpawnLocations = new Location[] + { + new Location(119518, -28658, -3811), + new Location(181215, 36676, -4812), + new Location(181227, 36703, -4816) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-01.htm new file mode 100644 index 0000000000..031972007e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-01.htm @@ -0,0 +1,5 @@ +Grand Magister Arkenias:
+I feel the presence of many spirits around you. Your bond with the unicorns, who have been associated with our tribe since ancient times, tells me that you're the one who can stop the discord that has tarnished nature's harmony.
+Head Summoner Galatea told me about you. In fact, I've been watching you closely since you passed the Test of the Summoner! I've seen your wisdom grow by leaps and bounds!
+Your time has come. An Elemental Master will soon be born who will become the ultimate summoner in charge of the the beasts the belong to the goddess Eva, with holy poets and songs... Will you be the one? Are you up to the challenge?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-010.htm new file mode 100644 index 0000000000..a661d0e1d7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-010.htm @@ -0,0 +1,3 @@ +Grand Magister Arkenias:
+You've obtained the sacred knowledge, but you haven't yet made it entirely your own. Like food, it must be digested to become truly yours. You must be patient.
+(Only a character of level 76 or above can transfer to the Elemental Master class. Don't abandon the quest before class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-02.htm new file mode 100644 index 0000000000..4fcf399896 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-02.htm @@ -0,0 +1,5 @@ +Grand Magister Arkenias:
+I feel many forces around you. Human bodies, minds, spirits...
+Our tribe has had a Contract with the unicorns since ancient times. Now, we seek someone to restore nature's harmony.
+We're looking for someone who has passed the Test of the Summoner to become the ultimate summoner, an Elemental Master!
+(This quest may only be undertaken by a character of level 76 or above and of the Elemental Summoner class.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-03.htm new file mode 100644 index 0000000000..e099f1ddd8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-03.htm @@ -0,0 +1,4 @@ +Grand Magister Arkenias:
+Radyss is resting in Aden Castle Town. I'm afraid he doesn't have much time left. You must start your pilgrimage immediately! Although Elves' lives are practically eternal, we have no time to waste!
+Please read this report before you leave. It will tell you all you need to know about the spirit protecting one of the tablets. You must face this challenge bravely. Study the report carefully.
+Please, get going! May Eva's light guide your path! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-04.htm new file mode 100644 index 0000000000..6120f4e9a7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-04.htm @@ -0,0 +1,2 @@ +Grand Magister Arkenias:
+High Summoner Radyss is waiting for you in Aden Castle Town. He'll tell you more about the pilgrimage you must undertake to become an Elemental Master. You must hurry! He's critically ill! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-05.htm new file mode 100644 index 0000000000..65ad5bf232 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-05.htm @@ -0,0 +1,4 @@ +Grand Magister Arkenias:
+There are no scrolls or books that contain the spell of ultimate summoning. That information has always been restricted to the gods, far beyond the grasp of mere Elves. The secret is supposedly written on six ancient tablets, in the language of the gods. The gods put these tablets in very out-of-the-way places, and stationed formidable beasts nearby to guard them.
+If you can learn the secrets of the six tablets, you will pass the test. Luckily, there is someone who can help you... None less than the greatest Elemental Master of all time, Radyss!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-06.htm new file mode 100644 index 0000000000..85ced72c25 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-06.htm @@ -0,0 +1,3 @@ +Grand Magister Arkenias:
+Welcome, pilgrim of vision! At last you've come to the end of your arduous journey! Radyss told me that you'd returned. Congratulations on behalf of all the Grand Magisters in the Ivory Tower!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-07.htm new file mode 100644 index 0000000000..7e6cff8465 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-07.htm @@ -0,0 +1,3 @@ +Grand Magister Arkenias:
+You've done it! I'm just a lowly magister who exists only to recognize those who have achieved the sacred knowledge! I hereby bestow upon you the title of Elemental Master!
+ Lead our Elven brothers of the Ivory Tower towards a new enlightenment with your newly obtained knowledge. May Eva's blessings be with you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-08.htm new file mode 100644 index 0000000000..a661d0e1d7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-08.htm @@ -0,0 +1,3 @@ +Grand Magister Arkenias:
+You've obtained the sacred knowledge, but you haven't yet made it entirely your own. Like food, it must be digested to become truly yours. You must be patient.
+(Only a character of level 76 or above can transfer to the Elemental Master class. Don't abandon the quest before class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-09.htm new file mode 100644 index 0000000000..7e6cff8465 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/0-09.htm @@ -0,0 +1,3 @@ +Grand Magister Arkenias:
+You've done it! I'm just a lowly magister who exists only to recognize those who have achieved the sacred knowledge! I hereby bestow upon you the title of Elemental Master!
+ Lead our Elven brothers of the Ivory Tower towards a new enlightenment with your newly obtained knowledge. May Eva's blessings be with you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-01.htm new file mode 100644 index 0000000000..d1dccb2302 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-01.htm @@ -0,0 +1,5 @@ +Priest Cerenas:
+My father sent you here... I just want my father's pain to end. I pray to Eva everyday to let him find relief. This medicine only prolongs his suffering. If you ask me to make the medicine again, it is too painful for me.
+However, I cannot go against my father's will. So, become an Elemental Master and help him to find relief and go to the bosom of Eva.
+Now, I have to make the medicine. As you might hear from my father, I need a very rare material to make this medicine...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-02.htm new file mode 100644 index 0000000000..004db2c22c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-02.htm @@ -0,0 +1,3 @@ +Priest Cerenas:
+To make the medicine for my father, I need an ice crystal.
+In the northern part of this village, there is the hot springs area. There, meet Chef Gemeri. He will tell you how to get the ice crystal. I don't want to prolong my father's pain. Please hurry up. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-03.htm new file mode 100644 index 0000000000..52c9b057de --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-03.htm @@ -0,0 +1,3 @@ +Priest Cerenas:
+Thank you very much. Because you have the ice crystal, I now can make the medicine for my father. Please wait a moment while I prepare the materials.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-04.htm new file mode 100644 index 0000000000..6596eacb37 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-04.htm @@ -0,0 +1,2 @@ +Priest Cerenas:
+Take the medicine to my father, the Head Summoner Radyss. He is waiting for you in the Aden Castle Town. I heard that his health is getting worse and worse. Please hurry up. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-05.htm new file mode 100644 index 0000000000..50fb74e0d7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-05.htm @@ -0,0 +1,3 @@ +Priest Cerenas:
+ I need some Ice Crystals that can only be found in the northern part of Goddard.
+Speak with Chef Jeremy in the hot springs area just to the north of this village. He's been trying to find some soy sauce. If you help him, he'll tell you exactly how to get ice crystals. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-06.htm new file mode 100644 index 0000000000..861345f70d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/1-06.htm @@ -0,0 +1,3 @@ +Priest Cerenas:
+I overheard what people say about you. It's about what you've done in the hot springs area. Have you destroyed the violent monster Bumbalump? It is really great. Now I'm beginning to understand why my father designated you as his successor.
+Now it is done. Please take this medicine to my father, Head Summoner Radyss. He is waiting for you in the Aden Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-01.htm new file mode 100644 index 0000000000..d69c204706 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You can feel the presence of the Stone of Commune near the tablet. You feel you can find out its exact location if you lay your hands on the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-02.htm new file mode 100644 index 0000000000..3c051092ac --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+As you are about to lay your hands on the tablet, you hear the beast's growl. And a new creature that you haven't seen before appears... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-03.htm new file mode 100644 index 0000000000..d93d863170 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You need the Stone of Commune to decipher the hieroglyphs on the tablet. Speak with Unicorn Kaleidos about the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-04.htm new file mode 100644 index 0000000000..99f1cbf806 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone is already communing with the Tablet of Vision. Please try again later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-05.htm new file mode 100644 index 0000000000..8c49055729 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is inscribed with indecipherable hieroglyphs. The letters emit a dim light and the tablet seems to manifest strong magical powers.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-06.htm new file mode 100644 index 0000000000..c77c23caec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-06.htm @@ -0,0 +1,7 @@ +Tablet of Vision:
+As you hold the Stone of Commune and concentrate on it, the tablet gets surrounded by bright light. You hear several hundred people simultaneously reading scriptures, and new knowledge starts to enter your mind. On one hand, you feel like you understand everything. On the other hand, you feel that you don't understand anything.
+You hear someone's low-pitched laughter. And you hear a man's voice.
+"You now have one more successor that you like."
+A blonde woman replies.
+"No, he's like a baby who just started walking. But he will no longer need his mother's protection..."
+All images disappear, and you start to recognize the surrounding environment. You are starting to understand the knowledge you have gained from the tablet little by little. The pilgrimage of the tablet seems to have ended. Return to Ivory Tower and see Grand Magister Arkenias. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-07.htm new file mode 100644 index 0000000000..866cc47553 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Nothing happens any more even when you lay your hands on the tablet. Now that you have finished your pilgrimage of the tablet, return to Ivory Tower and see Grand Magister Arkenias. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/11-01.htm new file mode 100644 index 0000000000..9775579045 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/11-01.htm @@ -0,0 +1,4 @@ +Head Summoner Radyss:
+Young leaf, I've been waiting for you! In your absence, I've examined several things. Yes, I found the fifth Stone of Commune. However, unfortunately, it lost its power. This is the Stone of Commune you sensed. But can't you tell that its power is weaker than before?
+Hack... Fortunately, I've learned that there are more Stones of Commune that are just like this one. One can be found at the Imperial Tomb and the other can be found at the Wall of Argos. Hack... At the cemetery, look in the Four Sepulchers. If you decide to go to the Wall of Argos, look in the Shrine of the Loyal in the northeastern part of the valley. And...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/11-02.htm new file mode 100644 index 0000000000..4a15a3f55e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/11-02.htm @@ -0,0 +1,3 @@ +Head Summoner Radyss:
+Young leaf, you must destroy the Archon of Halisha to get the fifth Stone of Commune. Hack... Find the devil in the Imperial Tomb or at the Wall of Argos.
+If you go to the Imperial Tomb, you can confront him by entering the Four Sepulchers. If you go to the Shrine of the Loyal, you must attack his minions as you see them. Then the Archon of Halisha will appear. Keep in mind that you must destroy him to get the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/11-03.htm new file mode 100644 index 0000000000..e2a97f80b9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/11-03.htm @@ -0,0 +1,4 @@ +Head Summoner Radyss:
+Either way, you must eventually confront the evil Archon of Halisha. Yes, Because he has the fifth Stone of Commune.
+If you go to the Imperial Tomb, you can confront him by entering the Four Sepulchers. If you go to the Shrine of the Loyal, you must attack his minions as you see them. Then the Archon of Halisha will appear.
+OK, leave now! Hack... I will pray to Eva for help. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-01.htm new file mode 100644 index 0000000000..ad0982b509 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-01.htm @@ -0,0 +1,5 @@ +Head Summoner Radyss:
+The young leaf of Mother Tree, you finally came...
+(Ack)... This old man has already lived for over 2000 years, and now the day is near when I return to the bosom of Eva. However, I have many things to teach you before I die. It is an obligation and the right way of the last Elemental Master.
+ (Ack)... I am in pain... But I cannot die yet. I could not die peacefully until I see with my own two eyes the birth of the successor. You, the young leaf, I have a request. Please make the enzyme and bring it to me, so that my life may last just a while longer.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-02.htm new file mode 100644 index 0000000000..0051a7b8ce --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-02.htm @@ -0,0 +1,2 @@ +Head Summoner Radyss:
+Go to the Goddard Castle (Ack)... find Elf Priest Cerenas and get some medicine for me! I must last long enough to train my successor! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-03.htm new file mode 100644 index 0000000000..1a753fb7d4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-03.htm @@ -0,0 +1,6 @@ +Head Summoner:
+Hack! Cough... Oh, you brought the medicine... Did it buy me more time...? This medicine... will ease my pain for the moment...
+Now, I will tell you about the tablet pilgrimage, the trial you must pass to be an Elemental Master. Young leaf, listen to what I say from now on...
+Even Elves like us cannot read the passage written on the Tablet of Vision. The gods don't want us to learn the highest level of magic. It's because we, the creatures would become arrogant and self-righteous too easily. They are afraid that a situation, such as when the Giants made war against them, might occur again.
+So, they broke the tablet, where the most profound principles of Magic were written (it should be used when teaching magic to the Elves like us), into six pieces and changed the letters on the tablet into the Gods' characters. The Gods' characters cannot be understood with the intelligence of creatures like us... But, I by chance found out how to read the characters on the six tablets!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-04.htm new file mode 100644 index 0000000000..0cfd483ec2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-04.htm @@ -0,0 +1,2 @@ +Head Summoner Radyss:
+The Stone of Commune I gave you, if you follow the lead of this Stone, you can find the first Tablet of Vision! If you don't know it well, find your way using the Map. I will pray that the wind of Shaiha leads you the right way. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-05.htm new file mode 100644 index 0000000000..8761f65983 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-05.htm @@ -0,0 +1,3 @@ +Head Summoner Radyss:
+Hack... Go to the temple in the Goddard Castle, hack... And find the Elf Priest Cerenas. She will make a medicine for me. Help her get the materials necessary to make the medicine.
+Hack... Leave quickly. Time is running out. I will pray that the wind of Shaiha leads you the right way... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-06.htm new file mode 100644 index 0000000000..d49f31703f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/2-06.htm @@ -0,0 +1,4 @@ +Head Summoner Radyss:
+The solution is in this gem! This is what we call the stone of vision. If you use the power contained in it, you can understand the Gods' characters written on the Tablet of Vision. Also, if you grasp this gem, you will know intuitively the location where this tablet is hidden.
+I don't know who the hell made this thing, but one thing is clear - someone or some being is helping the dark elves learn the knowledge that is forbidden by God. As the person who is exploring the true power of the magic, we cannot miss this good opportunity.
+Now, I will give you this stone of vision I've used in the past. If you go in the direction indicated by the stone of vision, you will find the first Tablet of Vision. Please become the Elemental Master who will succeed me. I will pray that the wind of Shaiha leads you the right way. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-01.htm new file mode 100644 index 0000000000..4b24f54cc9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-01.htm @@ -0,0 +1,4 @@ +Head Summoner Radyss:
+Hack... Young leaf, welcome back. Maybe, the perverse Shilen is trying to take my life as soon as possible. My power is waning. I can barely stand even with Cerenas's medicine... Oh, Goddess of Eva! Please give me the power to endure this pain even for just one moment...!
+Come close to me! In your absence, I've examined several things, even though I was weak with disease. And I made some progress.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-02.htm new file mode 100644 index 0000000000..93b6eb3989 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-02.htm @@ -0,0 +1,4 @@ +Head Summoner Radyss:
+At first, go to the Messenger Wahkan of the Ketra Orcs. I heard that they are hiring the foreign mercenaries. If so, it is a good opportunity to gain their trust!
+The Divine Stone of Wisdom that we are looking for is possessed by the Soul Guide Asepha, the head shaman of the Ketra Orcs.
+Hack... If things are not going well, change the plan and approach the Varka Silenos tribe. I will pray to Eva for help. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-03.htm new file mode 100644 index 0000000000..886e4f5624 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-03.htm @@ -0,0 +1,4 @@ +Head Summoner Radyss:
+At first, go to the Messenger Naran Ashanuk of Varka Silenos. I heard that they are hiring the foreign mercenaries. If so, it is a good opportunity to gain their trust!
+The Divine Stone of Wisdom that we are looking for is possessed by the Soul Guide Udan Mardui, the head shaman of the Varka Silenos.
+Hack... If things are not going well, change the plan and approach the Ketra Orcs tribe. I will pray to Eva for help. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-04.htm new file mode 100644 index 0000000000..e2c04ad777 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-04.htm @@ -0,0 +1,2 @@ +Head Summoner Radyss:
+Hack... In order to properly operate the fourth Stone of Commune, we have to get the Divine Stone of Wisdom worshipped by the Ketra Orcs or the Varka Silenos. At first, you have to gain their trust, but it will never be easy, because they are wild and warlike tribes. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-05.htm new file mode 100644 index 0000000000..f19e85a995 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-05.htm @@ -0,0 +1,3 @@ +Head Summoner Radyss:
+Hack... A fragment of the fourth Stone of Commune is actually worshipped by the barbarians in this area, who call it their "Divine Stone of Wisdom"! Now put these two stones together...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-06.htm new file mode 100644 index 0000000000..6df56d5763 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-06.htm @@ -0,0 +1,2 @@ +Head Summoner Radyss:
+Hack... Young leaf, this is not the place you can stay. Quickly take the Stone of Commune and go to find the fourth Tablet of Vision. You will know its location intuitively, as long as you have the Stone of Commune. If it is difficult to find location, get the direction using the Map. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-07.htm new file mode 100644 index 0000000000..8538ac5ff5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-07.htm @@ -0,0 +1,6 @@ +Head Summoner Radyss:
+When you responded to the third tablet, you sensed the location of the next Stone of Commune, didn't you? At that time, you should have seen me. I also felt your existence...!
+Hack... What you sensed is this small piece of stone. This is the fragment of the fourth Stone of Commune. However, you must find the other part and combine them in order to form a working Stone of Commune.
+The rest of the Stone of Commune is called "Divine Stone of Wisdom" and worshipped as an idol by the barbarians in this area. According to what I've learned, the Ketra Orcs and the Varka Silenos tribes enshrine the stone. To get this stone, you must gain their trust. Hack... However, it will never be easy, because they are wild and warlike tribes. Which tribe will you choose to approach?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-08.htm new file mode 100644 index 0000000000..83f025b539 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/3-08.htm @@ -0,0 +1,2 @@ +Head Summoner Radyss:
+The two pieces fit perfectly together! Now, young leaf, please accept this Stone of Commune. And start the pilgrimage again to find the fourth Tablet of Vision. Please become the successor of the Elemental Master as quickly as possible. I will pray to Eva for help. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-01.htm new file mode 100644 index 0000000000..b6a4aceb39 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-01.htm @@ -0,0 +1,2 @@ +Unicorn Kaleidos:
+Help, or I'll miss the hound dog! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-010.htm new file mode 100644 index 0000000000..81a99be7ba --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-010.htm @@ -0,0 +1,4 @@ +Unicorn Kaleidos:
+Take this, Kelvas dropped it.
+I have to go back to my master Radyss and be there when he falls asleep.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-011.htm new file mode 100644 index 0000000000..178a141b26 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-011.htm @@ -0,0 +1,3 @@ +Unicorn Kaleidos:
+Take this, Kelvas dropped it.
+I have to go back to my master Radyss and be there when he falls asleep. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-02.htm new file mode 100644 index 0000000000..0a1c4806e2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-02.htm @@ -0,0 +1,2 @@ +Unicorn Kaleidos:
+I can't miss the hound dog! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-03.htm new file mode 100644 index 0000000000..86782cabca --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-03.htm @@ -0,0 +1,2 @@ +Unicorn Kaleidos:
+You missed, better luck next time. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-04.htm new file mode 100644 index 0000000000..b6a4aceb39 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-04.htm @@ -0,0 +1,2 @@ +Unicorn Kaleidos:
+Help, or I'll miss the hound dog! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-05.htm new file mode 100644 index 0000000000..0a1c4806e2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-05.htm @@ -0,0 +1,2 @@ +Unicorn Kaleidos:
+I can't miss the hound dog! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-06.htm new file mode 100644 index 0000000000..4ecce18b6f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-06.htm @@ -0,0 +1,4 @@ +Unicorn Kaleidos:
+Radyss sent me.
+Kelvas has been hounding my race a lot, now I've bested him.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-07.htm new file mode 100644 index 0000000000..29bae80d09 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-07.htm @@ -0,0 +1,3 @@ +Unicorn Kaleidos:
+Radyss sent me.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-08.htm new file mode 100644 index 0000000000..0b578e4933 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-08.htm @@ -0,0 +1,2 @@ +Unicorn Kaleidos:
+Don't miss the hound dog. Commune with the tablet using the stone I gave you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-09.htm new file mode 100644 index 0000000000..d1c30cf0ba --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/4-09.htm @@ -0,0 +1,2 @@ +Unicorn Kaleidos:
+Commune with the tablet using the stone I gave you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/5-01.htm new file mode 100644 index 0000000000..25983e29a7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Hieroglyphics are engraved on the tablet. They emit a dim light, with a mysterious and powerful magic.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/5-02.htm new file mode 100644 index 0000000000..c08b0f0f77 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. One of the voices is a familiar female whisper. But it quickly disappears.
+Slowly, you begin to visualize where the next Stone of Commune is... in the valley of dust... you see a second Tablet of Vision... and a female warrior in platinum armor. She is holding the stone... She then unfolds her wings and flies away along with other female warriors......
+In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/5-03.htm new file mode 100644 index 0000000000..4d6174f141 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You visualize the stone once again when touching the Tablet. In the yellow-brown valley... you see a female warrior with platinum wings... She is holding the stone in her hand. You are compelled to go forth and find the stone right now! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/6-01.htm new file mode 100644 index 0000000000..0aa237e1ce --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have the Stone of Commune to access this Tablet of Vision. The stone is being held by one of the female warriors with platinum wings. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/6-02.htm new file mode 100644 index 0000000000..0924b76657 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Hieroglyphics are engraved on the tablet. They emit a dim light, with a mysterious and powerful magic.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/6-03.htm new file mode 100644 index 0000000000..da719e317a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. One of the voices is a familiar female whisper. But it quickly disappears.
+Slowly, you sense the Stone of Commune... You see the third Tablet of Vision... and an angel with two pairs of wings... She is holding the stone in her hand...
+In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/6-04.htm new file mode 100644 index 0000000000..bff7683002 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/6-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Once again, you see the third Tablet of Vision... and a female warrior with wings... She is holding the stone in her hand.
+You are compelled to go forth and find the stone right now! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-01.htm new file mode 100644 index 0000000000..f708b023fd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Stone of Commune exists near the tablet. Putting your hands on the tablet will reveal the location of the stone. Put your hands on the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-02.htm new file mode 100644 index 0000000000..7ef84b519a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-02.htm @@ -0,0 +1 @@ +Tablet of Vision:
When putting your hands on the tablet, your entire body is knocked back by something powerful but invisible. Then, it begins to appear. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-03.htm new file mode 100644 index 0000000000..f8f9b21bdd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
The Tablet of Vision cannot be accessed without the Stone of Commune. Defeat Shakiel and take the stone from him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-04.htm new file mode 100644 index 0000000000..b6367cf048 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-04.htm @@ -0,0 +1 @@ +Tablet of Vision:
Someone else is currently communing with the Tablet of Vision. Come back later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-05.htm new file mode 100644 index 0000000000..2c31405895 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-05.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Ancient, indecipherable hieroglyphs are engraved upon the tablet. They emit a mysterious, dim light. There is something magical and powerful in the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-06.htm new file mode 100644 index 0000000000..5fed7caa78 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-06.htm @@ -0,0 +1 @@ +Tablet of Vision:
The Tablet of Vision begins to illuminate the room and engulfs you in its wake. Thunderous chanting clogs your mind and yet gives you understand of something.... something that cannot be understood! You hear a familiar woman's voice whispering again...Arden Castle Town...there is Summoner Radyss, who has a bad cough...
He lifts up his face and looks into your eyes, motioning you to come toward. Summoner Radyss has the stone! The vision disappears slowly, and the tablet goes dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-07.htm new file mode 100644 index 0000000000..39c372b09c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/7-07.htm @@ -0,0 +1 @@ +Tablet of Vision:
Putting your hands on the tablet, the location of the Stone of Commune again becomes clear. Summoner Radyss in the Aden Castle Town seems to have the fourth Stone of Commune. Go to Aden Castle Town and meet him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/8-01.htm new file mode 100644 index 0000000000..9fe21c5b82 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/8-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Ancient, indecipherable hieroglyphs are engraved upon the tablet. They emit a mysterious, dim light. There is something magical and powerful in the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/8-02.htm new file mode 100644 index 0000000000..32cc79f85a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/8-02.htm @@ -0,0 +1 @@ +Tablet of Vision:
The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. Both the absolute understanding, and the absolute ignorance of nature come across at the same time. There is a vision of a beautiful blonde woman and a knight with black armor. The vision disappears. Slowly, you begin to visualize where the next Stone of Commune is...There is Summoner Radyss...He gazes at you and smiles. He may have the Stone of Commune, but the beam from the stone is much weaker than before.
In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/8-03.htm new file mode 100644 index 0000000000..4fbed9108f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/8-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
Putting your hands on the tablet, the location of the Stone of Commune again becomes clear. Summoner Radyss in the Aden Castle Town has the fifth Stone of Commune. Go and get it from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/9-01.htm new file mode 100644 index 0000000000..e1787a093e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/9-01.htm @@ -0,0 +1 @@ +Tablet of Vision:
To decode the figures in the tablet, the Stone of Commune is needed. The fifth Stone of Commune is in the possession of the Archon of Halisha! You can find him at the Sepulchers or the Shrine of the Feudal Lords at the northeastern part of the Wall of Argos, and defeat low-grade evils. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/9-02.htm new file mode 100644 index 0000000000..1e835545dc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/9-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Ancient, indecipherable hieroglyphs are engraved upon the tablet. They emit a mysterious, dim light. There is something magical and powerful in the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/9-03.htm new file mode 100644 index 0000000000..42b754afd8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/9-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. There is a vision of a beautiful blonde woman and a knight with black armor. The vision disappears. The location of the next commune is gradually becoming clear...A vision appears...The sixth Tablet of Vision hidden in the wilds. Standing before the sixth tablet is a beast with red eyes and sharp fangs!...and the Stone of Commune, held in the mouth of the beast, emits a dim light.
In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/9-04.htm new file mode 100644 index 0000000000..344abaee5d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/9-04.htm @@ -0,0 +1 @@ +Tablet of Vision:
Putting your hands on the tablet, the location of the Stone of Commune again becomes clear. The sixth Stone of Commune is hidden in the wilderbess and there's an ominious shadow of a beast...There is the Stone of Commune held in the mouth of the beast...Go and get the stone from it! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/Q00092_SagaOfTheElementalMaster.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/Q00092_SagaOfTheElementalMaster.java new file mode 100644 index 0000000000..d29d3dd2a6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00092_SagaOfTheElementalMaster/Q00092_SagaOfTheElementalMaster.java @@ -0,0 +1,105 @@ +/* + * 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.Q00092_SagaOfTheElementalMaster; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Elemental Master (92) + * @author Emperorc + */ +public class Q00092_SagaOfTheElementalMaster extends AbstractSagaQuest +{ + public Q00092_SagaOfTheElementalMaster() + { + super(92); + _npc = new int[] + { + 30174, + 31281, + 31614, + 31614, + 31629, + 31646, + 31648, + 31652, + 31654, + 31655, + 31659, + 31614 + }; + Items = new int[] + { + 7080, + 7605, + 7081, + 7507, + 7290, + 7321, + 7352, + 7383, + 7414, + 7445, + 7111, + 0 + }; + Mob = new int[] + { + 27314, + 27241, + 27311 + }; + classid = new int[] + { + 104 + }; + prevclass = new int[] + { + 0x1c + }; + npcSpawnLocations = new Location[] + { + new Location(161719, -92823, -1893), + new Location(124376, 82127, -2796), + new Location(124355, 82155, -2803) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-01.htm new file mode 100644 index 0000000000..c6bedf5ad4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-01.htm @@ -0,0 +1,5 @@ +Grand Magister Fairen:
+ Well, shall I check your records? Let's see, you were educated at the Temple of Shilen, obtained a certificate of Dark Wizard from the Altar of Rites in the Dark Forest, passed the Test of the Summoner with flying colors, and even attained the Recommendation of Galatea!
+Your records are awesome! You won't have any problem! In fact, I've got you in mind for a very special position...
+I'm thinking of recommending that you be made a Spectral Master! It won't be easy, but your skills are extraordinary! Will you take the challenge?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-010.htm new file mode 100644 index 0000000000..b270973a61 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-010.htm @@ -0,0 +1,3 @@ +Grand Magister Fairen:
+ You've come close to the ultimate knowledge, but you still don't understand it. Even the most profound knowledge is useless unless you make it your own! Your objective is right in front of you. Work a little bit harder!
+(Only characters of level 76 or above may transfer to the Spectral Master class. Don't stop Quest until completing the Occupation Change.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-02.htm new file mode 100644 index 0000000000..08f5234bcf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-02.htm @@ -0,0 +1,4 @@ +Grand Magister Fairen:
+ Well, shall I check your records? Let's see, you were educated at the Temple of Shilen, obtained a certificate of Dark Wizard from the Altar of Rites in the Dark Forest, passed the Test of the Summoner with flying colors, and even obtained a Recommendation from Galatea!
+Your records are awesome! Unfortunately, it's come to our attention that your research activities have slowed down since you were promoted to Phantom Summoner. Work harder! Eventually, I'll recommend that you become a candidate for Spectral Master, the ultimate summoner! Do your best!
+(Only characters of level 76 or above and of the Phantom Summoner class may undertake this quest.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-03.htm new file mode 100644 index 0000000000..17072463db --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-03.htm @@ -0,0 +1,4 @@ +Grand Magister Fairen:
+ Honestly, she and I have had some problems... She's away from the Ivory Tower for the moment. You can probably find her in Aden Castle Town.
+Take this report that Noctisse left here along with you. It tells all about the spirit that protects one of the six tablets. You should read it since you'll eventually have to face it.
+You should get going! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-04.htm new file mode 100644 index 0000000000..1d7cf94cbd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-04.htm @@ -0,0 +1,2 @@ +Grand Magister Fairen:
+ Visit Summoner, Noctisse, in Aden Castle Town. She'll teach you several important things about the pilgrimage of the tablets. Read the report that I gave you. It will tell you about difficulties you're bound to face in the future. Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-05.htm new file mode 100644 index 0000000000..b3dd918fdd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-05.htm @@ -0,0 +1,5 @@ +Grand Magister Fairen:
+No book or scroll speaks of the ultimate summoning spell. It's secrets have always been in the domain of the gods, far from the grasp of mere Humans. The secret is supposedly written only on six ancient tablets, hidden by the gods in secluded areas and protected by formidable beasts!
+Once you've overcome all the difficulties that the gods could imagine, and learned the knowledge contained in the six tablets, you'll become a Spectral Master.
+Someone has already left on the pilgrimage before you. Summoner Noctisse is a young woman who's advancing rather quickly, like a bright new star, shining in the dawn sky. I'm sure she could tell you a few things about the pilgrimage of tablets if you approached her right. She has has a somewhat notorious personality!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-06.htm new file mode 100644 index 0000000000..1a990b1bb0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-06.htm @@ -0,0 +1,3 @@ +Grand Magister Fairen:
+ Welcome back, pilgrim of vision! On behalf of all the summoners of the Ivory Tower, I congratulate you on safely completing the pilgrimage of the six tablets and obtaining the ultimate knowledge!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-07.htm new file mode 100644 index 0000000000..4097174fb8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-07.htm @@ -0,0 +1,4 @@ +Grand Magister Fairen:
+ You've achieved the enlightenment of sacred knowledge! My only role now is to confer the proper title upon the possessor of the knowledge. I hereby bestow upon you the title of Spectral Master!
+ Welcome to the family, my brother! I pray that you reach new levels of enlightenment! Don't let it go to your head. You never know when somebody might come along and burst your bubble!
+Let's get together again sometime. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-08.htm new file mode 100644 index 0000000000..07f2342eab --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-08.htm @@ -0,0 +1,3 @@ +Grand Magister Fairen:
+ You've obtained the ultimate knowledge, but haven't yet made it entirely your own. Like food, knowledge must be digested to become truly yours. You're very close to achieving your objectives. Work harder!
+(Only characters of level 76 or above may transfer to the Spectral Master class. Don't abandon the quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-09.htm new file mode 100644 index 0000000000..8f6c8ac051 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/0-09.htm @@ -0,0 +1,3 @@ +Grand Magister Fairen:
+ You now possess the sacred knowledge and are advancing towards the ultimate summoning technique! I'll grant you your well-deserved title now! I hereby bestow upon you the title of Spectral Master!
+Welcome to the family, my brother! I pray that you reach new levels of enlightenment. But don't let it go to your head! You never know when someone might come along and burst your bubble! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-01.htm new file mode 100644 index 0000000000..452792bc89 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-01.htm @@ -0,0 +1,4 @@ +Magister Kamilen:
+So you're a friend of Noctisse? You need the medicine to cure her illness, huh? Severe coughing, high fever, chills... I think it's Sea of Spores fever. It's not going to be easy to cure.
+What? Grand Magister Fairen gave the poison? Oh, don't listen to everything Noctisse says. He's severely delusional. Do you really think Fairen would try to kill his student?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-02.htm new file mode 100644 index 0000000000..1b21950361 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-02.htm @@ -0,0 +1,2 @@ +Magister Kamilen:
+Are you still here? We have to make the medicine quickly to cure Noctisse's fever! Please get me the ice crystal from the hot springs area. I need it to make the medicine. Chef Jeremy at the hot springs resort knows where to get it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-03.htm new file mode 100644 index 0000000000..f99154b735 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-03.htm @@ -0,0 +1,4 @@ +Magister Kamilen:
+You brought the ice crystal! Now I can make the medicine to cure Noctisse.
+People are talking about you. You killed Bumbalump, the monster of the hot springs area, huh? I heard it was a yeti with an enormous body. How did you kill it?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-04.htm new file mode 100644 index 0000000000..c31b729633 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-04.htm @@ -0,0 +1,2 @@ +Magister Kamilen:
+Why are you waiting when your friend is suffering? Take the medicine I gave you and go back to Summoner Noctisse. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-05.htm new file mode 100644 index 0000000000..d595ffc334 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-05.htm @@ -0,0 +1,3 @@ +Magister Kamilen:
+ I need some Ice Crystals from the hot springs area to make the medicine to cure Sea of Spores Fever. I realize it's a lot of trouble, but could you get some for me?
+Go to the hot springs area and meet Chef Jeremy. Help him get some soy sauce, and he'll tell you where to find the ice crystals. Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-06.htm new file mode 100644 index 0000000000..7f5518f555 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/1-06.htm @@ -0,0 +1,2 @@ +Magister Kamilen:
+In a hurry? Don't worry. It's ready. Here you are. Give this medicine to Summoner Noctisse. Tell her not to be so paranoid. It only makes her tired. Goodbye! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-01.htm new file mode 100644 index 0000000000..ef6a739f50 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You can feel the presence of the Stone of Commune near the tablet. You feel you can find out its exact location if you lay your hands on the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-02.htm new file mode 100644 index 0000000000..e511202340 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+As you are about to lay your hands on the tablet, you can feel something behind you. And a new creature that you haven't seen before appears. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-03.htm new file mode 100644 index 0000000000..a5f436b2f6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You need the Stone of Commune to decipher the hieroglyphs on the tablet. Speak with the Mysterious Servitor about the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-04.htm new file mode 100644 index 0000000000..0dd42737d6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone is currently communing with the tablet. Try again later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-05.htm new file mode 100644 index 0000000000..4365b277e7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is inscribed with indecipherable hieroglyphs. The letters emit a dim light and the tablet seems to manifest strong magical powers.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-06.htm new file mode 100644 index 0000000000..a743a15a65 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-06.htm @@ -0,0 +1,7 @@ +Tablet of Vision:
+As you hold the Stone of Commune and concentrate on it, the tablet gets surrounded by bright light. You hear several hundred people simultaneously reading scriptures, and new knowledge starts to enter your mind. On one hand, you feel like you understand everything. On the other hand, you feel that you don't understand anything.
+You hear someone's low-pitched laughter. And you hear a man's voice.
+"You now have one more successor that you like."
+A blonde woman replies.
+"No, he's like a baby who just started walking. But he will no longer need his mother's protection..."
+All images disappear, and you start to recognize the surrounding environment. You are starting to understand the knowledge you have gained from the tablet little by little. The pilgrimage of the tablet seems to have ended. Return to Ivory Tower and see Magister Fairen. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-07.htm new file mode 100644 index 0000000000..a38cdf3ad3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Nothing happens any more even when you lay your hands on the tablet. Now that you have finished your pilgrimage of the tablet, return to Ivory Tower and see Magister Fairen. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/11-01.htm new file mode 100644 index 0000000000..ca61214868 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/11-01.htm @@ -0,0 +1,5 @@ +Summoner Noctisse:
+I've been waiting for you. Much has happened since you left. That crafty old bastard wants to kill me! You must believe me! Last night, he sent a summoner to make an attempt on my life!
+You must complete the pilgrimage of the tablet first! I have some new information. I found the fifth Stone of Commune, but it grows weaker. It's this stone that you felt. Isn't it weaker than before?
+There are two more stones. One is in the Imperial Tomb and the other at the Wall of Argos. Enter the Four Sepulchers at the heart of the cemetery. If you go to the Wall of Argos, find the Shrine of the Loyal in the northeastern part of the valley. And...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/11-02.htm new file mode 100644 index 0000000000..c62f8633fe --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/11-02.htm @@ -0,0 +1,3 @@ +Summoner Noctisse:
+You must defeat the Archon of Halisha to get the fifth Stone of Commune. You can find him at the Imperial Tomb or the Wall of Argos.
+Enter one of the Sepulchers at the cemetery to find him, or slay his minions at the Shrine of the Loyal by the wall and he'll appear. You must defeat him to get the stone. Good luck, my friend! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/11-03.htm new file mode 100644 index 0000000000..bf0855fb71 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/11-03.htm @@ -0,0 +1,2 @@ +Summoner Noctisse:
+There are two ways to find the evil Archon of Halisha to get the fifth Stone of Commune. Find him in one of the Sepulchers at the Imperial Tomb, or at the Shrine of the Loyal at the Wall of Argos. Go now, and good luck. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-01.htm new file mode 100644 index 0000000000..ba38df5fd5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-01.htm @@ -0,0 +1,5 @@ +Summoner Noctisse:
+Did Fairen send you here? Cough. What is that old man planning this time...?
+Are you working to become a Spectral Master like me? Cough, cough... Damn it! Fairen must have fed me some kind of drug. That old man is scared of becoming a has-been. That's why he's trying to stop a young mage with superior skills like me! He's trying to remove me because he's jealous of my talent! You should watch out, too. You'll never know when Fairen attacks! Cough.
+I'll help you. We young mages have to stick together, right? Let me tell you about the pilgrimage of tablets. Where should I start?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-02.htm new file mode 100644 index 0000000000..309917ec9d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-02.htm @@ -0,0 +1,3 @@ +Summoner Noctisse:
+Cough, hack! I have a favor to ask. Go to Goddard Castle Town and see Dark Elf Magister Kamilen. Ask him to make a medicine to cure this damn fever. Tell him I sent you, he won't refuse.
+If I don't cure this disease, I could die tomorrow! Then I couldn't help your tablet pilgrimage. Please hurry. Cough, cough, hack... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-03.htm new file mode 100644 index 0000000000..7f5d4e7ae4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-03.htm @@ -0,0 +1,6 @@ +Summoner Noctisse:
+Cough, hack... Is this the medicine Kamilen made? Let me see...
+Ah...! I feel better already! My strength is returning. He's excellent in dealing with herbs and potions. Thank you! You saved my life. In return, I'll teach you all I know about the tablet pilgrimage. You already heard about the Tablet of Vision, that nobody can read the inscriptions. Well, I found out how to read the tablet!
+The gods don't want us to learn the highest level of magic because they think their creatures would become arrogant and self-righteous, as did Emperor Baium and Demon Beleth. Even the giants fought them for their power!
+The tablet was used to teach the magic to the giants, and had the most profound principles written on it. It was broken into six pieces and the inscription changed into characters of the god's so creatures like us couldn't comprehend them. The knowledge was hidden from us, but there is a way!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-04.htm new file mode 100644 index 0000000000..b7e4eb123f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-04.htm @@ -0,0 +1,2 @@ +Summoner Noctisse:
+What are you waiting for? Follow the lead of this Stone of Commune to find the first Tablet of Vision! If you don't know it well, use the Map. Good luck, my friend! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-05.htm new file mode 100644 index 0000000000..a360b1f245 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-05.htm @@ -0,0 +1,3 @@ +Summoner Noctisse:
+Cough, hack. Ahhh! Damn it! I can't help you at all in this condition.
+I have a favor to ask. Please go to Goddard Castle Town and see Dark Elf Magister Kamilen. Ask him to make a medicine to cure this damn fever. Tell him I sent you and he won't refuse. I trust you! Cough, cough! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-06.htm new file mode 100644 index 0000000000..e650f53e5c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/2-06.htm @@ -0,0 +1,4 @@ +Summoner Noctisse:
+The answer is in this stone! It's called the Stone of Commune. If you use the power contained in it, you can understand the god's characters written on the Tablet of Vision. Also, hold the stone and you'll intuitively sense where the tablet is hidden.
+Aren't you curious who made this? I don't know yet, but one thing is clear - someone is helping the Dark Elves use the knowledge forbidden by the gods! We can't let this opportunity pass to explore the true power of magic!
+Take this stone. I don't need it anymore. Follow the directions given by the stone and you'll find the first Tablet of Vision. Good luck, my friend! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-01.htm new file mode 100644 index 0000000000..4409d04ec8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-01.htm @@ -0,0 +1,5 @@ +Grand Magister Fairen:
+Did you meet Noctisse? Did she tell you that I was trying to kill her? Ha! Sure she did!
+ Listen to me carefully! Noctisse is very ambitious! She stops at nothing in her quest for power! In fact, she even stole the documents about the pilgrimage of tablets from me! She's ruthless, I tell you!
+ You must be careful of her! I'm sure she'll try to use you to discover the secrets of the tablets... Mind my words!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-02.htm new file mode 100644 index 0000000000..69f7ebe8c8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-02.htm @@ -0,0 +1,4 @@ +Grand Magister Fairen:
+ First you must meet with Messenger Wahkan of the Ketra Orcs.They've been hiring mercenaries, and this is a great opportunity to gain their trust!
+ Soul Guide Asefa, the Chief Shaman of the Ketra Orcs has a Divine Stone of Wisdom that we simply must have!
+ If things don't go well with the Ketras, you should try the Varka Silenos tribe. They also have a stone. Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-03.htm new file mode 100644 index 0000000000..c43445abec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-03.htm @@ -0,0 +1,4 @@ +Grand Magister Fairen:
+ First, meet Messenger Naran Ashanuk of the Varka Silenos tribe. They've been hiring mercenaries, and this is a great opportunity to gain their trust!
+Soul Guide Udan Mardui, the Chief Shaman of the Varka Silenos has a Divine Stone of Wisdom that we simply must have!
+If things don't go well with the Varkas, try the Ketra Orcs. They also have a stone. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-04.htm new file mode 100644 index 0000000000..d9a314ae66 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-04.htm @@ -0,0 +1,2 @@ +Grand Magister Fairen:
+ To create the fourth Stone of Commune, you must get a Divine Stone of Wisdom from the Ketra Orcs or the Varka Silenos. Gaining their trust won't be easy, but you must do it! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-05.htm new file mode 100644 index 0000000000..11e7adac40 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-05.htm @@ -0,0 +1,3 @@ +Grand Magister Fairen:
+ This rock that's worshipped by savages is called the Divine Stone of Wisdom. It's a fragment of the fourth Stone of Commune that we've been looking for! Now I'll put it together with the other pieces I already have...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-06.htm new file mode 100644 index 0000000000..aded23e362 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-06.htm @@ -0,0 +1,2 @@ +Grand Magister Fairen:
+ What are you still doing here? Take the Stone of Commune to the fourth Tablet of Vision. It should guide you there, but if not, just look at the Map! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-07.htm new file mode 100644 index 0000000000..cb2f28238a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-07.htm @@ -0,0 +1,5 @@ +Grand Magister Fairen:
+ The power that you felt comes from this small stone that I have. It's the fragment of the fourth Stone of Commune. To activate it properly, we must find the remainder of the pieces and assemble them.
+ The other fragments of the Stone of Commune are worshiped by the barbarians of this area as the Divine Stone of Wisdom. As far as I know, Ketra Orcs and Varka Silenos have them. You must gain their trust first and attain the stone by some means or other. But, both tribes are notorious for being rough and belligerent. I don't know which tribe you should approach...
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-08.htm new file mode 100644 index 0000000000..6cee13d61d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/3-08.htm @@ -0,0 +1,3 @@ +Grand Magister Fairen:
+ The two fragments fit together perfectly! Take this Stone of Commune and find the fourth Tablet of Vision.
+You must work diligently to become a Spectral Master, and become a role model for our family and all the summoners of the Ivory Tower! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-01.htm new file mode 100644 index 0000000000..de6c935870 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-01.htm @@ -0,0 +1,2 @@ +Mysterious Servitor:
+Ggguh! Ggguh! Don't let him get away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-010.htm new file mode 100644 index 0000000000..f4da2deb10 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-010.htm @@ -0,0 +1,6 @@ +Mysterious Servitor:
+Think hard before deciding who's your friend and who's your enemy!
+Take this, it came from him.
+I must return to my master!
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-011.htm new file mode 100644 index 0000000000..a8e88dc589 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-011.htm @@ -0,0 +1,4 @@ +Mysterious Servitor:
+Think hard before deciding who's your friend and who's your enemy!
+Take this, it came from him.
+I must return to my master! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-02.htm new file mode 100644 index 0000000000..de6c935870 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-02.htm @@ -0,0 +1,2 @@ +Mysterious Servitor:
+Ggguh! Ggguh! Don't let him get away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-03.htm new file mode 100644 index 0000000000..38d6231e8e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-03.htm @@ -0,0 +1,2 @@ +Mysterious Servitor:
+Ggguh! He escaped! I should have finished him once and for all! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-04.htm new file mode 100644 index 0000000000..de6c935870 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-04.htm @@ -0,0 +1,2 @@ +Mysterious Servitor:
+Ggguh! Ggguh! Don't let him get away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-05.htm new file mode 100644 index 0000000000..de6c935870 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-05.htm @@ -0,0 +1,2 @@ +Mysterious Servitor:
+Ggguh! Ggguh! Don't let him get away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-06.htm new file mode 100644 index 0000000000..a69b77551b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-06.htm @@ -0,0 +1,4 @@ +Mysterious Servitor:
+Ggguh! Ggguh! Don't let him get away!
+You got him!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-07.htm new file mode 100644 index 0000000000..ca9a1ac0fd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-07.htm @@ -0,0 +1,3 @@ +Mysterious Servitor:
+Ggguh! What?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-08.htm new file mode 100644 index 0000000000..ae21682036 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-08.htm @@ -0,0 +1,2 @@ +Mysterious Servitor:
+He's about to run! Ggguh! Commune with the tablet! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-09.htm new file mode 100644 index 0000000000..32f92708c7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/4-09.htm @@ -0,0 +1,2 @@ +Mysterious Servitor:
+Hurry! Ggguh! Commune with the stone tablet! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/5-01.htm new file mode 100644 index 0000000000..be336b667d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Hieroglyphics are engraved on the tablet. They emit a dim light, with a mysterious and powerful magic.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/5-02.htm new file mode 100644 index 0000000000..a82c674769 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. One of the voices is a familiar female whisper. But it quickly disappears.
+Slowly, you begin to visualize where the next Stone of Commune is... in the valley of dust... you see a second Tablet of Vision... and a female warrior in platinum armor. She is holding the stone... She unfolds her wings and flies away... and she's not alone...
+In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/5-03.htm new file mode 100644 index 0000000000..1adb1e56bf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/5-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You visualize the stone once again when touching the Tablet. In the yellow-brown valley... you see a female warrior with platinum wings... She is holding the stone in her hand.
+You are compelled to go forth and find the stone right now! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/6-01.htm new file mode 100644 index 0000000000..0aa237e1ce --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have the Stone of Commune to access this Tablet of Vision. The stone is being held by one of the female warriors with platinum wings. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/6-02.htm new file mode 100644 index 0000000000..dc184dab4f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Hieroglyphics are engraved on the tablet. They emit a dim light, with a mysterious and powerful magic.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/6-03.htm new file mode 100644 index 0000000000..337d0ec13e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. One of the voices is a familiar female whisper. But it quickly disappears.
+Slowly, you sense the stone. You see the third Tablet of Vision and an angel with two pairs of wings. She is holding the stone in her hand...
+In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/6-04.htm new file mode 100644 index 0000000000..11197559f5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/6-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You recall your visions, and see the third Tablet of the Vision and a female warrior with wings... She is holding the stone in her hand.
+You are compelled to go forth and find the stone right now! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-01.htm new file mode 100644 index 0000000000..c190dd5524 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Stone of Commune exists near the tablet. Putting your hands on the tablet will reveal the location of the stone. Put your hands on the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-02.htm new file mode 100644 index 0000000000..6b64555087 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-02.htm @@ -0,0 +1 @@ +Tablet of Vision:
Putting your hands on the tablet, your entire body is knocked back by something powerful but invisible. Then, it begins to appear. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-03.htm new file mode 100644 index 0000000000..49cd06bd0b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
The Tablet of Vision is inaccessible without the Stone of Commune. Defeat Vision Guardian Shakiel, and take it from him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-04.htm new file mode 100644 index 0000000000..b6367cf048 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-04.htm @@ -0,0 +1 @@ +Tablet of Vision:
Someone else is currently communing with the Tablet of Vision. Come back later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-05.htm new file mode 100644 index 0000000000..8efc2c048d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-05.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Ancient, indecipherable hieroglyphs are engraved upon the tablet. They emit a mysterious, dim light. There is something magical and powerful in the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-06.htm new file mode 100644 index 0000000000..fceaf58ad1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-06.htm @@ -0,0 +1 @@ +Tablet of Vision:
The Tablet of Vision begins to be wrapped up in brightness. Thunderous chanting clogs your mind and yet gives you understand of something.... something that cannot be understood! You hear a familiar woman's voice whispering again. The location of the next Stone of Commune is gradually becoming clear...The Shrine in Goddard Castle Town...There is Grand Magister Fairen...
Grand Magister Fairen has the Stone of Commune! The vision disappears slowly, and there is the Tablet of Vision, no longer emitting light. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-07.htm new file mode 100644 index 0000000000..27deeecf1b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/7-07.htm @@ -0,0 +1 @@ +Tablet of Vision:
Putting your hands on the tablet, the location of the Stone of Commune again becomes clear. Grand Magister Fairen has the fourth Stone of Commune. Go and get it from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/8-01.htm new file mode 100644 index 0000000000..780cc94ca4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/8-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Ancient, indecipherable hieroglyphs are engraved upon the tablet. They emit a mysterious, dim light. There is something magical and powerful in the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/8-02.htm new file mode 100644 index 0000000000..253449ab44 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/8-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. Before your eyes, a beautiful blonde woman and a knight wearing black armor appear, but soon vanish.
+ Slowly, you sense the existance of the next Stone of Commune... Aden Castle Town... Summoner Noctisse has the Stone of Commune in her hands. The radiance from the Tablet of Vision begins to diminish.
+ The vision slowly fades away, and soon the light from the stone is gone. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/8-03.htm new file mode 100644 index 0000000000..3760e76aeb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/8-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The moment you touch the tablet, the location of the next Stone of Commune is once again revealed to you. Noctisse, a Summoner in the temple of Aden Castle Town, has it!
+The Tablet of Vision commands you to go there! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/9-01.htm new file mode 100644 index 0000000000..e1787a093e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/9-01.htm @@ -0,0 +1 @@ +Tablet of Vision:
To decode the figures in the tablet, the Stone of Commune is needed. The fifth Stone of Commune is in the possession of the Archon of Halisha! You can find him at the Sepulchers or the Shrine of the Feudal Lords at the northeastern part of the Wall of Argos, and defeat low-grade evils. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/9-02.htm new file mode 100644 index 0000000000..82f824cfcc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/9-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Ancient, indecipherable hieroglyphs are engraved upon the tablet. They emit a mysterious, dim light. There is something magical and powerful in the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/9-03.htm new file mode 100644 index 0000000000..789433ee77 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/9-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. There is a vision of a beautiful blonde woman and a knight with black armor. The vision disappears. Slowly, you begin to visualize where the next Stone of Commune is...A vision appears...The sixth Tablet of Vision hidden in the wilds. Standing in front of the sixth tablet is the unfamiliar shadow of a human without legs...and the Stone of Commune, held in his hands, emits a dim light.
In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/9-04.htm new file mode 100644 index 0000000000..3fcf10a49c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/9-04.htm @@ -0,0 +1 @@ +Tablet of Vision:
Putting your hands on the tablet, the location of the Stone of Commune again becomes clear. The sixth Stone of Commune is hidden in the wilderness and there are ominious signs of a person's presence ...He is holding the Stone of Commune in his hands...Go and get the stone from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/Q00093_SagaOfTheSpectralMaster.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/Q00093_SagaOfTheSpectralMaster.java new file mode 100644 index 0000000000..d4c241e24b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00093_SagaOfTheSpectralMaster/Q00093_SagaOfTheSpectralMaster.java @@ -0,0 +1,105 @@ +/* + * 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.Q00093_SagaOfTheSpectralMaster; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Spectral Master (93) + * @author Emperorc + */ +public class Q00093_SagaOfTheSpectralMaster extends AbstractSagaQuest +{ + public Q00093_SagaOfTheSpectralMaster() + { + super(93); + _npc = new int[] + { + 30175, + 31287, + 31613, + 30175, + 31632, + 31646, + 31649, + 31653, + 31654, + 31655, + 31656, + 31613 + }; + Items = new int[] + { + 7080, + 7606, + 7081, + 7508, + 7291, + 7322, + 7353, + 7384, + 7415, + 7446, + 7112, + 0 + }; + Mob = new int[] + { + 27315, + 27242, + 27312 + }; + classid = new int[] + { + 111 + }; + prevclass = new int[] + { + 0x29 + }; + npcSpawnLocations = new Location[] + { + new Location(164650, -74121, -2871), + new Location(47429, -56923, -2383), + new Location(47391, -56929, -2370) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-01.htm new file mode 100644 index 0000000000..a83232b330 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-01.htm @@ -0,0 +1,4 @@ +Hardin:
+So, you want to be a Soultaker, eh? Well, you came at just the right time! First, you must accomplish a task to prove that you're worthy. Have you met a necromancer by the name of Hindemith? He was sent to spy on the followers of Lich King Akron, but it's been rumored that he's become a follower of that wicked despot! I haven't heard from him at all since the rumors started. Our guild is under increasing pressure to deal with Hindemith, one way or the other. Would you look into this matter for us?
+He's been seen around the Tablet of Vision. You should join those who have undertaken the Pilgrimage of Tablet of Vision. You'll likely find Hindemith among them.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-010.htm new file mode 100644 index 0000000000..c27154f8cc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-010.htm @@ -0,0 +1,3 @@ +Hardin:
+You're not ready to transfer classes. Come back when you've improved your strength and ability and I'll make you a Soultaker.
+(Only a character of level 76 or above may become a Soultaker. Don't abandon the quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-02.htm new file mode 100644 index 0000000000..42dabd7ba0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-02.htm @@ -0,0 +1,3 @@ +Hardin:
+Hmm... A Soultaker, eh? You're not ready yet. Come back when you've had more training.
+(The quest may only be undertaken by a Necromancer of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-03.htm new file mode 100644 index 0000000000..4a9ea55379 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-03.htm @@ -0,0 +1,4 @@ +Hardin:
+Excellent!
+Well, as I said, Hindemith has been seen near the Tablet of Vision. I believe that he's undertaken the Pilgrimage of the Tablets of Vision! Join that pilgrimage and find out what he's up to.
+First, visit High Priest Gregory in Goddard Castle Town. He'll tell you what to do next. Take a copy of our guild bulletin with you. Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-04.htm new file mode 100644 index 0000000000..7f6aa72a40 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-04.htm @@ -0,0 +1,4 @@ +Hardin:
+Please find out what you can about a necromancer named Hindemith who's been seen near the Tablet of Vision. A while back he was sent to spy on the followers of Lich King Akron. Word has come to me that he has actually allied with that wicked despot!
+I think Hindemith has undertaken the Pilgrimage of the Tablets of Vision. Join that pilgrimage and find out what he's up to.
+First, visit High Priest Gregory in Goddard Castle Town. He'll tell you what to do next. Pick up a guild bulletin on your way out! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-05.htm new file mode 100644 index 0000000000..b60d44d154 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-05.htm @@ -0,0 +1,5 @@ +Hardin:
+In order for a Necromancer to become a Soultaker, you must shed your mortal perspective and attain the consciousness of the gods. Long ago, the gods sealed this power and dispersed it throughout the world in order to keep Humans from reaching their full potential. You must reclaim this long-denied knowledge one tablet at a time.
+The Tablets of Vision hold the secret to this power. Find all six tablets and you will become more powerful than you can imagine. All Soultakers must complete the Pilgrimage of the Tablets of Vision.
+Keep an eye out for Hindemith while you're at it... I've heard rumors that he's joined forces with Lich King Akron!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-06.htm new file mode 100644 index 0000000000..47d2fcc7a9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-06.htm @@ -0,0 +1,3 @@ +Hardin:
+Ah, you're back! Do you bring news of Hindemith?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-07.htm new file mode 100644 index 0000000000..87ac789a5e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-07.htm @@ -0,0 +1,4 @@ +Hardin:
+I knew it! Hindemith couldn't have done such a thing! This should relieve the pressure our guild has been under, and get Hindemith out from under a cloud as well.
+By the way, while you were doing this, you've completed your own Pilgrimage of the Tablets of Vision.
+Henceforth you shall be known as a Soultaker! Congratulations! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-08.htm new file mode 100644 index 0000000000..50eb56b6cb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-08.htm @@ -0,0 +1,5 @@ +Hardin:
+I knew it! He would never have done such a thing! This will surely put the false rumors about him to rest once and for all.
+By the way, congratulations on completing the Pilgrimage of the Tablets of Vision! You've shown that you've got what it takes to be a Soultaker, but...
+You don't yet have the strength and ability you need to do a class transfer. Come back when you're ready and I'll make you a Soultaker!
+(Only a character of level 76 or above may become a Soultaker. Don't abandon the quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-09.htm new file mode 100644 index 0000000000..9e68047fe2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/0-09.htm @@ -0,0 +1,2 @@ +Hardin:
+Thanks for your hard work. Great job! Congratulations on becoming a Soultaker. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-01.htm new file mode 100644 index 0000000000..057053faaf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-01.htm @@ -0,0 +1,4 @@ +Information Broker Bavarin:
+High Priest Gregory of Goddard Castle Town? Yes, I remember him. He asked me for some information once.
+In fact, I still haven't given it to him. It was more work than I expected it to be... It won't be cheap!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-02.htm new file mode 100644 index 0000000000..d9ee4bffcc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-02.htm @@ -0,0 +1,3 @@ +Information Broker Bavarin:
+Bring me some ice crystals and I'll give you the report for the Truth Scholar.
+Speak with Chef Jeremy, who's getting ready for a cooking contest. He can tell you where to find some. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-03.htm new file mode 100644 index 0000000000..406ea7f010 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-03.htm @@ -0,0 +1,3 @@ +Information Broker Bavarin:
+So, this is the ice crystal that I've heard so much about! Well, hand it over!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-04.htm new file mode 100644 index 0000000000..c8e6f5b81d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-04.htm @@ -0,0 +1,2 @@ +Information Broker Bavarin:
+Take the report to High Priest Gregory of Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-05.htm new file mode 100644 index 0000000000..980a5f40ef --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-05.htm @@ -0,0 +1,3 @@ +Information Broker Bavarin:
+You can find ice crystals that continuously generate cold in this hot springs area. Bring me some of them. My back has been bothering me lately, and I want to make an ice pack.
+Speak with Chef Jeremy, who's getting ready for a cooking contest. He can tell you where to find some ice crystals. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-06.htm new file mode 100644 index 0000000000..31d0e07d78 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/1-06.htm @@ -0,0 +1,3 @@ +Information Broker Bavarin:
+Oh, that feels great! My back feels better already!
+Take this report to High Priest Gregory of Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-01.htm new file mode 100644 index 0000000000..e07b0bff93 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Someone nearby has the Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-02.htm new file mode 100644 index 0000000000..7ede2fa6d4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You see two figures. It's Hindemith and Lich King Akron!
+Icarus has the Stone of Commune! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-03.htm new file mode 100644 index 0000000000..ce99358e71 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Listen to Hindemith first. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-04.htm new file mode 100644 index 0000000000..8da1c3fd6f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone nearby has the Stone of Commune, but it's too noisy right now. Wait until it quiets down. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-05.htm new file mode 100644 index 0000000000..def1d71e82 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is covered with indecipherable hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-06.htm new file mode 100644 index 0000000000..81627b7e9d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-06.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+A sharp blast of knowlege courses through your cranium! You hear the sound of distant laughter.
+A man announces the birth of another Hero.
+The woman in blue disagrees... This is the last time she'll see the child!
+
+Communion with the six Tablets of Vision is complete. You've already listened to Hindemith. Go back to Hardin. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-07.htm new file mode 100644 index 0000000000..98ce256456 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. You've already listened to Hindemith. Go back to Hardin. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/11-01.htm new file mode 100644 index 0000000000..0840df0b25 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/11-01.htm @@ -0,0 +1,5 @@ +High Priest Gregory:
+Oh, you're back! Did you find Hindemith? I suppose he'd already been there, eh? His pilgrimage of the stone tablets is nearing fulfillment. Once he's completed it, it will be impossible to find him! You must find him quickly!
+I'll search for him as well...
+I do have the Stone of Commune, but you can't have it. I'll need it to find Hindemith. I can tell you how to find your own stone, however...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/11-02.htm new file mode 100644 index 0000000000..791fde1df3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/11-02.htm @@ -0,0 +1,4 @@ +High Priest Gregory:
+Get your next Stone of Commune from the Archon of Halisha inside the Four Sepulchers. You must form a party before you attempt this!
+If you have trouble forming a party, go to the Shrine of the Loyal and attack the Archon's minions. Their deaths will provide marks of Halisha. Collect 700 of them and the beast himself will appear!
+Halisha's minions are known as Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Guards. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/11-03.htm new file mode 100644 index 0000000000..791fde1df3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/11-03.htm @@ -0,0 +1,4 @@ +High Priest Gregory:
+Get your next Stone of Commune from the Archon of Halisha inside the Four Sepulchers. You must form a party before you attempt this!
+If you have trouble forming a party, go to the Shrine of the Loyal and attack the Archon's minions. Their deaths will provide marks of Halisha. Collect 700 of them and the beast himself will appear!
+Halisha's minions are known as Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Guards. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-01.htm new file mode 100644 index 0000000000..3b81e60a5b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-01.htm @@ -0,0 +1,6 @@ +High Priest Gregory:
+Ah, I heard that you were coming!
+Do you remember when Lich King Akron's gang slaughtered the priests of Goddard Castle Town, and then murdered the party sent out to search for them? I heard that Hindemith was seen with the gang at the site of the massacre, but why would he do such a thing?
+I'm determined to get to the bottom of this, but as you can see, I can't just pick up and leave! Would you help me?
+By the way...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-02.htm new file mode 100644 index 0000000000..11a2872f16 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-02.htm @@ -0,0 +1,2 @@ +High Priest Gregory:
+Have you been to the hot springs resort yet? Please go there and speak with Information Broker Bavarin. Bring me the report I asked him for, then I'll tell you exactly what you need to do to find Hindemith. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-03.htm new file mode 100644 index 0000000000..cccc767a2f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-03.htm @@ -0,0 +1,6 @@ +High Priest Gregory:
+Ah, the report! Let me see that!
+Oh no! It seems my worst fears about Hindemith are true! He's actually joined Lich King Akron's gang!
+First, I suppose I should tell you about the pilgrimage that Hindemith is believed to have undertaken. It's the quest to become a Soultaker. This test requires the pilgrim to absorb knowledge from six stone Tablets of Vision. This process of absorption is known as communing. Each Tablet of Vision has a corresponding Stone of Commune. These stones are essential to the process.
+It seems the best way to find Hindemith would be to follow the path that he's chosen. I will now give you the first Stone of Commune. Go to the place where Hindemith was seen last and use it to commune with the Tablet of Vision there. Your new path will then open before you!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-04.htm new file mode 100644 index 0000000000..20f1345a14 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-04.htm @@ -0,0 +1,2 @@ +High Priest Gregory:
+Try communicating with the Tablet of Vision south of the Tower of Insolence using the Stone of Commune that I gave you. The path will then be revealed to you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-05.htm new file mode 100644 index 0000000000..e94d8d47f6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-05.htm @@ -0,0 +1,2 @@ +High Priest Gregory:
+Before you start after Hindemith, I need you to do something for me. Go see Information Broker Bavarin at the hot springs and get the report I asked him to prepare. Bring it to me and I'll tell you how to find Hindemith. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-06.htm new file mode 100644 index 0000000000..23d5e8d9f8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/2-06.htm @@ -0,0 +1,4 @@ +High Priest Gregory:
+ Stones of commune and Tablets of Vision have a magical mutual attraction. You can use this force to locate the Tablets of Vision.
+Put simply, when you have a Stone of Commune, the location of the corresponding Tablet of Vision will appear in your mind. Once you find the next stone, you will see where to find the next tablet. This is the path that Hindemith has chosen, and you will likely find him there.
+This process will become clearer to you as you move along. Now, take the Stone of Commune I gave you and find the first Tablet of Vision south of the Tower of Insolence! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-01.htm new file mode 100644 index 0000000000..11456ba3c7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-01.htm @@ -0,0 +1,6 @@ +High Priest Gregory:
+Ah, you're back! Do you bring news of Hindemith?
+Yes! So Waldstein saw him recently, eh? Well, now we can be certain that he's on the Pilgrimage of the Tablets of Vision. You're sure to meet up with him if you continue that path.
+I have a part of the next Stone of Commune, but must have the other piece in order to complete it.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-02.htm new file mode 100644 index 0000000000..79153f6b37 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-02.htm @@ -0,0 +1,3 @@ +High Priest Gregory:
+ Then visit the Ketra Orcs to get the missing fragment, the Divine Stone of Wisdom. If you earn the trust of Asefa, guide of dead souls, through Ketra's Messenger Wahkan and prove to her your wisdom, you'll find it.
+If you change your mind halfway, you can get it from the best Shaman of Varka Silenos, Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk. Just bring it to me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-03.htm new file mode 100644 index 0000000000..1ae9827c02 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-03.htm @@ -0,0 +1,3 @@ +High Priest Gregory:
+ Then visit the Varka Silenos to get the missing fragment, the Divine Stone of Wisdom. If you earn the Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk and prove to her your wisdom, you'll find it.
+If you change your mind halfway, you can get it from the best Shaman of Ketra Orcs, Soul Guide Asefa through through Ketra's Messenger Wahkan, just bring it to me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-04.htm new file mode 100644 index 0000000000..318aa6a0a0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-04.htm @@ -0,0 +1,3 @@ +High Priest Gregory:
+Go to the Ketra Orcs or the Varka Silenos to get the missing fragment, the Divine Stone of Wisdom
+. They both know the mysterious knowledge of the stone, but not its exact use. They'll give it to the wisest of the tribe. So, it is presented as some kind of mark for ‘the wisest man of the tribe.' If you earn the trust of Asefa, guide of dead souls, through Ketra's Messenger Wahkan and prove to her your wisdom, you'll find it. Or, you can get the Divine Stone of Wisdom from Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk by gaining his trust and proving your wisdom. Either way is fine. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-05.htm new file mode 100644 index 0000000000..3c0b3e45c2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-05.htm @@ -0,0 +1,5 @@ +High Priest Gregory:
+Ah, the Divine Stone of Wisdom! Good job!
+I heard that Hindemith was seen yesterday in the Varka Silenos stronghold and the Ketra Orc advance base. He must've been looking for the Stone of Commune, too! He may be nearing the Tablet of Vision as we speak!
+We must hurry! Shall I join these two stones together?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-06.htm new file mode 100644 index 0000000000..9096cd8239 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-06.htm @@ -0,0 +1,2 @@ +High Priest Gregory:
+Take the Stone of Commune to the Tablet of Vision north of the Varka Silenos barracks. If you hurry, you may find Hindemith there! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-07.htm new file mode 100644 index 0000000000..2e0f3fe093 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-07.htm @@ -0,0 +1,7 @@ +High Priest Gregory:
+Asefa is the chief shaman and guide of dead souls of the Ketra Orcs. Udan Mardui holds the same position among the Varka Silenos. Each of them possesses a Divine Stone of Wisdom which is a fragment of this Stone of Commune. Bring one of the stones to me.
+Both tribes seem vaguely aware that the stone contains powerful magic and mysterious knowledge, but they have no idea how to access it! They actually give it away as a prize to the person they think is smartest among them!
+Prove your wisdom to Asefa of the Ketra Orcs or Udan Mardui of the Varka Silenos and they will give you the stone.
+Which tribe would you prefer to obtain the stone from?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-08.htm new file mode 100644 index 0000000000..c06e0292f9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/3-08.htm @@ -0,0 +1,2 @@ +High Priest Gregory:
+ The Stone of Commune is now complete. Go find the Tablet of Vision north of the Varka Silenos barracks. If you hurry, you may find Hindemith there! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-01.htm new file mode 100644 index 0000000000..3375408521 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-01.htm @@ -0,0 +1,2 @@ +Hindemith Truevoice:
+If I keep this up, he'll get away! Somebody help me! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-010.htm new file mode 100644 index 0000000000..c1f7f3cbcc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-010.htm @@ -0,0 +1,4 @@ +Hindemith Truevoice:
+Did you say you were sent by Master Hardin? Tell him not to worry. As you now know, contrary to rumors, I would never actually join the gang of Lich King Akron! I couldn't afford to arouse their suspicious by trying to contact my master...
+Yes, that's right! Take this Stone of Commune that I took from Lich King Akron to the last stone tablet and commune with it. You've gone through many trials up to now, haven't you? Surely you've done what you need to do in order to transfer class. I'll bet the next time I see you, you'll be a Soultaker! Now I'm off after Akron!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-011.htm new file mode 100644 index 0000000000..0221537270 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-011.htm @@ -0,0 +1,3 @@ +Hindemith Truevoice:
+Did you say you were sent by Master Hardin? Tell him not to worry. As you now know, contrary to rumors, I would never actually join the gang of Lich King Akron! I couldn't afford to arouse their suspicious by trying to contact my master...
+Yes, that's right! Take this Stone of Commune that I took from Lich King Akron to the last stone tablet and commune with it. You've gone through many trials up to now, haven't you? Surely you've done what you need to do in order to transfer class. I'll bet the next time I see you, you'll be a Soultaker! Now I'm off after Akron! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-02.htm new file mode 100644 index 0000000000..21f915aa2b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-02.htm @@ -0,0 +1,2 @@ +Hindemith Truevoice:
+I'd better do something quick or he'll get away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-03.htm new file mode 100644 index 0000000000..0d6a17c5c7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-03.htm @@ -0,0 +1,2 @@ +Hindemith Truevoice:
+Oh no, I've lost him again! I must catch him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-04.htm new file mode 100644 index 0000000000..8f59686e8b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-04.htm @@ -0,0 +1,2 @@ +Hindemith Truevoice:
+If I keep this up he'll get away! Somebody, please help me! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-05.htm new file mode 100644 index 0000000000..21f915aa2b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-05.htm @@ -0,0 +1,2 @@ +Hindemith Truevoice:
+I'd better do something quick or he'll get away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-06.htm new file mode 100644 index 0000000000..531cf57dcc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-06.htm @@ -0,0 +1,4 @@ +Hindemith Truevoice:
+Huff puff! Thanks for helping me out! I'm Hindemith! Master Hardin sent me to find out what Lich King Akron is up to. I needed to examine his stronghold closely, so I went undercover and joined the gang of the Lich King himself! I'm sure that set tongues wagging back home!
+I recently joined the king on the Pilgrimage of the Stone Tablets. Akron is very interested in the power of the Tablets of Vision. Naturally, I couldn't allow the power of the last Tablet of Vision to fall into his hands! Without thinking of the consequences, I foolishly attacked him and exposed my true identity!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-07.htm new file mode 100644 index 0000000000..ba4d45bf1b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-07.htm @@ -0,0 +1,4 @@ +Hindemith Truevoice:
+Huff puff! Thanks for helping me out! I'm Hindemith! Master Hardin sent me to find out what Lich King Akron is up to. I needed to examine his stronghold closely, so I went undercover and joined the gang of the Lich King himself! I'm sure that set tongues wagging back home!
+I recently joined the king on the Pilgrimage of the Stone Tablets. Akron is very interested in the power of the Tablets of Vision. Naturally, I couldn't allow the power of the last Tablet of Vision to fall into his hands! Without thinking of the consequences, I foolishly attacked him and exposed my true identity!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-08.htm new file mode 100644 index 0000000000..eaf4ff891a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-08.htm @@ -0,0 +1,2 @@ +Hindemith Truevoice:
+Oh no! He's a handful, alright! Take the Stone of Commune I gave you and commune with the Tablet of Vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-09.htm new file mode 100644 index 0000000000..883a38b336 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/4-09.htm @@ -0,0 +1,2 @@ +Hindemith Truevoice:
+Whew! I'm going to follow Akron a while longer. Take the Stone of Commune to the Tablet of Vision and commune with it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/5-01.htm new file mode 100644 index 0000000000..ee2c9ed655 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/5-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+There is no sign of Hindemith.
+The tablet is covered with indecipherable hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/5-02.htm new file mode 100644 index 0000000000..c405fe8d1a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if she were quietly laughing at you...
+You sense the location of the next Stone of Commune...
+It is being held by the Guardians of Forbidden Knowledge beside the Tablet of Vision in the southern Valley of the Saints \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/5-03.htm new file mode 100644 index 0000000000..110fd4c05e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet is futile. It seems that there is no sign of Hindemith. You must go and find the next Stone of Commune. You sense that the next stone is being held by the Guardians of Forbidden Knowledge beside the Tablet of Vision in the southern Valley of the Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/6-01.htm new file mode 100644 index 0000000000..acc4cdc45c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have a certain Stone of Commune to access this Tablet of Vision. You sense that one of the Guardians of Forbidden Knowledge protecting this tablet has the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/6-02.htm new file mode 100644 index 0000000000..bd3611976a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/6-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+There is no sign of Hindemith, only a bit of ash on the ground.
+The Tablet of Vision is engraved with unreadable hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/6-03.htm new file mode 100644 index 0000000000..caa8f0dc38 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if she were quietly laughing at you...
+You sense the location of the next Stone of Commune...
+It is being held by someone with wings beside the Tablet of Vision along the southeastern Wall of the Argos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/6-04.htm new file mode 100644 index 0000000000..7dea03093e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet is futile. It seems that there is no sign of Hindemith. You must go and find the next Stone of Commune. You sense that the next stone is being held by someone beside the Tablet of Vision along the southeastern Wall of the Argos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-01.htm new file mode 100644 index 0000000000..cd4c1b740e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+There are many footprints on the ground and signs of an explosion. Did a fight happen here? These ashes are the same as the ones I found at the last tablet. Could it be Cursed Bone powder? Hmm... The color's not quite right...
+Someone nearby has the Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-02.htm new file mode 100644 index 0000000000..e40208f862 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Archangel Iconoclasis? Isn't he the one with the wings?
+I sense that he has the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-03.htm new file mode 100644 index 0000000000..5f4f2be974 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The time has come to get the first Stone of Commune. Destroy Iconoclasis and take his stone. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-04.htm new file mode 100644 index 0000000000..eb467e2abb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone nearby must have the Stone of Commune! It's too noisy now. Try again later when things quiet down a bit. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-05.htm new file mode 100644 index 0000000000..695e98b668 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-05.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The footprints, the signs of an explosion and the silver Cursed Bone powder indicate that this was the site of the battle between Hindemith and Iconoclasis! It seems that Hindemith already left on his pilgrimage.
+The Tablet of Vision is engraved with incomprehensible hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-06.htm new file mode 100644 index 0000000000..af543b0a80 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-06.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A vision appears of a woman in blue.
+Suddenly the location of the next Stone of Commune becomes clear.
+High Priest Gregory in Goddard Castle Town has it! Get it from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-07.htm new file mode 100644 index 0000000000..6b187e2692 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/7-07.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet is futile. You must find the next Stone of Commune!
+ High Priest Gregory of Goddard Castle Town has it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/8-01.htm new file mode 100644 index 0000000000..faaf954e29 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Hindemith is nowhere to be found! Only this strange, silver Cursed Bone powder scattered around the tablet. He must have already left to find the next Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/8-02.htm new file mode 100644 index 0000000000..aa6030c78c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/8-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear a man's voice lingering in the air...
+The location of the next Stone of Commune is revealed to me! The next Stone of Commune... I can feel that
+High Priest Gregory of Goddard Castle Town has it. Let's go to Gregory. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/8-03.htm new file mode 100644 index 0000000000..d9ed3df880 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. Get the next Stone of Commune from High Priest Gregory of Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/9-01.htm new file mode 100644 index 0000000000..b2df930f81 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/9-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The Tablet of Vision is useless without a Stone of Commune. Kill the Archon of Halisha and take it from him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/9-02.htm new file mode 100644 index 0000000000..0e94a0e6a5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/9-02.htm @@ -0,0 +1,3 @@ + Tablet of Vision:
+There's no sign of Hindemith, just the silvery bone powder scattered around the tablet. He must've gone to find the next Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/9-03.htm new file mode 100644 index 0000000000..f2f6a392e5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/9-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
A sharp blast of knowlege courses through your cranium! A vision appears... of a black knight!
The location of the next Stone of Commune flashes into your mind!
Near the next Tablet of Vision in the northern part of the Forest of the Dead, a suspicious figure seems to have the next Stone of Commune. This may be your last chance to meet Hindemith! Hurry! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/9-04.htm new file mode 100644 index 0000000000..573d0b2ab1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/9-04.htm @@ -0,0 +1 @@ +Tablet of Vision:
Communing with this tablet is completed. It's time to find the next Stone of Commune. Near the Tablet of Vision in the northern part of the Forest of the Dead, it seems a suspicious figure has the Stone of Commune. This may be your last chance to meet Hindemith! Hurry! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/Q00094_SagaOfTheSoultaker.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/Q00094_SagaOfTheSoultaker.java new file mode 100644 index 0000000000..06fc1c4ab4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00094_SagaOfTheSoultaker/Q00094_SagaOfTheSoultaker.java @@ -0,0 +1,105 @@ +/* + * 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.Q00094_SagaOfTheSoultaker; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Soultaker (94) + * @author Emperorc + */ +public class Q00094_SagaOfTheSoultaker extends AbstractSagaQuest +{ + public Q00094_SagaOfTheSoultaker() + { + super(94); + _npc = new int[] + { + 30832, + 31623, + 31279, + 31279, + 31645, + 31646, + 31648, + 31650, + 31654, + 31655, + 31657, + 31279 + }; + Items = new int[] + { + 7080, + 7533, + 7081, + 7509, + 7292, + 7323, + 7354, + 7385, + 7416, + 7447, + 7085, + 0 + }; + Mob = new int[] + { + 27257, + 27243, + 27265 + }; + classid = new int[] + { + 95 + }; + prevclass = new int[] + { + 0x0d + }; + npcSpawnLocations = new Location[] + { + new Location(191046, -40640, -3042), + new Location(46066, -36396, -1685), + new Location(46087, -36372, -1685) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-01.htm new file mode 100644 index 0000000000..b38d4b821c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-01.htm @@ -0,0 +1,4 @@ +Dark Knight Mordred:
+Hmm... So, you want to be a Hell Knight, eh? I'm glad you came! Well, you'll have to prove yourself by completing a mission! Have you heard of a Dark Avenger named Waldstein? He was sent out some time ago in pursuit of the Death Lords, and hasn't been heard from since. Please find out what happened to him! It's been rumored that he actually joined the Death Lords! Our guild is under a lot of pressure to deal with this matter, one way or the other. Will you investigate this for us?
+There have been reports that Waldstein was seen in the vicinity of the Tablet of Vision. You may need to undertake the Pilgrimage of the Tablet of Vision if you're going to find him...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-010.htm new file mode 100644 index 0000000000..3e548b74c6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-010.htm @@ -0,0 +1,3 @@ +Dark Knight Mordred:
+You're still not quite ready for a class transfer. Come back when you're older!
+(Only a character of level 76 or above may transfer to the Hell Knight class. Don't abandon the quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-02.htm new file mode 100644 index 0000000000..66480ed393 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-02.htm @@ -0,0 +1,3 @@ +Dark Knight Mordred:
+You, a Hell Knight? Ha! Come back when you've grown up!
+(This quest may only be undertaken by a Dark Avenger of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-03.htm new file mode 100644 index 0000000000..a3d45eb8fa --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-03.htm @@ -0,0 +1,4 @@ +Dark Knight Mordred:
+Will you find Waldstein for us?
+As I said, Waldstein's been seen near the Tablet of Vision recently. He's probably paying homage to it... Join the pilgrims of the Tablet of Vision so you can follow Waldstein. Find out what he's up to.
+Speak with Guard Bayard of Goddard Castle Town. He'll tell you what you need to do next. You should take a copy of the guild bulletin with you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-04.htm new file mode 100644 index 0000000000..a221049da3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-04.htm @@ -0,0 +1,4 @@ +Dark Knight Mordred:
+Please try and find Waldstein near the Tablet of Vision. He was dispatched in pursuit of the Death Lords, and rumors persist that he's joined them!
+Join the Pilgrimage of the Tablet of Vision and find out what he's up to.
+Visit Guard Bayard of Goddard Castle Town. He'll tell you what to do next. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-05.htm new file mode 100644 index 0000000000..f34dd3a898 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-05.htm @@ -0,0 +1,5 @@ +Dark Knight Mordred:
+Haven't you heard? For a Dark Avenger to become a Hell Knight, he must leave the Human realm and enter the Realm of the Gods! Basically, he must receive the power that was forbidden by the gods. This power was sealed by the gods and scattered throughout the world, to keep the Humans from gaining their full potential.
+The Tablets of Vision are the keepers of this power. When you absorb the information from all six Tablets of Vision, you'll gain a power that's far superior to any that anyone has ever possessed! Such is the path of the Hell Knight.
+Waldstein's been spotted lurking near the Tablets of Vision. Find him and see if it's true that he's joined the Death Lords.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-06.htm new file mode 100644 index 0000000000..28fd4c9cb3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-06.htm @@ -0,0 +1,3 @@ +Dark Knight Mordred:
+Ah, you're back! Do you have news of Waldstein?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-07.htm new file mode 100644 index 0000000000..b4a6745161 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-07.htm @@ -0,0 +1,4 @@ +Dark Knight Mordred:
+What a relief! I should've known not to listen to rumors!
+By the way, congratulations on completing the pilgrimage of the Tablet of Vision! You're more that qualified to be a Hell Knight! In fact, I'll promote you myself!
+Congratulations! You're a a Hell Knight! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-08.htm new file mode 100644 index 0000000000..925f218a40 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-08.htm @@ -0,0 +1,5 @@ +Dark Knight Mordred:
+Oh, I should've known that Waldstein wouldn't join the Death Lords! This should stop any actions against Waldstein...
+By the way, congratulations on completing the Pilgrimage of the Tablet of Vision! You surely earned the right to be a Hell Knight. If I could, I'd transfer you myself right now, but unfortunately...
+You're not quite ready for a class transfer. Come back when you're older!
+(Only a character of level 76 or above may transfer to the Hell Knight class. Don't abandon the quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-09.htm new file mode 100644 index 0000000000..4e0eeaeb78 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/0-09.htm @@ -0,0 +1,2 @@ +Dark Knight Mordred:
+Thanks for your hard work! Congratulations, you're a Hell Knight! Good job! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-01.htm new file mode 100644 index 0000000000..0b8df2e3d9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-01.htm @@ -0,0 +1,4 @@ +Information Broker Bavarin:
+Guard Bayard of Goddard Castle Town? It sounds so strange hearing him called that! He was once Captain of the Knights! He got mixed up in the intrigues within the Order of the Knights and became a scapegoat! He was demoted to guard! Poor man!
+Well, anyway, I have the report that Mr. Bayard requested. This was a very complicated investigation, so the information won't be free...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-02.htm new file mode 100644 index 0000000000..90d9e3a3e4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-02.htm @@ -0,0 +1,3 @@ +Information Broker Bavarin:
+Bring me some ice crystals and I'll give you the report for the Truth Scholar.
+Speak with Chef Jeremy, who's getting ready for a cooking contest. He can tell you where to find some ice crystals. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-03.htm new file mode 100644 index 0000000000..471188035a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-03.htm @@ -0,0 +1,3 @@ +Information Broker Bavarin:
+So, this is the ice crystal I've heard so much about? Hand it over!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-04.htm new file mode 100644 index 0000000000..274468d74b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-04.htm @@ -0,0 +1,2 @@ +Information Broker Bavarin:
+Didn't you hear me? Take the report I gave you to Mr. Bayard. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-05.htm new file mode 100644 index 0000000000..980a5f40ef --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-05.htm @@ -0,0 +1,3 @@ +Information Broker Bavarin:
+You can find ice crystals that continuously generate cold in this hot springs area. Bring me some of them. My back has been bothering me lately, and I want to make an ice pack.
+Speak with Chef Jeremy, who's getting ready for a cooking contest. He can tell you where to find some ice crystals. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-06.htm new file mode 100644 index 0000000000..e0463c7ef9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/1-06.htm @@ -0,0 +1,3 @@ +Information Broker Bavarin:
+Oh, that feels good! My back feels better already!
+Here's the report. Take it to Mr. Bayard. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-01.htm new file mode 100644 index 0000000000..fc44ccb8f5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Someone nearby has the Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-02.htm new file mode 100644 index 0000000000..260398b813 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You see two figures! It's Waldstein and Death Lord Hallate.
+Hallate has the Stone of Commune! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-03.htm new file mode 100644 index 0000000000..5ab0ce7f17 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Listen to Waldstein first. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-04.htm new file mode 100644 index 0000000000..56ebae2bec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone around here has the Stone of Commune, but it's too noisy now. Try again later when things quiet down a bit. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-05.htm new file mode 100644 index 0000000000..1a0530a2d6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is covered with indecipherable hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-06.htm new file mode 100644 index 0000000000..b0e48d7874 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-06.htm @@ -0,0 +1,6 @@ +Tablet of Vision:
+A sharp blast of knowlege courses through your cranium! You hear the sound of distant laughter.
+A man announces the birth of another Hero.
+The woman in blue disagrees... This is the last time she'll see the child!
+
+Communion with the six Tablets of Vision is complete. You've already heard what Waldstein had to say, so go back to Dark Knight Mordred. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-07.htm new file mode 100644 index 0000000000..caaf866ad3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be futile. You've heard what Waldstein had to say, so go back to Dark Knight Mordred. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/11-01.htm new file mode 100644 index 0000000000..fba659c57b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/11-01.htm @@ -0,0 +1,4 @@ +Guard Bayard:
+You didn't find Waldstein? He'll be hard to find once the pilgrimage is over. You must act swiftly!
+Now I'll join the search. You'll need your own Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/11-02.htm new file mode 100644 index 0000000000..43fbd69519 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/11-02.htm @@ -0,0 +1,3 @@ +Guard Bayard:
+To find the next stone you must defeat the Archon of Halisha inside the Four Sepulchers. To enter will not be easy. If you can't form a strong party, go to the Shrine of the Loyal. There you'll find Halisha's subordinates. Collect 700 of their marks and the Archon of Halisha will appear.
+They include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights, and Shrine Guards. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/11-03.htm new file mode 100644 index 0000000000..8027964b02 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/11-03.htm @@ -0,0 +1,3 @@ +Guard Bayard:
+To find the next stone you must defeat the Archon of Halisha inside the Four Sepulchers. To enter will not be easy. If you can't form a strong party, go to the Shrine of the Loyal. There you'll find Halisha's subordinates. Collect 700 of their marks and the Archon of Halisha will appear.
+They include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights, and Shrine Guards. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-01.htm new file mode 100644 index 0000000000..814002278a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-01.htm @@ -0,0 +1,7 @@ +Guard Bayard:
+I'm glad you came to me about Waldstein.
+Do you remember the massacre of priests in Goddard Castle Town by the Death Lords some time ago? Their pursuers were killed as well. I heard Waldstein was seen traveling with the Death Lords!
+I find it hard to believe such a trustworthy man would join them, so I'm investigating this myself.
+Being a guard limits my ability to act. Others are afraid of revenge and have quit helping. Your help will ensure that justice will prevail!
+By the way...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-02.htm new file mode 100644 index 0000000000..7e2530e3c5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-02.htm @@ -0,0 +1,2 @@ +Guard Bayard:
+Have you gone to the hot springs area yet? Go see Information Broker Bavarin and get the report. He should be finished. Bring it to me and I'll tell you how to nab Waldstein. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-03.htm new file mode 100644 index 0000000000..477bf7c87a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-03.htm @@ -0,0 +1,7 @@ +Guard Bayard:
+Good work! Show me the report.
+Hmm... This confirms Waldstein was seen with the gang of Death Lords!
+It's believed Waldstein is making the Pilgrimage of the Tablet of Vision to become a Hell Knight.
+To complete the pilgrimage you must commune with each of six stone tablets. You must have a Stone of Commune for each tablet. Upon completion of all six you will gain a level.
+Follow Waldstein's footsteps to find him. Here's the first Stone of Commune. Use it to commune with the Tablet of Vision where he was last seen. The path to follow will then open to you.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-04.htm new file mode 100644 index 0000000000..88bcb3c8e3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-04.htm @@ -0,0 +1,2 @@ +Guard Bayard:
+Try communicating with the Tablet of Vision south of the Tower of Insolence by using the Stone of Commune that I gave you. The path will then be revealed to you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-05.htm new file mode 100644 index 0000000000..baac006502 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-05.htm @@ -0,0 +1,2 @@ +Guard Bayard:
+Go and see Information Broker Bavarin at the hot springs area. Bring me the report I asked him to prepare. Then I'll tell you how to find Waldstein. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-06.htm new file mode 100644 index 0000000000..2e1505ebb8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/2-06.htm @@ -0,0 +1,4 @@ +Guard Bayard:
+ The Stone of Commune and the Tablet of Vision are attracted to each other.This will guide you.
+ Simply put, commune with the tablet and the location of the next stone will be revealed to you. Once you find the next stone, you will see where to find the next tablet. This is Waldstein's path.
+ Once you commune with the Tablet of Vision you'll understand. Here's the first stone, now go! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-01.htm new file mode 100644 index 0000000000..354663a8a5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-01.htm @@ -0,0 +1,5 @@ +Guard Bayard:
+Back, huh? Any clues about Waldstein?
+Yes? Now we can be sure he's on the Pilgrimage of the Tablets of Vision! If you continue the pilgrimage, I'm sure you'll find him.
+I have the next Stone of Commune. But it is unstable. You must find the missing fragment.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-02.htm new file mode 100644 index 0000000000..1fb294a315 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-02.htm @@ -0,0 +1,3 @@ +Guard Bayard:
+Well. Then visit the Ketra Orcs to get the missing fragment, the Divine Stone of Wisdom. If you earn the trust of Asefa, guide of dead souls, through Ketra's Messenger Wahkan and prove to her your wisdom, you'll find it.
+If you change your mind halfway, you can get it from the best Shaman of Varka Silenos, Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk., just bring it to me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-03.htm new file mode 100644 index 0000000000..d23d57dbfa --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-03.htm @@ -0,0 +1,3 @@ +Guard Bayard:
+Well, then visit the Varka Silenos to get the missing fragment, the Divine Stone of Wisdom. If you earn the Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk and prove to her your wisdom, you'll find it.
+If you change your mind halfway, you can get it from the best Shaman of Ketra Orcs, Soul Guide Asefa through through Ketra's Messenger Wahkan, just bring it to me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-04.htm new file mode 100644 index 0000000000..4c8c1b23c1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-04.htm @@ -0,0 +1,3 @@ +Guard Bayard:
+Go to the Ketra Orcs or the Varka Silenos to get the missing fragment, the Divine Stone of Wisdom
+. They both know the mysterious knowledge of the stone, but not its exact use. They'll give it to the wisest of the tribe. So, it is presented as some kind of mark for ‘the wisest man of the tribe.' If you earn the trust of Asefa, guide of dead souls, through Ketra's Messenger Wahkan and prove to her your wisdom, you'll find it. Or, you can get the Divine Stone of Wisdom from Soul Guide Udan Mardui through Varka's Messenger Naran Ashanuk by gaining his trust and proving your wisdom. Either way is fine. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-05.htm new file mode 100644 index 0000000000..233508ad03 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-05.htm @@ -0,0 +1,5 @@ +Guard Bayard:
+You got the stone!
+Waldstein was seen yesterday in the Varka Silenos stronghold and the Ketra Orc advance base. It seems like Waldstein was also looking for a stone. He may be headed towards the tablet!
+Let's hurry! I'll stabilize the stone.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-06.htm new file mode 100644 index 0000000000..6fcdd6f744 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-06.htm @@ -0,0 +1,2 @@ +Guard Bayard:
+ Take the Stone of Commune to the the Tablet of Vision north of the Varka Silenos barracks. Hurry up and find Waldstein! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-07.htm new file mode 100644 index 0000000000..c408ad1508 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-07.htm @@ -0,0 +1,6 @@ +Guard Bayard:
+Asefa, Chief Shaman of the Ketra Orcs, and Udan Mardui, Chief Shaman of Varka Silenos are both guides of dead souls. Each has a Divine Stone of Wisdom, a fragment of the Stone of Commune. Bring one to me.
+They both know the mysterious knowledge of the stone, but not its exact use. They'll give it to the wisest of the tribe. Earn their trust, and you'll get the fragment.
+Which side will you choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-08.htm new file mode 100644 index 0000000000..662754ee74 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/3-08.htm @@ -0,0 +1,2 @@ +Guard Bayard:
+The stone is complete! Go to the Tablet of Vision north of the Varka Silenos barracks. Hurry and find Waldstein! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-01.htm new file mode 100644 index 0000000000..f372a24689 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-01.htm @@ -0,0 +1,2 @@ +Disgraced Knight Waldstein:
+Oh, no! I'll miss him if I keep this up! Help me! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-010.htm new file mode 100644 index 0000000000..061de8b7b9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-010.htm @@ -0,0 +1,4 @@ +Disgraced Knight Waldstein:
+Master Mordred sent you, right? Tell him not to worry! He shouldn't believe silly rumors!
+Take this Stone of Commune that I took from Death Lord Hallate and let it react with the last tablet. This will be your final challenge before you become a Hell Knight. Until we meet again... I'm off to find Hallate!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-011.htm new file mode 100644 index 0000000000..4b4985e9c7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-011.htm @@ -0,0 +1,4 @@ +Disgraced Knight Waldstein:
+Master Mordred sent you, right? Tell him not to worry! He shouldn't believe silly rumors!
+Take this Stone of Commune that I took from Death Lord Hallate and let it react with the last tablet. This will be your final challenge before you may become a Hell Knight. Until we meet again... I'm off to find Hallate!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-02.htm new file mode 100644 index 0000000000..acdec086e6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-02.htm @@ -0,0 +1,2 @@ +Disgraced Knight Waldstein:
+Oh, no! I'll miss him if I keep this up! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-03.htm new file mode 100644 index 0000000000..21c154a3f8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-03.htm @@ -0,0 +1,2 @@ +Disgraced Knight Waldstein:
+Missed him again! I must catch him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-04.htm new file mode 100644 index 0000000000..e01293dc29 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-04.htm @@ -0,0 +1,2 @@ +Disgraced Knight Waldstein:
+I really need help or he's going to get away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-05.htm new file mode 100644 index 0000000000..5aa47b611f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-05.htm @@ -0,0 +1,2 @@ +Disgraced Knight Waldstein:
+He's getting away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-06.htm new file mode 100644 index 0000000000..52ea1a3862 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-06.htm @@ -0,0 +1,4 @@ +Disgraced Knight Waldstein:
+Thanks for the help! Master Mordred ordered me to locate the Death Lords, and I decided to infiltrate them to gather more information. This created some nasty rumors about me back in the village...
+Lately, I've been on a pilgrimage with the Death Lords. They're very interested in obtaining the power sealed within the Tablet of Vision. I couldn't bear seeing them obtain the power of the final tablet, and foolishly revealed my true identity by attacking them! I feel like such a fool!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-07.htm new file mode 100644 index 0000000000..acc8c57cc6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-07.htm @@ -0,0 +1,4 @@ +Disgraced Knight Waldstein:
+Thanks for the help! Master Mordred ordered me to locate the Death Lords, and I decided to infiltrate them to gather more information. This created some nasty rumors about me back in the village...
+Lately I've been on a pilgrimage with the Death Lords. They're very interested in obtaining the power sealed within the Tablet of Vision. I couldn't bear seeing them obtain the power of the final tablet, and foolishly revealed my true identity by attacking them! I feel like such an idiot!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-08.htm new file mode 100644 index 0000000000..c18d504c25 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-08.htm @@ -0,0 +1,2 @@ +Disgraced Knight Waldstein:
+This won't be easy! You must allow the Tablet of Vision and the Stone of Commune to react with one another. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-09.htm new file mode 100644 index 0000000000..fe73186809 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/4-09.htm @@ -0,0 +1,2 @@ +Disgraced Knight Waldstein:
+I must continue pursuing Hallate! Allow the Tablet of Vision and the Stone of Commune to react with one another. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/5-01.htm new file mode 100644 index 0000000000..e6140eb1ca --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/5-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+There is no sign of Waldstein.
+The tablet is covered with indecipherable hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/5-02.htm new file mode 100644 index 0000000000..6b04c977d8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female laugh seems to float by in the wind...
+You sense the location of the next Stone of Commune...
+It is being held by the Guardians of Forbidden Knowledge beside the Tablet of Vision in the northeastern Valley of the Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/5-03.htm new file mode 100644 index 0000000000..6bbca62584 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/5-03.htm @@ -0,0 +1,2 @@ +Table of Vision:
+I can no longer commune with this Tablet. It seems that there are no marks of Waldstein, so finding the next Stone of Commune is the best option. You sense that the next stone is being held by the Guardians of Forbidden Knowledge near the Tablet of Vision in the northeast part of the Valley of Saints. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/6-01.htm new file mode 100644 index 0000000000..67dfbe9074 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have a certain Stone of Commune to access this Tablet of Vision. You sense that one of the Guardians of Forbidden Knowledge protecting this tablet has the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/6-02.htm new file mode 100644 index 0000000000..c031526e0d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/6-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+There is not a trace of Waldstein, only a faint footprint of his big cat.
+The Tablet of Vision is engraved with unreadable hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/6-03.htm new file mode 100644 index 0000000000..bfa062a843 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. A female voice seems to float on by as if she were quietly laughing at you...
+You sense the location of the next Stone of Commune...
+It is being held by someone with wings beside the Tablet of Vision in the southeastern outpost of the Ketra Orc. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/6-04.htm new file mode 100644 index 0000000000..8d809493bd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet is futile. It seems that there is no sign of Waldstein. You must go and find the next Stone of Commune. You sense that someone with wings beside the Tablet of Vision in the southeastern outpost of the Ketra Orc is holding the next stone. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-01.htm new file mode 100644 index 0000000000..088f9a2d40 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Bloody footprints and sword marks scar the ground. Something definitely happened here! Could these be pawprints of the kitty cat I saw earlier? No, these are the pawprints of a dark panther!
+I sense the presence of someone and the power of the Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-02.htm new file mode 100644 index 0000000000..ea4ce3e66d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Archangel Iconoclasis? He must be the winged one I sensed before.
+I'm sure he has the Stone of Commune.! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-03.htm new file mode 100644 index 0000000000..bfb7ed6ffb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+First I must defeat the Archangel Iconoclasis and get the next Stone of Commune from him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-04.htm new file mode 100644 index 0000000000..5f8122ab5f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone around here has the Stone of Commune, but it's too noisy now. Wait until it quiets down. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-05.htm new file mode 100644 index 0000000000..77bd579955 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-05.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The marks on the ground must be the remnants of the battle between Waldstein and Iconoclasis. Waldstein seems quite determined to complete the Pilgrimage of the Tablet of Vision.
+The Tablet of Vision is engraved with incomprehensible hieroglyphs.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-06.htm new file mode 100644 index 0000000000..ddddc0772a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-06.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You see a vision of a woman in a blue dress...
+I know where the next Stone of Commune is!
+I know that Guard Bayard of Goddard Castle Town has it! Find him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-07.htm new file mode 100644 index 0000000000..5c153e2609 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/7-07.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Further communion with this tablet is futile. You must find the next Stone of Commune!
+ Guard Bayard of Goddard Castle Town has it! Find him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/8-01.htm new file mode 100644 index 0000000000..d912932f85 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+There's no sign of Waldstein, only dark panther pawprints around the tablet. Waldstein must've already gone to the next Stone of Commune!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/8-02.htm new file mode 100644 index 0000000000..d119345565 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/8-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You hear a man's voice lingering in the air...
+Suddenly, the location of the next Stone of Commune is clear!
+Guard Bayard of Goddard Castle Town has it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/8-03.htm new file mode 100644 index 0000000000..accd2ad7e0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/8-03.htm @@ -0,0 +1,2 @@ +Table of Vision:
+Further communion with this tablet would be futile. Get the next Stone of Commune from Guard Bayard of Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/9-01.htm new file mode 100644 index 0000000000..58f25509d3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/9-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The Tablet of Vision is useless without a Stone of Commune. Kill the Archon of Halisha andtake it from him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/9-02.htm new file mode 100644 index 0000000000..0e07e89a0d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/9-02.htm @@ -0,0 +1,3 @@ + Tablet of Vision:
+There's no sign of Waldstein, just dark panther pawprints around the tablet. Missed him again!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/9-03.htm new file mode 100644 index 0000000000..5ed036fbef --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/9-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+A sharp blast of knowlege courses through your cranium! A vision appears... of a black knight!
+The location of the next Stone of Commune is flashed into your mind!
+A suspicious person near the next Tablet of Vision has it. This may be the last chance to find Waldstein! Hurry! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/9-04.htm new file mode 100644 index 0000000000..832532519b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/9-04.htm @@ -0,0 +1 @@ +Tablet of Vision:
Communing with this tablet is completed. It's time to find the next Stone of Commune.
Near the next Tablet of Vision in the northern part of the Forest of the Dead, it seems a suspicious figure has the Stone of Commune. This may be the last chance to find Waldstein! Hurry! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/Q00095_SagaOfTheHellKnight.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/Q00095_SagaOfTheHellKnight.java new file mode 100644 index 0000000000..f3ced6b270 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00095_SagaOfTheHellKnight/Q00095_SagaOfTheHellKnight.java @@ -0,0 +1,105 @@ +/* + * 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.Q00095_SagaOfTheHellKnight; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Hell Knight (95) + * @author Emperorc + */ +public class Q00095_SagaOfTheHellKnight extends AbstractSagaQuest +{ + public Q00095_SagaOfTheHellKnight() + { + super(95); + _npc = new int[] + { + 31582, + 31623, + 31297, + 31297, + 31599, + 31646, + 31647, + 31653, + 31654, + 31655, + 31656, + 31297 + }; + Items = new int[] + { + 7080, + 7532, + 7081, + 7510, + 7293, + 7324, + 7355, + 7386, + 7417, + 7448, + 7086, + 0 + }; + Mob = new int[] + { + 27258, + 27244, + 27263 + }; + classid = new int[] + { + 91 + }; + prevclass = new int[] + { + 0x06 + }; + npcSpawnLocations = new Location[] + { + new Location(164650, -74121, -2871), + new Location(47391, -56929, -2370), + new Location(47429, -56923, -2383) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-01.htm new file mode 100644 index 0000000000..390b0f9685 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-01.htm @@ -0,0 +1,5 @@ + Dark Knight Mordred:
+You must be the new recruit!
+Have you heard what some mysterious person has asked of our guild?
+No? Well... Someone sent us an ancient document! They think it is linked to some ancient, forbidden power, and asked us to research it! Of course, I was immediately suspicious of the request, and dispatched several guild members to check out the requestor... But they've never come back! This is starting to be a real mystery!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-010.htm new file mode 100644 index 0000000000..d1fee5bc53 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-010.htm @@ -0,0 +1,2 @@ + Dark Knight Mordred:
+ Please, come here. You've obtained new knowledge, but your physical capabilities are lacking. Train yourself, and come back when you're ready. Then, I'll give you a new title. (Only characters of level 76 or above may transfer to the Spectral Dancer class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-02.htm new file mode 100644 index 0000000000..fd0fae794b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-02.htm @@ -0,0 +1,4 @@ + Dark Knight Mordred:
+Are you the new recruit?
+You're kind of scrawny, aren't you? Tell you what, if I get a mission that's suitable for you, I'll call you. Until then, practice!
+(This quest may only be undertaken by a Bladedancer of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-03.htm new file mode 100644 index 0000000000..d33b9e8db4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-03.htm @@ -0,0 +1,3 @@ + Dark Knight Mordred:
+Well, I suppose you'll have to do... First, visit Spellbook Seller Elena in Goddard Castle Town. After analyzing the ancient documents, she'll tell you what to do next.
+Death Lord Hallate is said to be searching for the ancient, forbidden power. I seriously doubt that he would risk going after it in person... He'll probably send his witch Lillian! I've collected as much information about her as I could find and compiled it into this manual. Study it carefully, and keep your eyes open at all times! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-04.htm new file mode 100644 index 0000000000..abb4893173 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-04.htm @@ -0,0 +1,2 @@ + Dark Knight Mordred:
+ Have you forgotten what you're supposed to do? Go see Spellbook Seller Elena in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-05.htm new file mode 100644 index 0000000000..6f187af5d8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-05.htm @@ -0,0 +1,4 @@ + Dark Knight Mordred:
+No, that's not it. I called you because I want to to conduct an investigation into an ancient document. Elena, a spellbook seller in Goddard Castle Town, is very fluent in ancient languages. I've asked her to dicipher the ancient document. Go to her and find out what she's discovered... If what they say about the forbidden power is true, we should reclaim it, don't you think?
+Will you do it?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-06.htm new file mode 100644 index 0000000000..448420645e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-06.htm @@ -0,0 +1,4 @@ + Dark Knight Mordred:
+ Come in. When Elena brought me the translated ancient document, she told me that you were almost finished with the mission. What happened?
+You ran into Hallate? You could've been killed! This is marvelous! Have you obtained the knowledge of the stone tablet?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-07.htm new file mode 100644 index 0000000000..0b99f7d112 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-07.htm @@ -0,0 +1,2 @@ +Dark Knight Mordred:
+Please step forward! You've surpassed the title of Bladedancer! Henceforth, you shall be known as a Spectral Dancer! Please accept the congratulations of the Dark Elven Guild. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-08.htm new file mode 100644 index 0000000000..d1fee5bc53 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-08.htm @@ -0,0 +1,2 @@ + Dark Knight Mordred:
+ Please, come here. You've obtained new knowledge, but your physical capabilities are lacking. Train yourself, and come back when you're ready. Then, I'll give you a new title. (Only characters of level 76 or above may transfer to the Spectral Dancer class. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-09.htm new file mode 100644 index 0000000000..54b7f76d8e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/0-09.htm @@ -0,0 +1,2 @@ + Dark Knight Mordred:
+Please step forward! You've surpassed the title of Bladedancer! Henceforth, you shall be known as a Spectral Dancer! Please accept the congratulations of the Dark Elven Guild. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-01.htm new file mode 100644 index 0000000000..f3fa18230b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-01.htm @@ -0,0 +1,3 @@ + Information Broker Bavarin:
+ What do you want? I'm on break! My neuralgia flared up again and I need my rest! Unless it's very important, leave me alone!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-02.htm new file mode 100644 index 0000000000..4a9476fe0d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-02.htm @@ -0,0 +1,2 @@ + Information Broker Bavarin:
+ I have the dictionary, but, as I said before, you can only have it if you bring me an ice crystal. Now go see Jeremy. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-03.htm new file mode 100644 index 0000000000..7c6a3936ea --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-03.htm @@ -0,0 +1,4 @@ + Information Broker Bavarin:
+ Have you brought me an ice crystal? Give it to me! Hurry, the pain's coming back!
+Oh! I guess you want the dictionary, eh?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-04.htm new file mode 100644 index 0000000000..45f5ff81f4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-04.htm @@ -0,0 +1,2 @@ + Information Broker Bavarin:
+Didn't I already give it to you? I don't have anything else for you. I need to rest now. Please, leave me alone. Why don't you take the dictionary to Elena? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-05.htm new file mode 100644 index 0000000000..967050021a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-05.htm @@ -0,0 +1,3 @@ + Information Broker Bavarin:
+Why do you need the Ancient Language Dictionary? It won't be of any use to you!
+ Elena wanted it? Hmm. What a pain! Very well, I'll get it. But you must do something for me first. Bring me an ice crystal to soothe my neuralgia. Jeremy knows where they are. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-06.htm new file mode 100644 index 0000000000..0b5b842fa7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/1-06.htm @@ -0,0 +1,3 @@ + Information Broker Bavarin:
+Tough life, eh? Well, here you go. Now, give me the ice crystal.
+ Aaah... yes! I feel better already! Well, our business is done! Please tell Elena that I'll pick up the dictionary from her later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-01.htm new file mode 100644 index 0000000000..81e8d24420 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is softly vibrating. Someone with the Stone of Commune must be nearby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-02.htm new file mode 100644 index 0000000000..39f30dcf91 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Death Lord Hallate suddenly appears in the corner! Something seems to be holding him back... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-03.htm new file mode 100644 index 0000000000..f436a1e8d9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be pointless at this time. Get the next Stone of Commune from Hallate and Scryde. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-04.htm new file mode 100644 index 0000000000..f04c85bd8b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+There's a disturbance nearby. I'd better not get involved right now... I'll wait a while. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-05.htm new file mode 100644 index 0000000000..08b1c3275d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet responds as you approach with the Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-06.htm new file mode 100644 index 0000000000..212eb695e9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-06.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+This time, the flood of knowledge was painless! Now you understand the forbidden strength and the resulting fate. Go back to Dark Knight Modred in Hardin. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-07.htm new file mode 100644 index 0000000000..bf8626ee01 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark as if nothing had happened. Everything's over. Go back to Dark Knight Mordred at Hardin's Academy. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/11-01.htm new file mode 100644 index 0000000000..0ba248e3e8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/11-01.htm @@ -0,0 +1,5 @@ +Spellbook Seller Elena:
+How's it going? Did it work?
+I was afraid of that.
+The text says, you can't find the next stone until you have a perfect Stone of Commune. Shall I tell you how to get one?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/11-02.htm new file mode 100644 index 0000000000..c5915d09e4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/11-02.htm @@ -0,0 +1,6 @@ +Spellbook Seller Elena:
+According to the book, the Archon of Halisha is very patient.
+You can find him inside the Four Sepulchers. To enter, you must form a party.
+If you choose to fight alone, slaughter the Archon's minions at the Shrine of the Loyal. Collect 700 of Halisha's Marks and he will appear.
+Halisha's minions are Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Guards.
+After you get the Stone of Commune, find the tablet on the way to Goddard from the Wall of Argos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/11-03.htm new file mode 100644 index 0000000000..c5915d09e4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/11-03.htm @@ -0,0 +1,6 @@ +Spellbook Seller Elena:
+According to the book, the Archon of Halisha is very patient.
+You can find him inside the Four Sepulchers. To enter, you must form a party.
+If you choose to fight alone, slaughter the Archon's minions at the Shrine of the Loyal. Collect 700 of Halisha's Marks and he will appear.
+Halisha's minions are Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Guards.
+After you get the Stone of Commune, find the tablet on the way to Goddard from the Wall of Argos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-01.htm new file mode 100644 index 0000000000..5c3596ec83 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-01.htm @@ -0,0 +1,4 @@ +Scroll Seller Elena:
+What brings you here?
+The old document that Mordred asked me to keep? I had some problems deciphering some of the strange letters. I need a dictionary.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-02.htm new file mode 100644 index 0000000000..2df251b023 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-02.htm @@ -0,0 +1,2 @@ +Scroll Seller Elena:
+You didn't meet Bavarin yet? I need an Ancient Language Dictionary to interpret the text. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-03.htm new file mode 100644 index 0000000000..4986a754a9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-03.htm @@ -0,0 +1,3 @@ +Spellbook Seller Elena:
+You borrowed the dictionary? I'll translate for you. The location and description are done, but I can't read the name yet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-04.htm new file mode 100644 index 0000000000..38fcccbe72 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-04.htm @@ -0,0 +1,2 @@ +Scroll Seller Elena:
+Did you forget again? Look to the south of the Tower of Insolence for the Tablet of Vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-05.htm new file mode 100644 index 0000000000..11a766fb8d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-05.htm @@ -0,0 +1,2 @@ +Spellbook Seller Elena:
+Only a few people have the Ancient Language Dictionary. I heard Bavarin has one. You might find him visiting in the hot springs area. Ask him if you can borrow it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-06.htm new file mode 100644 index 0000000000..c200eb4d88 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/2-06.htm @@ -0,0 +1,4 @@ +Spellbook Seller Elena:
+Let me see...
+According to the Ancient Scroll, you can use a Stone of Commune to get the information from the Tablet of Vision. There are several tablets, and if you gather the information from all of them, you can get the forgotten power. The first tablet is south of the Tower of Insolence. Visit it while I finish translating.
+Take this Stone of Commune I found with the scroll. Come back later! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-01.htm new file mode 100644 index 0000000000..94cd15b40f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-01.htm @@ -0,0 +1,5 @@ +Spellbook Seller Elena:
+What did you find out?
+You can find the next Stone of Commune from the tablet when you commune with it.
+You also saw me at the tablet?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-02.htm new file mode 100644 index 0000000000..f1a10224c0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-02.htm @@ -0,0 +1,2 @@ + Spellbook Seller Elena :
+The outpost of Ketra Orc is in the north side of Goddard Castle Town. Gain the confidence of Ketra's Messenger Wahkan. But if you do not like it, it is ok to go to the Varka Silenos side. What I need is the ‘Holy Stone of Wisdom'. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-03.htm new file mode 100644 index 0000000000..0232d6862b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-03.htm @@ -0,0 +1,2 @@ + Spellbook Seller Elena:
+ The Varka Silenos stronghold is on the west side of Goddard Castle Town. Gain the confidence of Varka's Messenger Naran Ashanuk. But if you do not like it, it is ok to go to the Ketra Orc side. What I need is the 'Holy Stone of Wisdom'. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-04.htm new file mode 100644 index 0000000000..23f7c23096 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-04.htm @@ -0,0 +1,2 @@ + Spellbook Seller Elena :
+You know what you need to do, right? After getting the trust from Varka Silenos or Ketra Orc and brings 'Holy Stone of Wisdom'. Don's forget to go to Ketra's Messenger Wahkan or Varka's Messenger Naran Ashanuk. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-05.htm new file mode 100644 index 0000000000..7f8a4bf359 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-05.htm @@ -0,0 +1,3 @@ +Spellbook Seller Elena:
+Did you get the Divine Stone of Wisdom? I know it's not easy to win the trust of the chief shaman. Let me see it.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-06.htm new file mode 100644 index 0000000000..2ecc8597eb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-06.htm @@ -0,0 +1,2 @@ +Spellbook Seller Elena:
+I heard the Tablet of Vision is north of the Varka Silenos barracks. Look there. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-07.htm new file mode 100644 index 0000000000..2c64affdab --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-07.htm @@ -0,0 +1,5 @@ +Spellbook Seller Elena:
+This is a broken Stone of Commune, useless without one of the fragments that was chipped off. Find a fragment, called a Divine Stone of Wisdom, from either the Ketra Orcs or the Varka Silenos. You must gain the trust of the chief shaman from either tribe. They'll reward it to the one who is most trustworthy. They believe it holds great magical power, but don't know its nature.
+Which side do you choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-08.htm new file mode 100644 index 0000000000..5a52e43eec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/3-08.htm @@ -0,0 +1,3 @@ +Spellbook Seller Elena:
+This'll take just a moment.
+Yes! Here's the Stone of Commune you seek. Let me know if it works. I'll translate this Ancient Scroll until you come back. The Tablet of Vision is in the north of the Varka Silenos barracks. Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-01.htm new file mode 100644 index 0000000000..3de643512a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-01.htm @@ -0,0 +1,2 @@ +Scryde Heartseeker:
+Time to show your skills, Bladedancer. Lord of Purgatory, Death Lord Hallate, where could you find a better opponent!? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-010.htm new file mode 100644 index 0000000000..681848a8da --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-010.htm @@ -0,0 +1,3 @@ +Scryde Heartseeker:
+You mean this? I think this Stone of Commune should be yours. Take it. I won't forget you. Till we meet again!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-011.htm new file mode 100644 index 0000000000..ae858c550f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-011.htm @@ -0,0 +1,2 @@ +Scryde Heartseeker:
+You mean this? I think this Stone of Commune should be yours. Take it. I won't forget you. Till we meet again! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-02.htm new file mode 100644 index 0000000000..b9ffc1f7ad --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-02.htm @@ -0,0 +1,3 @@ +Scryde Heartseeker:
+This is between him and me, so step back.
+Death Lord Hallate, even if you are the Lord of Purgatory, I can't let you stop me! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-03.htm new file mode 100644 index 0000000000..4136d2be6f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-03.htm @@ -0,0 +1,2 @@ +Scryde Heartseeker:
+I never thought the great Lord of Purgatory would turn tail and run. My mission is not yet complete. Don't worry, you'll get another chance. Goodbye! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-04.htm new file mode 100644 index 0000000000..30b876179f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-04.htm @@ -0,0 +1,2 @@ +Scryde Heartseeker:
+You can do better than that. Show me what you've got! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-05.htm new file mode 100644 index 0000000000..661a18c49b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-05.htm @@ -0,0 +1,2 @@ +Scryde Heartseeker:
+This is a battle between him and me. Step aside. Death Lord Hallate, even if you are the Lord of Purgatory, I can't let you stop me! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-06.htm new file mode 100644 index 0000000000..cabe51c506 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-06.htm @@ -0,0 +1,3 @@ +Scryde Heartseeker:
+Thanks for your help. I don't think he'll be back for a while.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-07.htm new file mode 100644 index 0000000000..e4102e5550 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-07.htm @@ -0,0 +1,3 @@ +Scryde Heartseeker:
+Are you looking for the Stone of Commune?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-08.htm new file mode 100644 index 0000000000..cb58c7311c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-08.htm @@ -0,0 +1,2 @@ +Scryde Heartseeker:
+This is between him and me. Take this Stone of Commune and use it with the Tablet of Vision over there. Hurry! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-09.htm new file mode 100644 index 0000000000..067a4efafd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/4-09.htm @@ -0,0 +1,2 @@ +Scryde Heartseeker:
+I can't believe the great Lord of Purgatory would turn his back and run. Use the Stone of Commune with the Tablet of Vision and you'll get the secret of the ancient knowledge! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/5-01.htm new file mode 100644 index 0000000000..f5bfa2564b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/5-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+A rough tablet appears before you.
+It emits a faint hum similar to the Stone of Commune as you approach.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/5-02.htm new file mode 100644 index 0000000000..19274feb63 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You suddenly realize that this isn't the only Stone of Commune nor Tablet of Vision, and the knowledge contained within these tablets could change the world!
+As the pain subsides, a strange vision appears before you. A creature with four white wings, flying above the Valley of Saints, carrying the Stone of Commune! In a moment, the vision fades...
+The tablet goes still and dark, as if nothing had happened. Go to the west of the Valley of Saints and find the Tablet of Vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/5-03.htm new file mode 100644 index 0000000000..9a526bc49a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark, as if nothing had happened. Go to the west of the Valley of Saints and find the next Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/6-01.htm new file mode 100644 index 0000000000..0b746bdfa2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have the Stone of Commune to access the Tablet of Vision. The creature with four wings has the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/6-02.htm new file mode 100644 index 0000000000..e17d4190a2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The unshaped tablet begins to shake and make noise as the Stone of Commune draws near.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/6-03.htm new file mode 100644 index 0000000000..8d61fc11a8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Suddenly, a vast amount of knowledge is painfully seared into your brain. The cascade of brief images is unintelligible at first...
+ As the pain slowly ebbs, you feel dizzy and begin to visualize a new place. It seems as though it might be in the southeast of Ketra Orc Outpost. Around a tablet I can see Hallate's Dancer Lillian as Mordred warned. I can also sense the power of the Stone of Commune eminating from her. As I try to look deeper, my vision slowly comes back to normal.
+The tablet goes still and dark, as if nothing had happened. I know now that I must find the Tablet of Vision in the Southeast of Ketra Orc Outpost! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/6-04.htm new file mode 100644 index 0000000000..81a756df73 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet has no response. Go to the Southeast of Ketra Orc Outpost and get the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-01.htm new file mode 100644 index 0000000000..dc31df9d83 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is vibrating softly. I sense that someone nearby has a Stone of Commune!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-02.htm new file mode 100644 index 0000000000..0236a817e7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Lillian looks just like she did in the vision! Beware of her. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-03.htm new file mode 100644 index 0000000000..68ffe53122 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Lillian serves that devil Hallate, and we must be wary of her evil ways! Kill her and take her Stone of Commune! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-04.htm new file mode 100644 index 0000000000..6716e8e80e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+There's a fight going on over there. Wait and see what happens. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-05.htm new file mode 100644 index 0000000000..baf91f1e71 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+When you approach the Tablet of Vision with the Stone of Commune, the tablet begins buzzing softly.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-06.htm new file mode 100644 index 0000000000..1f49aee91a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-06.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+New knowledge is painfully seared into your brain. The secrets of the Tablet of Vision are becoming clear.
+As the pain subsides, a familiar face appears... It's Elena! And then the vision fades...Find Elena! She has the first Stone of Commune! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-07.htm new file mode 100644 index 0000000000..90c09eb705 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and quiet, as if nothing had ever happened. I must find Elena! I'm sure she has the Stone of Commune! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/8-01.htm new file mode 100644 index 0000000000..22e6669761 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+ I can feel the tablet resonate with the Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/8-02.htm new file mode 100644 index 0000000000..9a782ae0d9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/8-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Thoughts beyond understanding are painfully seared into your brain. As the pain subsides and the communion is finished, you are surprised to discover that you still don't know where the next Stone of Commune is. Speak with Elena in Goddard Castle Town again. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/8-03.htm new file mode 100644 index 0000000000..15128eb3d5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark as if nothing had happened. Visit Elena in Goddard Castle Town and find out what to do next. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/9-01.htm new file mode 100644 index 0000000000..d366cad64e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/9-01.htm @@ -0,0 +1,2 @@ + Tablet of Vision:
+The tablet is useless without a Stone of Commune! Go get one from the Archon of Halisha! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/9-02.htm new file mode 100644 index 0000000000..ad4d86935e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/9-02.htm @@ -0,0 +1,3 @@ + Tablet of Vision:
+The tablet responds to the presence of the Stone of Commune with a loud buzzing.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/9-03.htm new file mode 100644 index 0000000000..92d972bed5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/9-03.htm @@ -0,0 +1,2 @@ + Tablet of Vision:
+Once again, thousands of incomprehensible thoughts are seared painfully into your mind. As the pain subsides, a vision appears! I see the shadow of someone standing before the tablet, holding the Stone of Commune! It seems to be northeast of Rune Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/9-04.htm new file mode 100644 index 0000000000..8374be72e3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+ The tablet has no response. Let's go to the northeast of Rune Castle Townwhere the next Stone of Commune is located in. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/Q00096_SagaOfTheSpectralDancer.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/Q00096_SagaOfTheSpectralDancer.java new file mode 100644 index 0000000000..654dfb7840 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00096_SagaOfTheSpectralDancer/Q00096_SagaOfTheSpectralDancer.java @@ -0,0 +1,105 @@ +/* + * 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.Q00096_SagaOfTheSpectralDancer; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Spectral Dancer (96) + * @author Emperorc + */ +public class Q00096_SagaOfTheSpectralDancer extends AbstractSagaQuest +{ + public Q00096_SagaOfTheSpectralDancer() + { + super(96); + _npc = new int[] + { + 31582, + 31623, + 31284, + 31284, + 31611, + 31646, + 31649, + 31653, + 31654, + 31655, + 31656, + 31284 + }; + Items = new int[] + { + 7080, + 7527, + 7081, + 7511, + 7294, + 7325, + 7356, + 7387, + 7418, + 7449, + 7092, + 0 + }; + Mob = new int[] + { + 27272, + 27245, + 27264 + }; + classid = new int[] + { + 107 + }; + prevclass = new int[] + { + 0x22 + }; + npcSpawnLocations = new Location[] + { + new Location(164650, -74121, -2871), + new Location(47429, -56923, -2383), + new Location(47391, -56929, -2370) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-01.htm new file mode 100644 index 0000000000..64d79d2e6a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-01.htm @@ -0,0 +1,5 @@ +Master Galadrid:
+So you've been chosen?
+Are you up to it?
+We're stretched to our limits, but I have a plan.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-010.htm new file mode 100644 index 0000000000..9efa835853 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-010.htm @@ -0,0 +1,2 @@ + Master Galadrid:
+ You've already approached a higher level of knowledge than the other knights, but your ability hasn't reached the level of knowledge. Therefore, I can't give the title of Shillien Templar to you yet. Come back again after growing your ability more. (Only a character of level 76 or above can become a Shillien Templar. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-02.htm new file mode 100644 index 0000000000..73ad636ff5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-02.htm @@ -0,0 +1,3 @@ +Master Galadrid:
+Keep honing your skills for a while.
+(This quest may only be undertaken by a Shillien Knight of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-03.htm new file mode 100644 index 0000000000..18e9051a90 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-03.htm @@ -0,0 +1,5 @@ +Master Galadrid:
+Meet with Samael of Goddard Castle Town to find out what to do next.
+You should know that nobody has succeeded in this mission before.
+Beware, Shiken may try to stop you!
+Oh, I have a letter for you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-04.htm new file mode 100644 index 0000000000..7cde2000e4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-04.htm @@ -0,0 +1,2 @@ +Master Galadrid:
+You must complete this mission before you move on. Meet with Samael of Goddard Castle Town! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-05.htm new file mode 100644 index 0000000000..c63b4d371d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-05.htm @@ -0,0 +1,3 @@ +Master Galadrid:
+Samael of Goddard Castle Town has deciphered the ancient text on the relic. Will you conduct an investigation based on his translation?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-06.htm new file mode 100644 index 0000000000..a90a15c412 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-06.htm @@ -0,0 +1,4 @@ +Master Galadrid:
+You uncovered the secrets of the ancient relic!
+What did Shiken have to say?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-07.htm new file mode 100644 index 0000000000..8f37c2d44e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-07.htm @@ -0,0 +1,3 @@ + Master Galadrid:
+That sounds like Shiken, alright!
+You've proven yourself a worthy Knight. I bestow upon you the title of Shillien Templar! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-08.htm new file mode 100644 index 0000000000..d632a12fe7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-08.htm @@ -0,0 +1,2 @@ + Master Galadrid:
+ Then, if so, there's nothing I can say to you. You've already approached a higher level of knowledge than the other knights. However, your ability hasn't reached the level of knowledge. Therefore, I can't give the title of Shillien Templar to you yet. Come back again after growing your ability more. (Only a character of level 76 or above can become a Shillien Templar. Be careful. You cannot change occupation if you stop Quest!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-09.htm new file mode 100644 index 0000000000..fc35d52482 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/0-09.htm @@ -0,0 +1,2 @@ +Master Galadrid:
+Your abilities finally match your understanding. I bestow upon you the title of Shillien Templar! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-01.htm new file mode 100644 index 0000000000..81bde40fba --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-01.htm @@ -0,0 +1,3 @@ + Information Broker Bavarin:
+What brings you here? I'm on break! My neuralgia has flared up lately. Unless it's very important, please leave me alone!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-02.htm new file mode 100644 index 0000000000..1113f31911 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-02.htm @@ -0,0 +1,2 @@ + Information Broker Bavarin:
+ I have the dictionary, but, as I said, you must bring me an ice crystal before you can have it. Now go see Jeremy. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-03.htm new file mode 100644 index 0000000000..6224840f16 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-03.htm @@ -0,0 +1,4 @@ + Information Broker Bavarin:
+ Have you brought me an ice crystal? Give it to me! Hurry, before the pain comes back!
+Oh, I guess you want the dictionary, eh?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-04.htm new file mode 100644 index 0000000000..cabe840a9e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-04.htm @@ -0,0 +1,2 @@ + Information Broker Bavarin:
+ Didn't I already give it to you? You have no more business here! Please, let me rest! Why don't you take the dictionary to Elena? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-05.htm new file mode 100644 index 0000000000..93bca488ea --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-05.htm @@ -0,0 +1,3 @@ + Information Broker Bavarin:
+ Ancient Language Dictionary? Why do you want that old book? It won't be helpful to you at all!
+ Samael wants to borrow it? Hmm. What a pain! Very well, I'll get it. But you need to do something for me, first! Bring me an ice crystal to soothe my neuralgia. Jeremy knows to find them. Please bring one to me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-06.htm new file mode 100644 index 0000000000..0e4186c021 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/1-06.htm @@ -0,0 +1,3 @@ + Information Broker Bavarin:
+ Ha! You've had a rough life, eh? Well, here's the dictionary. Now, give me the ice crystal.
+ Aaah... yes! I feel better already! Our business is over. Please tell Samael that I'll pick up the dictionary later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-01.htm new file mode 100644 index 0000000000..e3501e40ed --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is slightly vibrating. Someone with the Stone of Commune must be nearby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-02.htm new file mode 100644 index 0000000000..d66efb7769 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone approaches threateningly from the distant corner. Could it be...? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-03.htm new file mode 100644 index 0000000000..52bbb1e852 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Further communion with this tablet would be pointless at this time. Get the Stone of Commune from Shiken! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-04.htm new file mode 100644 index 0000000000..21aa12aecd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+There's a disturbance nearby. Don't get involved. Wait and see what happens. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-05.htm new file mode 100644 index 0000000000..063b10fc38 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet responds as you draw near with the Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-06.htm new file mode 100644 index 0000000000..019862a0be --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-06.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+This time, the flood of knowledge was painless! Now I understand why the power was kept from us! I've received some amazing knowledge! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-07.htm new file mode 100644 index 0000000000..888f059da4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark as if nothing had happened. The communion is complete. Return to Galadrid. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/11-01.htm new file mode 100644 index 0000000000..33db047822 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/11-01.htm @@ -0,0 +1,5 @@ + Grand Master Samael:
+ Welcome! How is your work going?
+ Hmm, a different reaction this time, eh? Something seemed to be inhibiting the reaction. Wait a moment.
+Ah yes, here is the method of getting the next Stone of Commune and the location of the next tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/11-02.htm new file mode 100644 index 0000000000..a9adb4f959 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/11-02.htm @@ -0,0 +1,6 @@ + Grand Master Samael:
+The Archon of Halisha has the next Stone of Commune.
+You can find the Archon inside the Four Sepulchers in the Imperial Tomb. You mustn't enter that dreadful place alone!
+If you're unable to form a party for some reason, massacre the Archon's minions in the Shrine of the Loyal. Kill enough of them, say around 700, and he will appear.
+His minions are called Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Guards.
+The Tablet of Vision that you seek can be found on the road to Goddard from the Wall of Argos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/11-03.htm new file mode 100644 index 0000000000..a1aa6a93d4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/11-03.htm @@ -0,0 +1,6 @@ + Grand Master Samael:
+ Don't be so hasty! If you look carefully at the inscriptions on the relics, you'll discover how to find the Stone of Commune. The Archon of Halisha has the next Stone of Commune.
+You can find the Archon inside the Four Sepulchers in the Imperial Tomb. You mustn't enter that dreadful place alone!
+If you're unable to form a party for some reason, massacre the Archon's minions in the Shrine of the Loyal. Kill enough of them, say around 700, and he will appear.
+His minions are called Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights and Shrine Guards.
+The Tablet of Vision that you seek can be found on the road to Goddard from the Wall of Argos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-01.htm new file mode 100644 index 0000000000..a349cc2057 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-01.htm @@ -0,0 +1,5 @@ + Grand Master Samael:
+ Why are you here?
+ Galadrid told you to come, didn't he?
+You're here for that thing, aren't you?! But, there's a problem. I can't decipher some of the passages because there are some odd characters in the middle.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-02.htm new file mode 100644 index 0000000000..3dd36d46b1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-02.htm @@ -0,0 +1,2 @@ + Grand Master Samael:
+ You haven't meet Bavarin yet? I need the "Ancient Language Dictionary" to decipher the passages! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-03.htm new file mode 100644 index 0000000000..84368e3b1d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-03.htm @@ -0,0 +1,4 @@ + Grand Master Samael:
+Did you get the dictionary? Wait a minute...
+Here! I've deciphered part of the text! I can't read everything yet, but there's something you can do. The text says that you can obtain the ancient knowledge if you take this Stone of Commune to the Tablet of Vision. Please, go there immediately!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-04.htm new file mode 100644 index 0000000000..1dfafdd608 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-04.htm @@ -0,0 +1,2 @@ + Grand Master Samael:
+ You haven't forgotten your task, have you? Find the Tablet of Vision south of the Tower of Insolence. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-05.htm new file mode 100644 index 0000000000..3926451e63 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-05.htm @@ -0,0 +1,2 @@ + Grand Master Samael:
+First you must help me decipher the text on this ancient object. I must have the "Ancient Language Dictionary"! I've heard that Bavarin has it, and he's coming to the hot springs for a vacation! Will you go see him and borrow the dictionary for me? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-06.htm new file mode 100644 index 0000000000..adf74fcccb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/2-06.htm @@ -0,0 +1,2 @@ + Grand Master Samael:
+Now you must go to the Tablet of Vision and attain the knowledge by using the Stone of Commune. This Stone of Commune is the only way to get the information, so you must be very careful with it! The Tablet of Vision is south of the Tower of Insolence. Hurry there! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-01.htm new file mode 100644 index 0000000000..98746b1c54 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-01.htm @@ -0,0 +1,6 @@ + Grand Master Samael:
+ Welcome back! Tell me, what have you learned?
+The forbidden knowledge is truly passed on to the one who holds the Stone of Commune.
+ Good job! But, why did you come back?
+ The Stone of Commune? You mean this? Actually, there were several fragments attached to the tablet. I gave you the analyzed one. This may be the one that you're looking for now. Unfortunately, it's incomplete. You must find another fragment! In fact, I know where the fragment is, but haven't been able to get it yet, as it will be quite difficult. Will you get it for me?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-02.htm new file mode 100644 index 0000000000..05d035e320 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-02.htm @@ -0,0 +1,2 @@ +Grand Master Samael:
+You must gain the trust of the Ketra Orcs. Gain the trust of their messenger, Wahkan. He's their highest ranking chieftain, and will give you their Divine Stone of Wisdom. If you have a bad time with the Ketras, you can go to the Varka Silenos and get their stone instead. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-03.htm new file mode 100644 index 0000000000..99523b602d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-03.htm @@ -0,0 +1,2 @@ + Grand Master Samael:
+First, you must gain the trust of Naran Ashanuk, the messenger of the Varka Silenos. Eventually, you can get their Divine Stone of Wisdom from Soul Guide Udan Mardui, their highest-ranking shaman. If you have a bad time with the Varkas, you can go to the Ketra Orcs and get their stone instead. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-04.htm new file mode 100644 index 0000000000..b89f9fad80 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-04.htm @@ -0,0 +1,2 @@ + Grand Master Samael:
+ You know what to do, don't you? Go to the Varka Silenos or Ketra Orcs and bring me a Divine Stone of Wisdom. Go to Ketra's Messenger Wahkan or Varka's Messenger Naran Ashanuk. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-05.htm new file mode 100644 index 0000000000..ce1984322e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-05.htm @@ -0,0 +1,4 @@ + Grand Master Samael:
+ Did you bring the Divine Stone of Wisdom?
+ Even though it's quite difficult to gain the trust of their highest-ranking shaman, you made it look very easy! Can I have the stone?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-06.htm new file mode 100644 index 0000000000..a9a0613de2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-06.htm @@ -0,0 +1,2 @@ + Grand Master Samael:
+ What are you doing? You must finish your job! Find the Tablet of Vision immediately! You can find it north of the Varka Silenos barracks. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-07.htm new file mode 100644 index 0000000000..f2663e4f7c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-07.htm @@ -0,0 +1,4 @@ + Grand Master Samael:
+ I need the Divine Stone of Wisdom that's held by Asefa, the highest-ranking shaman of the Ketra Orcs, or Soul Guide Udan Mardui, the highest-ranking shaman of the Varka Silenos. You must gain the trust of the highest-ranking shaman of either tribe in order to get the stone. Which tribe do you wish to approach?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-08.htm new file mode 100644 index 0000000000..a48517e0bf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/3-08.htm @@ -0,0 +1,4 @@ + Grand Master Samael:
+ Wait a minute.
+Here is the Stone of Commune that you need. Let me know if you have any problems with it.
+ You know where the tablet is, right? It's north of the Varka Silenos barracks. I marked it on your Map. You must be very careful! You never know what kind of danger awaits you around the next corner! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-01.htm new file mode 100644 index 0000000000..7ba03236c2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-01.htm @@ -0,0 +1,2 @@ +Shiken Gloomdrake:
+That wretch is aiming for you! Don't just stand there, fight! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-010.htm new file mode 100644 index 0000000000..f0a7e335da --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-010.htm @@ -0,0 +1,4 @@ +Shiken Gloomdrake:
+This is the Stone of Commune you came all this way for. I'll give you a free tip. Don't rely on Galadrid too much, but don't fear him either. A Shillien Knight should know what to do.
+Maybe we'll meet again. Such a baby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-011.htm new file mode 100644 index 0000000000..f81656d259 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-011.htm @@ -0,0 +1,2 @@ +Shikken Gloomdrake:
+Nothing is worse than forgetting your special purpose. Take the Stone of Commune, you've come this far for it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-02.htm new file mode 100644 index 0000000000..5d66ef98d5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-02.htm @@ -0,0 +1,2 @@ +Shiken Gloomdrake:
+This isn't your fight! Stand back! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-03.htm new file mode 100644 index 0000000000..4153d37acc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-03.htm @@ -0,0 +1,2 @@ +Shiken Gloomdrake:
+You're not strong enough to fight me, so stand back. Normally assassins don't run so easily. Don't worry, you'll get your turn. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-04.htm new file mode 100644 index 0000000000..c9b5724265 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-04.htm @@ -0,0 +1,2 @@ +Shiken Gloomdrake:
+Go dig your grave if you want a rest. Now it's time to fight! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-05.htm new file mode 100644 index 0000000000..469e25e345 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-05.htm @@ -0,0 +1,2 @@ +Shiken Gloomdrake:
+Scram! This is my fight, not yours. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-06.htm new file mode 100644 index 0000000000..8e74d7d0c1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-06.htm @@ -0,0 +1,5 @@ +Shiken Gloomdrake:
+Who would bestow the title of Shillien Knight on someone so careless? Letting an assassin get so close!
+You couldn't beat a golem without my help.
+Galadrid would be upset.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-07.htm new file mode 100644 index 0000000000..5846ac8e00 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-07.htm @@ -0,0 +1,3 @@ +Shiken Gloomdrake:
+A blind girl falls in love with a silly wizard and flees, and what's more, there's a clumsy assassin and a Shillien Knight who doesn't know his mission! Who needs a comedy club!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-08.htm new file mode 100644 index 0000000000..4c15e7b782 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-08.htm @@ -0,0 +1,3 @@ +Shiken Gloomdrake:
+Shame, shame. They call you an assassin?
+Hey you, commune with the tablet already! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-09.htm new file mode 100644 index 0000000000..90fc2d7592 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/4-09.htm @@ -0,0 +1,2 @@ +Shiken Gloomdrake:
+What do you think the Stone of Commune is for? The Tablet of Vision that's right under your nose! Get it? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/5-01.htm new file mode 100644 index 0000000000..4b17407b5d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/5-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+A rough tablet appears before you.
+It emits a faint hum similar to the Stone of Commune as you approach.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/5-02.htm new file mode 100644 index 0000000000..01984ba602 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You suddenly realize that this isn't the only Stone of Commune nor Tablet of Vision, and the knowledge contained within these tablets could change the world!
+As the pain subsides, a strange vision appears before you. A creature with four white wings, flying above the Valley of Saints, carrying the Stone of Commune! In a moment, the vision fades...
+The tablet goes still and dark, as if nothing had happened. Go to the south of the Valley of Saints and find the Tablet of Vision! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/5-03.htm new file mode 100644 index 0000000000..f8efcf8c24 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark, as if nothing had happened. Go to the south of the Valley of Saints and find the next Stone of Commune! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/6-01.htm new file mode 100644 index 0000000000..e51587de0c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have the Stone of Commune to access the Tablet of Vision. The Stone of Commune is held by a creature with four wings. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/6-02.htm new file mode 100644 index 0000000000..7383836047 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins to tremble and emit a faint light as the Stone of Commune draws near.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/6-03.htm new file mode 100644 index 0000000000..3a0602b9c8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Suddenly, huge amounts of knowledge are painfully seared into your brain. The cascade of brief images is unintelligible atfirst...
+But then, the next tablet comes into view! It looks to be located in the area northeast of the Ketra Orc Outpost! It's surrounded by golems! One of those filthy creatures has the Stone of Commune! And then the vision fades...
+The tablet goes still and dark, as if nothing had happened. Now go to the northeast of the Ketra Orc Outpost and get the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/6-04.htm new file mode 100644 index 0000000000..ac1756279b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Communing further with this tablet would be futile. Go to the northeast of the Ketra Orc Outpost and get the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-01.htm new file mode 100644 index 0000000000..71ff8d5a31 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins to shake slightly. Someone or something nearby has the Stone of Commune!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-02.htm new file mode 100644 index 0000000000..f9f4ca3df4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+A huge golem appears! He's the one that was featured in the guild bulletin I got from Galadrid! I must be very careful! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-03.htm new file mode 100644 index 0000000000..6c803f5434 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must get the Stone of Commune from that golem! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-04.htm new file mode 100644 index 0000000000..c25231f35c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+There's fight going on over there. Let's wait here for a moment until the fighting finishes. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-05.htm new file mode 100644 index 0000000000..5a75eb12b8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins to buzz as the Stone of Commune draws near.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-06.htm new file mode 100644 index 0000000000..75985a101a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-06.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. The secrets of the tablet start to be revealed.
+As the pain subsides, a vision appears...
+It's Samael! And then the vision fades... Find Samael! He has the Stone of Commune! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-07.htm new file mode 100644 index 0000000000..4619583548 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and quiet, as if nothing had ever happened. Find Samael and get the Stone of Commune from him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/8-01.htm new file mode 100644 index 0000000000..0272eef202 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You feel the tablet resonate with the Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/8-02.htm new file mode 100644 index 0000000000..eb55d2b1dd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/8-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Thoughts beyond understanding are seared painfully into your brain. After the pain subsides and the communion is finished, you find that you don't know where the next Stone of Commune is. Speak with Samael again. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/8-03.htm new file mode 100644 index 0000000000..15f7f32834 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark as if nothing had happened. Visit Samael and find out what to do next. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/9-01.htm new file mode 100644 index 0000000000..c2c80318ee --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/9-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet is useless without a Stone of Commune. As Samael said, you can get the Stone of Commune from the Archon of Halisha. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/9-02.htm new file mode 100644 index 0000000000..e3ec8523fd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/9-02.htm @@ -0,0 +1,3 @@ + Tablet of Vision:
+The tablet buzzes as you approach with the Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/9-03.htm new file mode 100644 index 0000000000..1f3df39584 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/9-03.htm @@ -0,0 +1,2 @@ + Tablet of Vision:
+Once again, incomprehensible thoughts are painfully seared into your brain. As the pain subsides, a vision appears! There's a tablet much like this one, and it appears to be southeast of Hunters Village. There's a man standing by the tablet holding a Stone of Commune! Find him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/9-04.htm new file mode 100644 index 0000000000..2c71217329 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark as if nothing had happened. The next Stone of Commune is southeast of Hunters Village. Go there! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/Q00097_SagaOfTheShillienTemplar.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/Q00097_SagaOfTheShillienTemplar.java new file mode 100644 index 0000000000..2df4cf52bf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00097_SagaOfTheShillienTemplar/Q00097_SagaOfTheShillienTemplar.java @@ -0,0 +1,105 @@ +/* + * 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.Q00097_SagaOfTheShillienTemplar; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Shillien Templar (97) + * @author Emperorc + */ +public class Q00097_SagaOfTheShillienTemplar extends AbstractSagaQuest +{ + public Q00097_SagaOfTheShillienTemplar() + { + super(97); + _npc = new int[] + { + 31580, + 31623, + 31285, + 31285, + 31610, + 31646, + 31648, + 31652, + 31654, + 31655, + 31659, + 31285 + }; + Items = new int[] + { + 7080, + 7526, + 7081, + 7512, + 7295, + 7326, + 7357, + 7388, + 7419, + 7450, + 7091, + 0 + }; + Mob = new int[] + { + 27271, + 27246, + 27273 + }; + classid = new int[] + { + 106 + }; + prevclass = new int[] + { + 0x21 + }; + npcSpawnLocations = new Location[] + { + new Location(161719, -92823, -1893), + new Location(124355, 82155, -2803), + new Location(124376, 82127, -2796) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-01.htm new file mode 100644 index 0000000000..c8beccc1d4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-01.htm @@ -0,0 +1,3 @@ +Magister Anastia:
+A Saint of Light has been sighted in Goddard Castle Town. It could be a fake, like the one that appeared briefly in Gludio, but things are a little different this time.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-010.htm new file mode 100644 index 0000000000..7c2ae81226 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-010.htm @@ -0,0 +1,3 @@ +Magister Anastia:
+Your understanding doesn't yet equal your faith.
+(Only a character of level 76 or above is allowed to transfer class. Do not abandon quest before transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-02.htm new file mode 100644 index 0000000000..c993db1dd5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-02.htm @@ -0,0 +1,3 @@ + Magister Anastia:
+ I'll ask you who is following the Path of Faith. What are you doing to get away from your destiny? It seems that you still have to go further to the Path of Faith. Please come back when your convictions are stronger.
+(This quest may only be undertaken by a Shillien Elder of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-03.htm new file mode 100644 index 0000000000..28cd5c22ab --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-03.htm @@ -0,0 +1,3 @@ +Magister Anastia:
+Meet with the Saint of Light in Goddard Castle Town. You must decide what to do from there. Come back when you are done.
+In this book you will find how to deal with the devil in the north should you run into it. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-04.htm new file mode 100644 index 0000000000..8c2eed736a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-04.htm @@ -0,0 +1,2 @@ +Magister Anastia:
+Go to the Saint of Light in Goddard Castle Town and test your fate. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-05.htm new file mode 100644 index 0000000000..842f99954e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-05.htm @@ -0,0 +1,3 @@ +Magister Anastia:
+Humans and Elves are already accepting signs that she's a real saint. Dawn Witness Franz has officially acknowledged her. Guide of Twilight Luna and Sage of Greenleaves Elexia are about to as well. Will you meet her and test your fate?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-06.htm new file mode 100644 index 0000000000..5b613734c0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-06.htm @@ -0,0 +1,3 @@ +Magister Anastia:
+Congratulations! You've acquired new understanding and earned Alcadia's recognition.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-07.htm new file mode 100644 index 0000000000..295310ef40 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-07.htm @@ -0,0 +1,2 @@ + Magister Anastia:
+ So, the title of Shillien Elder doesn't become you any more. You have earned the title of Shillien Saint. Your fate is to become a guiding light for others. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-08.htm new file mode 100644 index 0000000000..d4cdc9ac52 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-08.htm @@ -0,0 +1,3 @@ +Magister Anastia:
+Your understanding doesn't yet equal your faith!
+(Only a character of level 76 or above is allowed to transfer class. Do not abandon quest before transfer is complete!) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-09.htm new file mode 100644 index 0000000000..e35ec7922f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/0-09.htm @@ -0,0 +1,2 @@ + Magister Anastia:
+ The title of Shillien Elder doesn't become you any more. You've earned the title of Shillien Saint. May your steadfast faith be a guiding light to others! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-01.htm new file mode 100644 index 0000000000..5061460da8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-01.htm @@ -0,0 +1,6 @@ + Chef Duncan:
+What can I do for you, priest?
+Saint Agnes sent you to me? Well come on in, then! How are things with Saint Agnes?
+Ah, yes, the starving people! She has a heart of gold, that one! I'll always do anything I can to help her. I'm glad you came!
+I'll need something to keep the food fresh on the trip back to her, however...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-02.htm new file mode 100644 index 0000000000..449b8cf48a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-02.htm @@ -0,0 +1,2 @@ +Chef Duncan:
+There's quite a bit of food here, and it's bound to spoil unless we have a way to preserve it. We'll need an ice crystal to keep it fresh. Chef Jeremy has them. You can go and ask him about them. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-03.htm new file mode 100644 index 0000000000..a899c96b21 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-03.htm @@ -0,0 +1,3 @@ +Chef Duncan:
+You brought the ice crystals. I've already prepared all the food and packaged it to go. Now all I have to do is process it to keep it fresh. Give me an ice crystal now.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-04.htm new file mode 100644 index 0000000000..5ac5352deb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-04.htm @@ -0,0 +1,2 @@ +Chef Duncan:
+You're still here? The food's been preserved, but it won't last forever! You should immediately take it to the saint! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-05.htm new file mode 100644 index 0000000000..30da7bf138 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-05.htm @@ -0,0 +1,3 @@ +Chef Duncan:
+Ice crystals are crystallizations of cold energy. Bring one to me, and I'll process the food so that it won't spoil on your journey.
+Chef Jeremy has the ice crystals. Chef Jeremy has the ice crystals. You must meet and help him. He is laboring to prepare a cooking contest. That way you will find the ice crystals. Please do it for me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-06.htm new file mode 100644 index 0000000000..235495ebbe --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/1-06.htm @@ -0,0 +1,4 @@ + Chef Duncan:
+To keep it cool, place the ice crystal here and seal it completely like this...
+Voila! It's done! Take it to the saint!
+Do you think it's enough food? It's not a pretty box, but I put my heart into it! I trust the saint will divide it fairly among all the people in the village. Please, give my best regards to Saint Agnes! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-01.htm new file mode 100644 index 0000000000..245eac7796 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins to vibrate. The Stone of Commune must be nearby.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-02.htm new file mode 100644 index 0000000000..02e1f9cd01 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The Stone of Commune begins to vibrate. A strong adversary appears, but is restrained by someone. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-03.htm new file mode 100644 index 0000000000..b76a2ba64d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Without a Stone of Commune it's just a tablet. Find the person who protected you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-04.htm new file mode 100644 index 0000000000..21aa12aecd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+There's a disturbance nearby. Don't get involved. Wait and see what happens. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-05.htm new file mode 100644 index 0000000000..77d770212c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins to vibrate.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-06.htm new file mode 100644 index 0000000000..d9d96db1de --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-06.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Forbidden knowledge begins to flow into you without pain. Go and report to Magister Anastia of Hardin. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-07.htm new file mode 100644 index 0000000000..93493703c5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still. Everything has ended. Go and report to Magister Anastia in Hardin. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/11-01.htm new file mode 100644 index 0000000000..e198728b9f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/11-01.htm @@ -0,0 +1,4 @@ +Magister Kamilen:
+We meet again! Saint Agnes foretold everything correctly. I'll always trust her wisdom.
+She has more instructions for you.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/11-02.htm new file mode 100644 index 0000000000..9952fbee0e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/11-02.htm @@ -0,0 +1,5 @@ +Magister Kamilen:
+You can get the next stone by killing the Archon of Halisha in the Four Sepulchers. You'll need help to gain entry.
+If that proves too difficult, go to the Shrine of the Loyal and slay Halisha's minions. If you collect 700 Halisha's Marks, the Archon will appear.
+The minions include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights, and Shrine Guards.
+The next Tablet of Vision can be seen from the road between the Wall of Argos and Goddard. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/11-03.htm new file mode 100644 index 0000000000..9952fbee0e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/11-03.htm @@ -0,0 +1,5 @@ +Magister Kamilen:
+You can get the next stone by killing the Archon of Halisha in the Four Sepulchers. You'll need help to gain entry.
+If that proves too difficult, go to the Shrine of the Loyal and slay Halisha's minions. If you collect 700 Halisha's Marks, the Archon will appear.
+The minions include Grave Scarabs, Scavenger Scarabs, Grave Ants, Scavenger Ants, Shrine Knights, and Shrine Guards.
+The next Tablet of Vision can be seen from the road between the Wall of Argos and Goddard. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-01.htm new file mode 100644 index 0000000000..2496563125 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-01.htm @@ -0,0 +1,4 @@ +Saint of Light Agnes:
+I have heard of your undying passion as a Priest. Goddard Castle Town needs someone to help relieve the grief and suffering that is abundant here. The people have lost their hopes and dreams.
+Can you help me reignite their passions?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-02.htm new file mode 100644 index 0000000000..3744cabc47 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-02.htm @@ -0,0 +1,2 @@ +Saint of Light Agnes:
+Meet Duncan who is working in the hot springs area. He can help with the suffering caused by this famine. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-03.htm new file mode 100644 index 0000000000..021ead2f5b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-03.htm @@ -0,0 +1,4 @@ +Saint of Light Agnes:
+The light shines brighter than ever in you, Priest. I gather your mission was a success.
+How is Duncan? May the blessing of light always be with him for this favor.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-04.htm new file mode 100644 index 0000000000..a6436598ed --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-04.htm @@ -0,0 +1,2 @@ +Saint of Light Agnes:
+I won't forget your kindness. Have you been to the Tablet of Vision to the south of the Tower of Insolence? I hope you find what you seek. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-05.htm new file mode 100644 index 0000000000..7f581f659a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-05.htm @@ -0,0 +1,3 @@ +Saint of Light Agnes:
+I wish to give light and hope to the people of this town, but they are blinded by hunger.
+Can you visit Duncan in the hot springs area and bring back some food? He has promised to help me. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-06.htm new file mode 100644 index 0000000000..3d108186bc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/2-06.htm @@ -0,0 +1,4 @@ +Saint of Light Agnes:
+I will fill the granary with this generous gift. Thanks to your help, these people can walk the path of light once more.
+Now I can help you on your way. A woman named Elkadia told me of how one can step beyond his own limitations. You remind me of her.
+Take this Stone of Commune to the Tablet of Vision, south of the Tower of Insolence. It can bring you new knowledge. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-01.htm new file mode 100644 index 0000000000..b8ba618e65 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-01.htm @@ -0,0 +1,4 @@ +Magister Kamilen:
+Did the power of the Stone of Commune draw you here? Saint Agnes gave it to me, but it's not whole.
+While you were gone, the granary in Goddard Castle Town spontaneously began to overflow! Even I am convinced by this miracle that she's a true saint.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-02.htm new file mode 100644 index 0000000000..5188679b6e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-02.htm @@ -0,0 +1,2 @@ + Magister Kamilen:
+ I'll let you know the location of Ketra's Messenger Wahkan in the Ketra Orc Camp. First of all, you must gain trust of Ketra's Messenger Wahkan, and keep on working hard until you get the Divine Stone of Wisdom from Soul Guide Asefa who is the highest-ranking shaman of Ketra Orcs. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-03.htm new file mode 100644 index 0000000000..5455cd97c9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-03.htm @@ -0,0 +1,2 @@ + Magister Kamilen:
+ I'll let you know the location of Varka's Messenger Naran Ashanuk in the Varka Silenos Camp. First of all, you must gain trust of Varka's Messenger Naran Ashanuk, and keep on working hard until you get the Divine Stone of Wisdom from Soul Guide Udan Mardui who is the highest-ranking shaman of Varka Silenos. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-04.htm new file mode 100644 index 0000000000..c072a61a25 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-04.htm @@ -0,0 +1,2 @@ + Magister Kamilen:
+ Did you get the Divine Stone of Wisdom? Find the 'Divine Stone of Wisdom' by winning the trust of Asefa, chief shaman of the Ketra Orcs, or Udan Mardui, chief shaman of the Varka Silenos. If that doesn't work, speak to Ketra's Messenger Wahkan or Varka's Messenger Naran Ashanuk. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-05.htm new file mode 100644 index 0000000000..0deb718e8f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-05.htm @@ -0,0 +1,3 @@ +Magister Kamilen:
+You've done well to get the Divine Stone of Wisdom! Shall I make it whole now?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-06.htm new file mode 100644 index 0000000000..5c6f7f8d02 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-06.htm @@ -0,0 +1,2 @@ +Magister Kamilen:
+I feel the time of destiny approaching. The vibration of Stone of Commune is stronger than ever. Go to the north side of the Varka Silenos barracks! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-07.htm new file mode 100644 index 0000000000..d9639d9ca9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-07.htm @@ -0,0 +1,6 @@ +Magister Kamilen:
+Saint Agnes spoke of the Divine Stone of Wisdom, a fragment of the Stone of Commune. Go to the Ketra Orcs or the Varka Silenos to get it.
+They know of its powerful magic, but not its exact use. They'll reward the wisest of their tribe with it. You'll have to earn the trust of Asefa, chief shaman of the Ketra Orcs, or Udan Mardui, chief shaman of the Varka Silenos. Bring it here, and I'll make it whole again.
+Which side will you choose?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-08.htm new file mode 100644 index 0000000000..c31d3c9435 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/3-08.htm @@ -0,0 +1,4 @@ +Magister Kamilen:
+Combine the two pieces...
+It's done! I will hand this over to you as Agnes told me. May you be blessed by the light. Take it to the Tablet of Vision on the north side of the Varka Silenos stronghold.
+I hope to see you again! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-01.htm new file mode 100644 index 0000000000..5e9445c686 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-01.htm @@ -0,0 +1,2 @@ +Abyssal Saint Elcardia:
+I know what you're up to, Tanakia! You won't fool me again! I may be alone, but I'm perfectly capable of defending myself! I owe that much to my supporters! Dear Priest, will you help me defeat Tanakia? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-010.htm new file mode 100644 index 0000000000..e719d98a67 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-010.htm @@ -0,0 +1,3 @@ + Abyssal Saint Elcardia:
+Yes, it is. It's the reason you're here, isn't it? Tanakia must have brought me here to prevent the Stone of Commune from falling into your hands! But you've set me free, and now I can give it to you! Thank you! I hope our paths cross again someday!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-011.htm new file mode 100644 index 0000000000..571b0b823b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-011.htm @@ -0,0 +1,2 @@ + Abyssal Saint Elcardia:
+Absolutely! You were destined to have the Stone of Commune! Here it is. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-02.htm new file mode 100644 index 0000000000..b4590a74de --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-02.htm @@ -0,0 +1,2 @@ + Abyssal Saint Elcardia:
+Listen, this isn't your fight! This is something I've got to do alone. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-03.htm new file mode 100644 index 0000000000..06c4e388be --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-03.htm @@ -0,0 +1,2 @@ + Abyssal Saint Elcardia:
+Whew, that was a close one, and it's not over yet! You'll have another chance at Tanakia! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-04.htm new file mode 100644 index 0000000000..fa243a28b3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-04.htm @@ -0,0 +1,2 @@ + Abyssal Saint Elcardia:
+You won't defeat Tanakia like that! He's a fallen angel, remember? You can't defeat him with half-measures... Get serious! I'll do my best to help you. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-05.htm new file mode 100644 index 0000000000..ea84e3653e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-05.htm @@ -0,0 +1,2 @@ + Abyssal Saint Elcardia:
+Listen, this isn't your fight! This will be a tough struggle for both myself and whoever helps me... How can I say it... You're not up to it! I'm surprised you made it this far! Lucky for you I'm a nice guy! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-06.htm new file mode 100644 index 0000000000..121b0c6fbc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-06.htm @@ -0,0 +1,3 @@ + Abyssal Saint Elcardia:
+I came here with the noblest of intentions, to save the innocent from a grisly fate... Now, seeing you, I realize how naive I was! Now I see that I was meant to give you this Stone of Commune. Take it, you'll need it.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-07.htm new file mode 100644 index 0000000000..3f987ab8be --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-07.htm @@ -0,0 +1,3 @@ +Abyssal Saint Elcardia:
+Fate has surely brought me to this place. I'm here to give you this stone.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-08.htm new file mode 100644 index 0000000000..b56d0c3d1a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-08.htm @@ -0,0 +1,2 @@ + Abyssal Saint Elcardia:
+Your plan is bound to fail, Tanakia! It was all for nothing! You don't stand a chance! So now you have the Stone of Commune, eh? It works with that Tablet of Vision over there! Go on! Do it! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-09.htm new file mode 100644 index 0000000000..c9bb34777c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/4-09.htm @@ -0,0 +1,2 @@ + Abyssal Saint Elcardia:
+Behold, the Stone of Commune! Tanakia doesn't want you to have it, and he's holding me hostage to make sure that doesn't happen! This stone can be used to communicate with the Tablet of Vision! Now, hurry to where the tablet is! This was all meant to be! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/5-01.htm new file mode 100644 index 0000000000..63329ac7eb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/5-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+A rough tablet appears before you.
+It emits a faint hum similar to the Stone of Commune as you approach.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/5-02.htm new file mode 100644 index 0000000000..dfe957fedd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. You suddenly realize that this isn't the only Stone of Commune nor Tablet of Vision, and the knowledge contained within these tablets could change the world!
+As the pain subsides, a strange vision appears before you. A creature with four white wings, flying above the Valley of Saints, carrying the Stone of Commune! In a moment, the vision fades...
+The tablet goes still and dark, as if nothing had happened. Go to the northeastern part of the Valley of Saints and find the Tablet of Vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/5-03.htm new file mode 100644 index 0000000000..cec052fb30 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/5-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark, as if nothing had happened. Go to the northeastern part of the Valley of Saints and find the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/6-01.htm new file mode 100644 index 0000000000..e51587de0c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have the Stone of Commune to access the Tablet of Vision. The Stone of Commune is held by a creature with four wings. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/6-02.htm new file mode 100644 index 0000000000..b10518f740 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The unshaped tablet begins to shake and make noise as the Stone of Commune draws near.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/6-03.htm new file mode 100644 index 0000000000..9a66ef3f21 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/6-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. The cascade of brief images is unintelligible at first...
+As the pain subsides, a vision of the next tablet emerges, and it seems to be north of the border outpost. There must be a Stone of Commune nearby! It looks like the legendary Naverius has it! And then the vision fades. You must immediately go north of the border outpost and find the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/6-04.htm new file mode 100644 index 0000000000..dc71a7df63 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/6-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and quiet, as if nothing had ever happened. Look north of the border outpost for the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-01.htm new file mode 100644 index 0000000000..021770c115 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins to tremor. Someone is nearby!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-02.htm new file mode 100644 index 0000000000..4c47c90e46 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Suddenly, someone appears on the other side of the tablet. Could it be Naverius, the main character in the book from Anastia? \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-03.htm new file mode 100644 index 0000000000..765a270f91 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+I must take the Stone of Commune from Naverius if I am to commune with the Tablet of Vision. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-04.htm new file mode 100644 index 0000000000..4c147dbc95 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+A vision appears of a fight, far away from here. This isn't the time to get involved. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-05.htm new file mode 100644 index 0000000000..326863a92d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet begins to buzz as the Stone of Commune draws nearer.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-06.htm new file mode 100644 index 0000000000..fd015f4b6c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-06.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension sear painfully into your brain. The secrets of the tablet start to be revealed.
+Suddenly, the vision goes white... and emerging from within is a face... Could it be...? Kamilen? A strong feeling emerges that she has the Stone of Commune in Goddard Castle Town. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-07.htm new file mode 100644 index 0000000000..5001d2efae --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and quiet, as if nothing had ever happened. Kamilen in Goddard Castle Town has the next Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/8-01.htm new file mode 100644 index 0000000000..faa360e233 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/8-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Stone of Commune is shaking so violently you fear that it will destroy itself.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/8-02.htm new file mode 100644 index 0000000000..155411291f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/8-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The pain signals that more knowledge is being absorbed. As the pain subsides, you realize that the communion has finished, and you still don't know where the next Stone of Commune is. Kamilen's last words were troubling. Talk to her again soon! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/8-03.htm new file mode 100644 index 0000000000..cc7b4e462e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The tablet goes still and dark as if nothing had happened. Where is the next Stone of Commune? Speak with Kamilen again. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/9-01.htm new file mode 100644 index 0000000000..deadbe8c59 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/9-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+As Bastian said, kill the Archon of Halisha at the Wall of Argos or the Shrine of the Loyal and take the stone from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/9-02.htm new file mode 100644 index 0000000000..84564e8c5b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/9-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The reaction doesn't seem as dramatic as before, but it appears to be working.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/9-03.htm new file mode 100644 index 0000000000..50de2f976c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/9-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Countless thoughts beyond comprehension once again sear painfully into your brain. Now the words of Naverius make sense. I know where the next Tablet of Vision is! It's somewhere to the North of Giants Cave. Someone is near the tablet has the Stone of Commune. It's hard to make out, but he seems to be riding something, and something else is bearing down on him from behind! And then the vision fades... I will go to the North of Giants Cave where the Stone of Commune is located. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/9-04.htm new file mode 100644 index 0000000000..f8d68e2c03 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/9-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+ The tablet has no response. Let's go to the North of Giants Cavewhere the Stone of Commune is located. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/Q00098_SagaOfTheShillienSaint.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/Q00098_SagaOfTheShillienSaint.java new file mode 100644 index 0000000000..2819a51496 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00098_SagaOfTheShillienSaint/Q00098_SagaOfTheShillienSaint.java @@ -0,0 +1,105 @@ +/* + * 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.Q00098_SagaOfTheShillienSaint; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Shillien Saint (98) + * @author Emperorc + */ +public class Q00098_SagaOfTheShillienSaint extends AbstractSagaQuest +{ + public Q00098_SagaOfTheShillienSaint() + { + super(98); + _npc = new int[] + { + 31581, + 31626, + 31588, + 31287, + 31621, + 31646, + 31647, + 31651, + 31654, + 31655, + 31658, + 31287 + }; + Items = new int[] + { + 7080, + 7525, + 7081, + 7513, + 7296, + 7327, + 7358, + 7389, + 7420, + 7451, + 7090, + 0 + }; + Mob = new int[] + { + 27270, + 27247, + 27277 + }; + classid = new int[] + { + 112 + }; + prevclass = new int[] + { + 0x2b + }; + npcSpawnLocations = new Location[] + { + new Location(119518, -28658, -3811), + new Location(181215, 36676, -4812), + new Location(181227, 36703, -4816) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-01.htm new file mode 100644 index 0000000000..0e1074a8b3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-01.htm @@ -0,0 +1,6 @@ +Chief Inspector Mond:
+Do you know who I am? I'm an inspector from the Bronze Key Guild, but that's just a superficial job title!
+What I'm about to tell you is known by only a few people in the whole Dwarven kingdom! Listen carefully! I won't repeat it.
+The Bronze Key Guild was originally formed to resist the von Hellmann family that tried to take over the Elmore Kingdom and the Benandanti cartel that followed them. It was an elite group, consisting of only Dwarves with the very best skills.
+Our guild has watched you for a long time. We saw you pass the cruel test of Master Toma and get your Scavenger license, and when you made 7 journeyman's rings and passed the Trial of the Guildsman. Some time ago, we concluded that a Dwarf with your willpower and acumen deserves to be a member of our guild. Now I have an offer for you. Will you join us in defeating the Benandanti cartel?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-010.htm new file mode 100644 index 0000000000..3a00a39eb1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-010.htm @@ -0,0 +1,4 @@ +Chief Inspector Mond:
+You've drunk from the Grail of Splendor and learned the ultimate absolute geometry, but you still haven't attained the sacred knowledge!
+ Just like food, knowledge must be digested to become truth. Come back after you've trained some more.
+(Only a character of level 76 or above may transfer to the Fortune Seeker class. Don't abandon the quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-02.htm new file mode 100644 index 0000000000..40b9e3209a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-02.htm @@ -0,0 +1,6 @@ +Chief Inspector Mond:
+Do you know who I am? I'm an inspector from the Bronze Key Guild, but that's just a superficial job title!
+What I'm about to tell you is known by only a few people in the whole Dwarven kingdom! Listen carefully! I won't repeat it.
+The Bronze Key Guild was originally formed to resist the von Hellmann family that tried to take over the Elmore Kingdom and the Benandanti cartel that followed them. It was an elite group, consisting of only Dwarves with the very best skills.
+Our guild has watched you for a long time. We saw you pass the cruel test of Master Toma and get your Scavenger license, and when you made 7 journeyman's rings and passed the Trial of the Guildsman. Some time ago, we concluded that a Dwarf with your willpower and acumen deserves to be a member of our guild. But unfortunately, your experience is still lacking... I'll call for you sooner or later. Please keep up the hard work.
+(This quest may only be undertaken only by Bounty Hunters of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-03.htm new file mode 100644 index 0000000000..4d30aad7a2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-03.htm @@ -0,0 +1,4 @@ +Chief Inspector Mond:
+First you must speak with Pamela Aprodia, the agent dispatched to Goddard. Although she's not a Dwarf, she's an excellent agent who's been working with us for a long time. She's probably investigating the six tablets in Goddard Castle Town right now. You'd better go there and meet her.
+One more thing. Before you leave, read this report. It's an Investigative Report on the spirit protecting one of the tablets. If you follow the Benandantis, you will probably come across this spirit. You should read it now.
+You'd better get going! May Maphr be with you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-04.htm new file mode 100644 index 0000000000..6fefe29adb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-04.htm @@ -0,0 +1,3 @@ +Chief Inspector Mond:
+Go to Goddard Castle Town and speak with Pamela Aprodia. She'll tell you more about the tablets.
+ Hurry! The secrets of the tablets must never be handed over to the Benandantis! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-05.htm new file mode 100644 index 0000000000..5a1e6e18d4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-05.htm @@ -0,0 +1,6 @@ +Chief Inspector Mond:
+Well then, let's spit on the ground and shake hands! The trust between us has been established while Maphr has watched over us.
+Now I'll tell you what to do. The Benandanti cartel is searching for a legendary relic known as the Grail of Splendor. They would have found it by now if it were a real object, but it's not! It is actually the knowledge that reaches into the domain of the gods! It may be a part of the absolute geometry that elders of our guild have searched for since ancient times!
+There is nothing to be learned in books or scrolls about the grail. The gods wrote their secrets on six ancient stone tablets, and put them in secluded places, guarded by fearsome monsters! If you absorb the knowledge held in the six tablets, you'll attain the level of Fortune Seeker, one who controls disasters and even the flow of destiny!
+ We must not let this valuable legacy slip into the hands of Benandantis! You must get the grail before they do!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-06.htm new file mode 100644 index 0000000000..b60a14fc45 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-06.htm @@ -0,0 +1,3 @@ +Chief Inspector Mond:
+Ha, ha, ha! Welcome back! You've cut members of the Benedictine Cartel out and beautifully finished your job!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-07.htm new file mode 100644 index 0000000000..eb16b988c7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-07.htm @@ -0,0 +1,4 @@ +Chief Inspector Mond:
+You've drunk from the Grail of Splendor and learned the ultimate absolute geometry! You've acheived the sacred knowledge! My only role is to confer an appropriate title on the person who has that knowledge. I hereby confer upon you the title of Fortune Seeker!
+Congratulations! I can't believe that a young Dwarf like you has become the Fortune Seeker of our time! Am I witnessing the beginning of the new destiny?
+ I expect great things from you in the future! Please work hard to become a positive role model for all the Dwarves! May Maphr's abundance be with you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-08.htm new file mode 100644 index 0000000000..3a00a39eb1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-08.htm @@ -0,0 +1,4 @@ +Chief Inspector Mond:
+You've drunk from the Grail of Splendor and learned the ultimate absolute geometry, but you still haven't attained the sacred knowledge!
+ Just like food, knowledge must be digested to become truth. Come back after you've trained some more.
+(Only a character of level 76 or above may transfer to the Fortune Seeker class. Don't abandon the quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-09.htm new file mode 100644 index 0000000000..b24198b598 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/0-09.htm @@ -0,0 +1,4 @@ +Chief Inspector Mond:
+You've drunk from the Grail of Splendor and learned the ultimate absolute geometry! You've acheived the sacred knowledge! My only role is to confer an appropriate title on the person who has that knowledge. I hereby confer upon you the title of Fortune Seeker!
+Congratulations! I can't believe that a young Dwarf like you has become the Fortune Seeker of our time! Am I witnessing the beginning of a new destiny?
+ I expect great things from you in the future! Please work hard to become a positive role model for all the Dwarves! May Maphr's abundance be with you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-01.htm new file mode 100644 index 0000000000..85b3940e59 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-01.htm @@ -0,0 +1,5 @@ +Information Broker Bavarin:
+Dammit, Sharon! I came here for a rest, but I keep having to deal with customers! Could you please handle them from now on?
+So, what do you want? You're here for the grail of splendor, aren't you? How do I know that? Well, I have my ways...
+You're too late! I already sold that information to the Benandanti Cartel. Made a pretty penny, too, I must say! Of course, I'm perfectly willing to give you the same information for the right price. Ha!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-02.htm new file mode 100644 index 0000000000..013f5edfe9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-02.htm @@ -0,0 +1,2 @@ +Information Broker Bavarin:
+It won't come cheap, my friend! This wine tastes terrible warm! Bring me some ice crystals for my wine right away! Chef Jeremy can tell you where to find them. He's around here somewhere... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-03.htm new file mode 100644 index 0000000000..d13952704e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-03.htm @@ -0,0 +1,4 @@ +Information Broker Bavarin:
+Excellent! You brought the ice crystal! Now I can finally enjoy my wine!
+ You've made quite a name for yourself around here, my friend! You destroyed Bumbalump, didn't you? I heard that yeti was as big as a house! How did you kill that critter? You're awesome!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-04.htm new file mode 100644 index 0000000000..70c29ed008 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-04.htm @@ -0,0 +1,2 @@ +Information Broker Bavarin:
+Hey, why are you still here? Pamela must be wondering where you are! Don't keep a lady waiting! Take her the document that I gave you immediately! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-05.htm new file mode 100644 index 0000000000..5edd59dcac --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-05.htm @@ -0,0 +1,4 @@ +Information Broker Bavarin:
+You think I'm just a silly old Dwarf, don't you? Well, I don't care what you think! What's the bottom line? Where's my profit? That philosophy has served us Dwarves well for thousands of years! Do you think I care what I look like to you? Rubbish!
+Well, speaking of my profit...
+I want a nice cool glass of wine after my bath. I simply must have some of the legendary ice crystals that can only be found in this area! Chef Jeremy can tell you where to find them. I'll bet if you help him find some soy sauce, he'll tell you where to find the ice crystals. He's around here somewhere... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-06.htm new file mode 100644 index 0000000000..ddc909c293 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/1-06.htm @@ -0,0 +1,3 @@ +Information Broker Bavarin:
+You're a real stick in the mud, aren't you? OK, I'll give you the information... Now where did I put it?
+Ah, yes, here it is! Take these documents, and please give Pamela my regards! Goodbye! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-01.htm new file mode 100644 index 0000000000..b058385429 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You can feel the presence of the Stone of Commune near the tablet. You feel you can find out its exact location if you lay your hands on the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-02.htm new file mode 100644 index 0000000000..1c0cfaf9b7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+As you are about to lay your hands on the tablet, you feel something behind you. A creature, unknown to you, appears... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-03.htm new file mode 100644 index 0000000000..8ff64015fa --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You need the Stone of Commune to decipher the hieroglyphs on the tablet. Speak with Pamela Aprodia about the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-04.htm new file mode 100644 index 0000000000..99f1cbf806 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone is already communing with the Tablet of Vision. Please try again later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-05.htm new file mode 100644 index 0000000000..31025a8c7b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is inscribed with indecipherable hieroglyphs. The letters emit a dim light and the tablet seems to manifest strong magical powers.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-06.htm new file mode 100644 index 0000000000..18b93eaca2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-06.htm @@ -0,0 +1,7 @@ +Tablet of Vision:
+As you hold the Stone of Commune and concentrate on it, the tablet starts to be surrounded by bright light. You hear several hundred people simultaneously reading scriptures, and new knowledge starts to enter your mind. On one hand, you feel like you understand everything. On the other hand, you feel that you don't understand anything.
+You hear someone's low-pitched laughter. And you hear a man's voice.
+"You now have one more successor that you like."
+A blonde woman replies.
+"No, he's like a baby who just started walking. But he will no longer need his mother's protection..."
+All images disappear, and you start to recognize the surrounding environment. You are starting to understand the knowledge you have gained from the tablet little by little. The pilgrimage of the tablet seems to have ended. Return to Rune Castle Town and see Chief Inspector Mond. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-07.htm new file mode 100644 index 0000000000..2e350a1d27 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Nothing happens any more even when you lay your hands on the tablet. Now that you have finished your pilgrimage of the tablet, return to Rune Castle Town and see Chief Inspector Mond. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/11-01.htm new file mode 100644 index 0000000000..6d0807d7fd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/11-01.htm @@ -0,0 +1,4 @@ +Pamela Aprodia:
+I've been waiting for you! My soldiers recently attacked a convoy of Benandantis and captured vital information! With this Stone of Commune... This is the Stone of Commune you felt. But haven't you felt that its power is weaker than before? This Stone of Commune is useless since it lost its power.
+Hey, it is too early to give up! I've recently learned that there are two more Stones of Commune that are exactly the same as this! One can be found at the Imperial Tomb and the other at the Wall of Argos. At the cemetery, look in the Four Sepulchers. If you decide to go to the Wall of Argos, look in the Shrine of the Loyal in the northeastern part of the valley. And...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/11-02.htm new file mode 100644 index 0000000000..a08da508da --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/11-02.htm @@ -0,0 +1,3 @@ +Pamela Aprodia:
+To get the fifth Stone of Commune, you must destroy the Archon of Halisha. Find the devil in the Imperial Tomb or at the Wall of Argos.
+If you go to the Imperial Tomb, you can confront him by entering the Four Sepulchers. If you go to the Shrine of the Loyal, you must attack his minions as you see them. Then Archon of Halisha will appear. Keep in mind that you must destroy him to get the Stone of Commune. OK, leave now! MMMMMAH!!! This is the kiss of luck!. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/11-03.htm new file mode 100644 index 0000000000..94ee38c29d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/11-03.htm @@ -0,0 +1,3 @@ +Pamela Aprodia:
+There is no way to avoid meeting the Archon of Halisha. Yes, because he has the fifth Stone of Commune.
+If you go to the Imperial Tomb, you can confront him by entering the Four Sepulchers. If you go to the Shrine of the Loyal, you must attack his minions as you see them. Then the Archon of Halisha will appear. OK, leave now! MMMMMAH!!! This is the kiss of luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-01.htm new file mode 100644 index 0000000000..6522ff3258 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-01.htm @@ -0,0 +1,4 @@ +Pamela Aprodia:
+Did M send you to me? I mean Mr. Bond...
+The Benandantis are one step ahead of us. They already know the location of the stone tablet. We must find out what they've learned!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-02.htm new file mode 100644 index 0000000000..7b458b88f5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-02.htm @@ -0,0 +1,2 @@ +Pamela Aprodia:
+Why are you still here? Go to the hot springs area and speak with Bavarin! The Benandanti cartel is already on the move. You must quickly find out the location of the stone tablet. Hurry, there isn't much time! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-03.htm new file mode 100644 index 0000000000..e6a03bf3ce --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-03.htm @@ -0,0 +1,7 @@ +Pamela Aprodia:
+Is this the document from Bavarin? It shows not only the location of the stone tablet, but how to read the questions written on the tablet. This is better than I expected. Excellent work, I underestimated you.
+Let's read it...
+Nobody can read the passage written on the six stone Tablets of Vision because the gods don't want us to learn the highest level of magic. They're afraid we would become arrogant and self-righteous, like Emperor Baium, Demon Beleth, or the giants did when they made war against them.
+They broke the tablet, where the most profound principles of magic were written - it was used to teach the magic to the giants - into six pieces and changed the letters on the tablet into the god's characters. They can only be understood by the gods or those who are as powerful. This way, nobody could learn the knowledge. But there is a method! I'll explain.
+Wow, this is really interesting, isn't it?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-04.htm new file mode 100644 index 0000000000..c5d5c21a67 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-04.htm @@ -0,0 +1,2 @@ +Pamela Aprodia:
+We can find the Tablet of Vision with the Stone of Commune. Can you sense the location of the tablet? Then go immediately! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-05.htm new file mode 100644 index 0000000000..fa34abe834 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-05.htm @@ -0,0 +1,3 @@ +Pamela Aprodia:
+You should go to the hot springs area and speak with Bavarin. He already knows me. He might tell our enemies that the Bronze Key Guild is on the move if I went. A stranger like you should approach him.
+You must hurry! The messengers of the Benandanti cartel are running swiftly! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-06.htm new file mode 100644 index 0000000000..71ce3293cc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/2-06.htm @@ -0,0 +1,4 @@ +Pamela Aprodia:
+Be patient. Ahem!
+If you use the power of the Stone of Commune, you can understand the characters of the gods written on the Tablet of Vision. Also, if you hold the stone with your hands, you will know intuitively where the tablet is hidden. It isn't yet known who on earth made this. But this much is evident. Someone is secretly helping us learn the knowledge forbidden by the gods!
+Then this stone that we took from the Benandanti member we killed may be the Stone of Commune! Take it! If what is written in the document is true, we can find the Tablet of Vision with it. Can you sense the location of the tablet? Then go immediately! I'll gather more information. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-01.htm new file mode 100644 index 0000000000..3d8fd2bfec --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-01.htm @@ -0,0 +1,4 @@ +Pamela Aprodia:
+Oh, it was you! Wow, you defeated the Archangel Iconoclasis alone! Very impressive! I could really go for someone like you!
+However... The Benandantis are still ahead of us, and it seems that they already communed with the fourth Tablet of Vision! Fortunately, I followed them and learned several pieces of information.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-02.htm new file mode 100644 index 0000000000..99a7f2b261 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-02.htm @@ -0,0 +1,3 @@ +Pamela Aprodia:
+Very well! Go to Messenger Wahkan of the Ketra Orcs. They will be hiring mercenaries. This is a good opportunity to gain their trust!
+The sacred stone of wisdom we are looking for is possessed by soul guide Asefa, the chief shaman of the Ketra Orcs. If things aren't going well, you can switch sides and approach the Varka Silenos tribe. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-03.htm new file mode 100644 index 0000000000..6f7b1a2ebb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-03.htm @@ -0,0 +1,3 @@ +Pamela Aprodia:
+Then go to Messenger Naran Ashanuk of the Ketra Orcs. They will be hiring mercenaries. This is a good opportunity to gain their trust!
+The sacred stone of wisdom we are looking for is possessed by soul guide Udan Mardui, the chief shaman of the Varka Silenos. If things aren't going well, you can switch sides and approach the Ketra Orcs. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-04.htm new file mode 100644 index 0000000000..735c1c7909 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-04.htm @@ -0,0 +1,2 @@ +Pamela Aprodia:
+To use the fourth Stone of Commune, we have to get the sacred stone of wisdom worshipped by the Ketra Orcs and the Varka Silenos. You have to gain their trust first, but it won't be easy as they are wild and warlike tribes. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-05.htm new file mode 100644 index 0000000000..4f4fa35c2f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-05.htm @@ -0,0 +1,3 @@ +Pamela Aprodia:
+A fragment of the fourth Stone of Commune is actually worshiped by an uncivilized tribe who call it their Holy Stone of Wisdom! Now put these two stones together...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-06.htm new file mode 100644 index 0000000000..2e93ca42c7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-06.htm @@ -0,0 +1,2 @@ +Pamela Aprodia:
+You haven't left yet? Take the Stone of Commune I gave you to the fourth tablet. You'll know its location intuitively. If it's difficult to find with your feelings, use the Map. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-07.htm new file mode 100644 index 0000000000..0af42d2c67 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-07.htm @@ -0,0 +1,5 @@ +Pamela Aprodia:
+You can feel the Stone of Commune? It must be this small piece of stone that I stole from the Benandantis. It's the fragment of the fourth Stone of Commune. However, for it to work properly, we have to find the missing piece and put them together.
+The rest of the Stone of Commune is called the sacred stone of wisdom and is worshiped as an idol by the uncivilized tribes in this area. The Ketra Orcs and the Varka Silenos each have one. To get the stone from them, you must first win their trust. Since they are wild and warlike, I don't know which tribe you should approach.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-08.htm new file mode 100644 index 0000000000..507dca3bd4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/3-08.htm @@ -0,0 +1,2 @@ +Pamela Aprodia:
+The two pieces fit together perfectly! Take this Stone of Commune and find the fourth Tablet of Vision. Hurry! We must win the race against the Benandantis! And who knows? Maybe you'll become the Fortune Seeker... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-01.htm new file mode 100644 index 0000000000..92fa29d898 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-01.htm @@ -0,0 +1,2 @@ +Pamela Aprodia:
+It's Minelbia, the witch of the van Hacken family! Don't let her get away! Help! Hurry! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-010.htm new file mode 100644 index 0000000000..3732b2fa4b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-010.htm @@ -0,0 +1,4 @@ +Pamela Aprodia:
+Ah, yes.... I took this from the witch's pocket... It's the sixth Stone of Commune! Hurry and take it to the last Tablet of Vision before more Benandantis come!
+I'm going to keep an eye on them. See you later!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-011.htm new file mode 100644 index 0000000000..1f7d9ad1c7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-011.htm @@ -0,0 +1,2 @@ +Pamela Aprodia:
+Ah, yes.... I took this from the witch's pocket... It's the sixth Stone of Commune! Hurry and take it to the last Tablet of Vision before more Benandantis come! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-02.htm new file mode 100644 index 0000000000..c0c0acfd62 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-02.htm @@ -0,0 +1,2 @@ +Pamela Aprodia:
+It's Minelbia, the witch of the van Hacken family! She's trying to get away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-03.htm new file mode 100644 index 0000000000..39d763a0f0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-03.htm @@ -0,0 +1,2 @@ +Pamela Aprodia:
+It's Minelbia, the witch of the van Hacken family! She's escaped! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-04.htm new file mode 100644 index 0000000000..92fa29d898 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-04.htm @@ -0,0 +1,2 @@ +Pamela Aprodia:
+It's Minelbia, the witch of the van Hacken family! Don't let her get away! Help! Hurry! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-05.htm new file mode 100644 index 0000000000..c0c0acfd62 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-05.htm @@ -0,0 +1,2 @@ +Pamela Aprodia:
+It's Minelbia, the witch of the van Hacken family! She's trying to get away! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-06.htm new file mode 100644 index 0000000000..0b763db54b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-06.htm @@ -0,0 +1,3 @@ +Pamela Aprodia:
+Wow! You killed her! I thought we were done for! Thank you for your help!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-07.htm new file mode 100644 index 0000000000..9dcd35278c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-07.htm @@ -0,0 +1,3 @@ +Pamela Aprodia:
+I hate vampires!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-08.htm new file mode 100644 index 0000000000..ee297d05e6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-08.htm @@ -0,0 +1,3 @@ +Pamela Aprodia:
+It's Minelbia, the witch of the van Hacken family! She's trying to get away!
+Hurry, let the Stone of Commune react with the tablet! Quickly, before more Benandantis come! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-09.htm new file mode 100644 index 0000000000..a51a2eb4f9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/4-09.htm @@ -0,0 +1,2 @@ +Pamela Aprodia:
+Let the Stone of Commune react with the tablet! Quickly, before more Benandantis come! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/5-01.htm new file mode 100644 index 0000000000..1f34f9ee87 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Hieroglyphics are engraved on the tablet. They emit a dim light, with a mysterious and powerful magic.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/5-02.htm new file mode 100644 index 0000000000..a82c674769 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. One of the voices is a familiar female whisper. But it quickly disappears.
+Slowly, you begin to visualize where the next Stone of Commune is... in the valley of dust... you see a second Tablet of Vision... and a female warrior in platinum armor. She is holding the stone... She unfolds her wings and flies away... and she's not alone...
+In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/5-03.htm new file mode 100644 index 0000000000..cfcfb434ea --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/5-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You visualize the stone once again when touching the Tablet. In the yellow-brown valley, you see a female warrior with platinum wings. She is holding the stone in her hand.
+You are compelled to go forth and find the stone right now! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/6-01.htm new file mode 100644 index 0000000000..8e1f1965df --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have the Stone of Commune to access this Tablet of Vision. It is being held by one of the female warriors with wings. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/6-02.htm new file mode 100644 index 0000000000..e1b4696bff --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Hieroglyphics are engraved on the tablet. They emit a dim light, with a mysterious and powerful magic.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/6-03.htm new file mode 100644 index 0000000000..2824d0a662 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. One of the voices is a familiar female whisper. But it quickly disappears.
+Slowly, you sense the stone... You see the third Tablet of Vision... and an angel with two pairs of wings... She is holding the stone in her hand...
+In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/6-04.htm new file mode 100644 index 0000000000..6d54d3d052 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/6-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Your visions temporarily return, you again see the third Tablet of Vision... and an angel with two pairs of wings... She is holding the stone in her hand.
+You are compelled to go forth and find the stone right now! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-01.htm new file mode 100644 index 0000000000..d9e9849e5c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You definitely sense the Stone of Commune. You seem to understand the location of the next Stone of Commune.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-02.htm new file mode 100644 index 0000000000..23b235bce5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+An invisible force pushes you away whenever you go to touch the tablet. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-03.htm new file mode 100644 index 0000000000..b6bcb78d48 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have the Stone of Commune to access this Tablet of Vision. It is being held by an archangel. Defeat Archangel Iconoclasis and take the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-04.htm new file mode 100644 index 0000000000..80934b422b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone else is currently communing with the Tablet of Vision. Come back later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-05.htm new file mode 100644 index 0000000000..18753c8452 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Hieroglyphics are engraved on the tablet. They emit a dim light, with a mysterious and powerful magic.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-06.htm new file mode 100644 index 0000000000..b4be304a1b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-06.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. One of the voices is a familiar female whisper. But it quickly disappears.
+Slowly, you sense the stone... You see the Village of the Goddard Castle... Dark Elven... and Pamela Aprodia... You sense that she is holding the stone in her hand.
+In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-07.htm new file mode 100644 index 0000000000..3c8ac08bfa --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/7-07.htm @@ -0,0 +1 @@ +Tablet of Vision:
Putting your hands on the tablet, the location of the Stone of Commune again becomes clear. Pamela Aprodia in the Goddard Castle Town has the stone! Go to the town and get it from her. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/8-01.htm new file mode 100644 index 0000000000..e78098dc9e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/8-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Ancient, indecipherable hieroglyphs are engraved upon the tablet. They emit a mysterious, dim light. There is something magical and powerful in the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/8-02.htm new file mode 100644 index 0000000000..9aee9fc1c6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/8-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. There is a vision of a beautiful blonde woman and a knight with a black armor. The vision disappears. Slowly, you begin to visualize where the next Stone of Commune is...The Goddard Castle Town...There is Pamela Aprodia with the Stone of Commune...The beam from the stone is much weaker than before.
+In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/8-03.htm new file mode 100644 index 0000000000..c5fe4dd563 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/8-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
Putting your hands on the tablet, the location of the Stone of Commune again becomes clear. Pamela Aprodia in the Goddard Castle Town has the fifth Stone of Commune. Go and get it from her! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/9-01.htm new file mode 100644 index 0000000000..e1787a093e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/9-01.htm @@ -0,0 +1 @@ +Tablet of Vision:
To decode the figures in the tablet, the Stone of Commune is needed. The fifth Stone of Commune is in the possession of the Archon of Halisha! You can find him at the Sepulchers or the Shrine of the Feudal Lords at the northeastern part of the Wall of Argos, and defeat low-grade evils. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/9-02.htm new file mode 100644 index 0000000000..6361b4ff07 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/9-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Ancient, indecipherable hieroglyphs are engraved upon the tablet. They emit a mysterious, dim light. There is something magical and powerful in the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/9-03.htm new file mode 100644 index 0000000000..5290f421c3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/9-03.htm @@ -0,0 +1 @@ +Tablet of Vision:
The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. There is a vision of a beautiful blonde woman and a knight with black armor. The vision disappears. Slowly, you begin to visualize where the next Stone of Commune is...A vision appears...The sixth Tablet of Vision hidden in the wilds. Standing in front of the tablet is the unfamiliar shadow of a human...His face is invisible in the darkness, but the Stone of Commune held in his hands emits a dim light.
In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/9-04.htm new file mode 100644 index 0000000000..3fcf10a49c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/9-04.htm @@ -0,0 +1 @@ +Tablet of Vision:
Putting your hands on the tablet, the location of the Stone of Commune again becomes clear. The sixth Stone of Commune is hidden in the wilderness and there are ominious signs of a person's presence ...He is holding the Stone of Commune in his hands...Go and get the stone from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/Q00099_SagaOfTheFortuneSeeker.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/Q00099_SagaOfTheFortuneSeeker.java new file mode 100644 index 0000000000..68e665d3f3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00099_SagaOfTheFortuneSeeker/Q00099_SagaOfTheFortuneSeeker.java @@ -0,0 +1,105 @@ +/* + * 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.Q00099_SagaOfTheFortuneSeeker; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Fortune Seeker (99) + * @author Emperorc + */ +public class Q00099_SagaOfTheFortuneSeeker extends AbstractSagaQuest +{ + public Q00099_SagaOfTheFortuneSeeker() + { + super(99); + _npc = new int[] + { + 31594, + 31623, + 31600, + 31600, + 31601, + 31646, + 31649, + 31650, + 31654, + 31655, + 31657, + 31600 + }; + Items = new int[] + { + 7080, + 7608, + 7081, + 7514, + 7297, + 7328, + 7359, + 7390, + 7421, + 7452, + 7109, + 0 + }; + Mob = new int[] + { + 27259, + 27248, + 27309 + }; + classid = new int[] + { + 117 + }; + prevclass = new int[] + { + 0x37 + }; + npcSpawnLocations = new Location[] + { + new Location(191046, -40640, -3042), + new Location(46066, -36396, -1685), + new Location(46087, -36372, -1685) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-01.htm new file mode 100644 index 0000000000..647148d750 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-01.htm @@ -0,0 +1,4 @@ +Chief Golem Craftsman Telson:
+ Our Black Anvil guild has watched you closely for a long time. We paid particular attention when you passed the cruel test of the three blacksmiths and were proclaimed an Artisan, and when you made seven Journeyman Rings and passed the guild's trial.
+ Not long ago, we determined that you are a splendid Dwarf, with exceptional guts and acumen! I'd like to make you an official offer! One time only! Do you wish to challenge a test given to only the best Artisans? This is your chance to become a Maestro, the ultimate Artisan!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-010.htm new file mode 100644 index 0000000000..4d5b003d11 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-010.htm @@ -0,0 +1,4 @@ +Chief Golem Craftsman Telson:
+ You've learned the truths of absolute geometry, but you still haven't learned the most sacred truths! Your pilgrimage isn't done yet!
+Like food, knowledge must be digested to become truth. Have more experiences and then come back!
+(Only a character of level 76 or above can transfer to the Maestro class. Don't abandon the quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-02.htm new file mode 100644 index 0000000000..beaf2d0b54 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-02.htm @@ -0,0 +1,4 @@ +Chief Golem Craftsman Telson:
+ The Black Anvil Guild has watched you closely for a long time. We paid particular attention when you passed the cruel test of the three blacksmiths and were proclaimed an Artisan, and when you made seven Journeyman Rings and passed the guild's trial.
+We've determined that you're a splendid Dwarf, with exceptional guts and acumen! I'd really like to offer you the chance to become a Maestro, the ultimate artisan, but you don't have enough experience yet. Keep up the hard work!
+(This quest may only be undertaken by a Warsmith of level 76 or above.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-03.htm new file mode 100644 index 0000000000..73c6d6854c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-03.htm @@ -0,0 +1,3 @@ +Chief Golem Craftsman Telson:
+ He's probably in Goddard Castle Town by now. He, like his brother, tends to show up and disappear suddenly! So, I'm not quite sure.
+Yesterday he came running up to me and dropped this off. He asked me to give it to you. I skimmed through it, and it seems to be a report about a spirit that protects one of the six tablets. You should read it, since you'll have to face it eventually. Now, get going! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-04.htm new file mode 100644 index 0000000000..a16d989eab --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-04.htm @@ -0,0 +1,3 @@ +Chief Golem Craftsman Telson:
+ You should meet Master Tobald first and ask him about the pilgrimage of tablets. He's probably in Goddard Castle Town by now. He, like his brother, tends to show up unexpectedly and then vanish just as suddenly... So, I'm not quite sure.
+You must read the report I gave you! You'll need to know what's in it! Get going now! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-05.htm new file mode 100644 index 0000000000..38af540942 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-05.htm @@ -0,0 +1,4 @@ +Chief Golem Craftsman Telson:
+To reach the level of Maestro, you must learn the basic truths of absolute geometry. No books or scrolls exist on the subject, so your path will not be an easy one. The knowledge is far from the domain of Dwarves, in the territory of the gods. The secret is supposedly written on six ancient tablets, hidden by the gods in secluded areas and protected by formidable monsters to prevent anyone from discovering the magic they contain.
+Once you learn all the knowledge specified in the six tablets, you'll become a Maestro, with the crystal structures of metals flowing through your fingertips! A Dwarf named Master Tobald left earlier to undertake the pilgrimage of the tablets. Do you know him? His brother is the famous Master Toma! He may be careless, it must run in his family, but his abilities are undeniable! Tobald can help you with various things regarding the pilgrimage of the tablets. Go and find him!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-06.htm new file mode 100644 index 0000000000..333cf44170 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-06.htm @@ -0,0 +1,4 @@ +Chief Golem Craftsman Telson:
+ Welcome back! Well, Master Tobald came by a few days ago and was talking about you! He said that you'd be coming by today, and here you are! How strange!
+Did you really finish the pilgrimage of tablets? You finished before Tobald! That's incredible!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-07.htm new file mode 100644 index 0000000000..53d3807413 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-07.htm @@ -0,0 +1,4 @@ +Chief Golem Craftsman Telson:
+ You've learned the ultimate sacred truths of absolute geometry! My only role is to confer an appropriate title upon the person with the knowledge.
+On behalf of the Black Anvil Guild, I hereby grant you the title of Maestro!
+Congratulations! The birth of a new Maestro is a very happy occasion! I expect great things from you! Please do your best to become a model for all Dwarves! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-08.htm new file mode 100644 index 0000000000..4d5b003d11 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-08.htm @@ -0,0 +1,4 @@ +Chief Golem Craftsman Telson:
+ You've learned the truths of absolute geometry, but you still haven't learned the most sacred truths! Your pilgrimage isn't done yet!
+Like food, knowledge must be digested to become truth. Have more experiences and then come back!
+(Only a character of level 76 or above can transfer to the Maestro class. Don't abandon the quest until class transfer is complete.) \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-09.htm new file mode 100644 index 0000000000..f481bacb0f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/0-09.htm @@ -0,0 +1,4 @@ +Chief Golem Craftsman Telson:
+You've learned the ultimate sacred truths of absolute geometry! My only role is to confer an appropriate title upon the person with the knowledge.
+On behalf of the Black Anvil guild, I hereby grant you the title of Maestro!
+Congratulations! The birth of a new Maestro is a very happy occasion! I expect great things from you! Please do your best to become a model for all Dwarves! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-01.htm new file mode 100644 index 0000000000..c8ca743cd2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-01.htm @@ -0,0 +1,3 @@ +Blueprint Seller Borodin:
+That's right! I've been asked to repair one of Master Tobald's inventions! What an honor! Master Toma's development of the spatial movement device was amazing, but a machine that lets you travel through time is something, isn't it?
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-02.htm new file mode 100644 index 0000000000..cbce5ae05c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-02.htm @@ -0,0 +1,2 @@ +Blueprint Seller Borodin:
+You're really narrow-minded, aren't you? Look! I must have ice crystals to repair Wilma #3! You'll find them in the hot springs area in the north part of Goddard. Chef Jeremy can tell you more. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-03.htm new file mode 100644 index 0000000000..46f625a104 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-03.htm @@ -0,0 +1,4 @@ +Blueprint Seller Borodin:
+Welcome back! You've brought the ice crystals that produce a temperature of absolute zero! I can fix the cooling system easily with these!
+I heard you killed Bumbalump! Is that true? Awesome!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-04.htm new file mode 100644 index 0000000000..7cc9c5e85b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-04.htm @@ -0,0 +1,2 @@ +Blueprint Seller Borodin:
+Why are you back? I fixed the cooling system of Wilma #3 and gave it to you to take to Master Tobald! Get going! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-05.htm new file mode 100644 index 0000000000..7ce5958e31 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-05.htm @@ -0,0 +1,2 @@ +Blueprint Seller Borodin:
+Ha! I'm embarrassed to say, but that's what happened. Honestly, I need a very powerful coolant to repair such a huge cooling system... Could you please find some ice crystals for me? I've heard they reach a temperature of absolute zero! You can only find them in the hot springs area in the northern part of Goddard. Chef Jeremy will tell you where to find them if you help him find some soy sauce. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-06.htm new file mode 100644 index 0000000000..288f499e91 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/1-06.htm @@ -0,0 +1,3 @@ +Blueprint Seller Borodin:
+As you can see, the problem isn't my skill, only the shortage of raw materials! I fixed it, didn't I? Take it to Master Tobald now. Wilma #3 is working fine!
+ I heard you were on the pilgrimage of the tablets. I didn't realize you were so important! Good luck! May you become as great a craftsman as Master Tobald himself! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-01.htm new file mode 100644 index 0000000000..bfb0fc2ce9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You can feel the presence of the Stone of Commune near the tablet. You feel you can find out its exact location if you lay your hands on the tablet.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-02.htm new file mode 100644 index 0000000000..78030a8a48 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+As you are about to lay your hands on the tablet, you can feel something behind you. And a new creature that you haven't seen before appears... \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-03.htm new file mode 100644 index 0000000000..804404e173 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You need the Stone of Commune to decipher the hieroglyphs on the tablet. Speak with Master Tobalt about the Stone of Commune. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-04.htm new file mode 100644 index 0000000000..f90864cb22 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone is already communing with the tablet. Try again later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-05.htm new file mode 100644 index 0000000000..c71ec0fd32 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-05.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The tablet is inscribed with indecipherable hieroglyphs. The letters emit a dim light and the tablet seems to manifest strong magical powers.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-06.htm new file mode 100644 index 0000000000..0be9927025 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-06.htm @@ -0,0 +1,7 @@ +Tablet of Vision:
+As you hold the Stone of Commune and concentrate on it, the tablet gets surrounded by bright light. You hear several hundred people simultaneously reading scriptures, and new knowledge starts to enter your mind. On one hand, you feel like you understand everything. On the other hand, you feel that you don't understand anything.
+You hear someone's low-pitched laughter. And you hear a man's voice.
+"You now have one more successor that you like."
+A blonde woman replies.
+"No, he's like a baby who just started walking. But he will no longer need his mother's protection..."
+All images disappear, and you start to recognize the surrounding environment. You are starting to understand the knowledge you have gained from the tablet little by little. The pilgrimage of the tablet seems to have ended. Return to Rune Castle Town and see Chief Golem Crafter Telson. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-07.htm new file mode 100644 index 0000000000..3c532baf5c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/10-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Nothing happens any more even when you lay your hands on the tablet. Now that you have finished your pilgrimage of the tablet, go back to Rune Castle Town and see Chief Golem Crafter Telson. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/11-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/11-01.htm new file mode 100644 index 0000000000..6392483137 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/11-01.htm @@ -0,0 +1,4 @@ +Master Tobald:
+Who are you? What? You're on the pilgrimage of tablets as well, huh? Hmm! Did you feel this Stone of Commune that I found? I can't give it to you! You have no idea what I had to go through to get it!
+Don't look so pathetic, I'll tell you where to get another one. Go to the Imperial Tomb or the Wall of Argos. At the cemetery, you must enter the Four Sepulchers which is farthest inside. At the Wall of Argos, go to the Shrine of the Loyal at the northeastern end. One more thing...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/11-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/11-02.htm new file mode 100644 index 0000000000..c1b40a6e65 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/11-02.htm @@ -0,0 +1,3 @@ +Master Tobald:
+How narrow-minded! To get your hands on the fifth Stone of Commune, you must slay the Archon of Halisha! Find him in the cemetery or at the Shrine of the Loyal inside the Wall of Argos.
+At the cemetery, you must enter the Four Sepulchers, which is farthest inside. At the shrine, you must kill as many low-level beasts as you can before the Archon will appear. That's all the advice I'll give you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/11-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/11-03.htm new file mode 100644 index 0000000000..d899d888a7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/11-03.htm @@ -0,0 +1,4 @@ +Master Tobald:
+There are two ways to confront the Archon of Halisha. The devil has the fifth Stone of Commune.
+If you go to the Imperial Tomb, you'll find him in the Four Sepulchers. If you go to the Shrine of the Loyal, you must slay many of his minions for the Archon to appear.
+This is all I can tell you! If you run into me later, don't bother me! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-01.htm new file mode 100644 index 0000000000..36a7d96c94 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-01.htm @@ -0,0 +1,5 @@ +Master Tobald:
+Long time no see! I knew you'd come. Thank you. I would have been killed by the assassin if it weren't for you. Do you remember my project? I succeeded in developing the time machine! It's called Wilma #3. Unfortunately, I can't show it to you now, it's broken.
+ The pilgrimage of tablets? Ah, yes! You still haven't done the pilgrimage. I forgot that you'd returned to the future...
+Hey! I'm really glad to see you! The pilgrimage! Sure, I'll help you!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-02.htm new file mode 100644 index 0000000000..41301005c0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-02.htm @@ -0,0 +1,2 @@ +Master Tobald:
+Huh? You're still here. Did you meet Blueprint Seller Borodin? He was supposed to repair the cooling system of my time machine, Wilma #3, but something went wrong. Go ask him what the problem is and help him. Thank you! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-03.htm new file mode 100644 index 0000000000..6a52fd70c6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-03.htm @@ -0,0 +1,5 @@ +Master Tobald:
+Ah, It's fixed! Thank you very much! You're always there for me! Have you started the pilgrimage of the stone tablets yet? I'm a little confused, this is my first experience with time travel! I'll tell you about the Tablet of Vision.
+It concerns the ancient times, when the giants became intoxicated with power and rebelled against the gods. Einhasad broke the tablet that he used to teach magic to the giants into six pieces. They contain the most profound truths. The passages written on these six Tablets of Vision were indecipherable, as they were written in the characters of the gods. No one can understand unless they are a god or possess the power of a god.
+However, there is a way to learn the knowledge...
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-04.htm new file mode 100644 index 0000000000..df19843981 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-04.htm @@ -0,0 +1,2 @@ +Master Tobald:
+You're still here? Find the first Tablet of Vision with the Stone of Commune I gave you. Use the Map if you need to. Follow your feeling. I know you can do it! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-05.htm new file mode 100644 index 0000000000..a74b0ca2f8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-05.htm @@ -0,0 +1,3 @@ +Master Tobald:
+I don't know! I need to bring a few things to help you with the pilgrimage. We'll need to fix my Wilma #3. Can you help me out? Then you'll find the first Tablet of Vision! Cheer up! You'll do great work in the future. Please be careful!
+I asked my student, Blueprint Seller Borodin, to repair the cooling system of Wilma #3, but something went wrong. I'm sure you can quickly find the problem. Please do this for me! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-06.htm new file mode 100644 index 0000000000..2145b0dbac --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/2-06.htm @@ -0,0 +1,3 @@ +Master Tobald:
+Take this Stone of Commune. I don't need it anymore. With its power you can read the god's characters on the Tablet of Vision. You can also intuitively see where the next tablet is hidden just by holding the stone in your hand. Isn't it great? I wonder who made it. Don't you think someone is trying to teach us the knowledge forbidden by Einhasad?
+Soon you'll be a Maestro! Remember, follow where the stone leads you, and you'll find the first tablet! Cheer up! You'll do great work in the future. Please be careful! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-01.htm new file mode 100644 index 0000000000..98f9a1ba7e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-01.htm @@ -0,0 +1,4 @@ +Master Tobald:
+What are you doing here? You're on the pilgrimage of the tablets, huh? Oh, that's right! You're still taking the test of the Maestro.
+Because of the time paradox, I shouldn't do this, but I have a favor to ask of you. During the pilgrimage, we'll meet again. That is, you'll meet me when I was still taking the test. Please help me pass the test. I know I can't defeat the assassin on my own... I can't say anything more. If you know too much about the future, the continuity of time and space may crack!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-02.htm new file mode 100644 index 0000000000..f7d681e330 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-02.htm @@ -0,0 +1,3 @@ +Master Tobald:
+Meet Ketra Messenger Wahkan. They'll be hiring soldiers. This is a great opportunity to gain their trust!
+Soul Guide Asefa is their chief shaman. He has the Divine Stone of Wisdom that we're looking for. If things don't go your way, you can switch sides and approach the Varka Silenos. Cheer up! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-03.htm new file mode 100644 index 0000000000..14961c2020 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-03.htm @@ -0,0 +1,3 @@ +Master Tobald:
+Meet Messenger Naran Ashanuk of the Varka Silenos. They'll be hiring soldiers. This is a great opportunity to gain their trust!
+Soul Guide Udan Mardui is their chief shaman. He has the Divine Stone of Wisdom that we're looking for. If things don't go your way, you can switch sides and approach the Ketra Orcs. Cheer up! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-04.htm new file mode 100644 index 0000000000..57fda1ff13 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-04.htm @@ -0,0 +1,2 @@ +Master Tobald:
+To use the fourth Stone of Commune, you must get the Divine Stone of Wisdom that the Ketra Orcs or theVarka Sillenos have. You must first gain their trust, but it won't be easy as they are tough and belligerent. Cheer up! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-05.htm new file mode 100644 index 0000000000..9e905df577 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-05.htm @@ -0,0 +1,3 @@ +Master Tobald:
+You've got the Divine Stone of Wisdom! This is the other half of the fourth Stone of Commune. Now we can join them.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-06.htm new file mode 100644 index 0000000000..97c3edbd5f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-06.htm @@ -0,0 +1,2 @@ +Master Tobald:
+Take the Stone of Commune I gave you to the fourth Tablet of Vision. You'll intuitively know the location by holding the Stone of Commune. Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-07.htm new file mode 100644 index 0000000000..05bc73bba0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-07.htm @@ -0,0 +1,5 @@ +Master Tobald:
+Ah, you must feel this small fragment of the fourth Stone of Commune. I brought it from the future, but it broke into pieces when my time machine malfunctioned and part of it flew into the past. We must find one of the other pieces and reunite them.
+The pieces that flew through the time slip are called stones of sacred wisdom and are worshiped by the primitive tribes in this area. I think the Ketra Orcs and Varka Silenos have them. To get a stone, you must gain the tribe's trust. You must choose which tribe to approach first, they are both tough and belligerent...
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-08.htm new file mode 100644 index 0000000000..76232e4751 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/3-08.htm @@ -0,0 +1,2 @@ +Master Tobald:
+These two pieces fit perfectly, don't they? Take this Stone of Commune and find the fourth Tablet of Vision. Follow your feeling! Good luck! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-01.htm new file mode 100644 index 0000000000..5ffe4f25d8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-01.htm @@ -0,0 +1,2 @@ +Master Tobald:
+Help me, I could get killed! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-010.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-010.htm new file mode 100644 index 0000000000..fea0b2ce56 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-010.htm @@ -0,0 +1,3 @@ +Master Tobald:
+ Thank you. He almost stole the stone! I hope you can pass this test. Goodbye for now!
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-011.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-011.htm new file mode 100644 index 0000000000..66cae571f6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-011.htm @@ -0,0 +1,2 @@ +Master Tobald:
+Thank you! He almost stole the stone from me! You're more worthy than I, you should have it. That fight made me think of a great new invention, a time travel device. I'd better hurry back and draw up the blueprints! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-02.htm new file mode 100644 index 0000000000..e3c95376f3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-02.htm @@ -0,0 +1,2 @@ +Master Tobald:
+I'm going to die! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-03.htm new file mode 100644 index 0000000000..bfcf7144b1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-03.htm @@ -0,0 +1,2 @@ +Master Tobald:
+That was close. I never want to see him again! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-04.htm new file mode 100644 index 0000000000..5ffe4f25d8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-04.htm @@ -0,0 +1,2 @@ +Master Tobald:
+Help me, I could get killed! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-05.htm new file mode 100644 index 0000000000..e3c95376f3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-05.htm @@ -0,0 +1,2 @@ +Master Tobald:
+I'm going to die! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-06.htm new file mode 100644 index 0000000000..246c20068d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-06.htm @@ -0,0 +1,4 @@ +Master Tobald:
+ What a scary fella he is! Are assassins all like that? They are the ones that I would never wish to come across again.
+ I narrowly made it because you helped me. I don't know what kind of person he is, but he must have eyes on the one who passes this test.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-07.htm new file mode 100644 index 0000000000..2ca0028610 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-07.htm @@ -0,0 +1,3 @@ +Master Tobald:
+I almost got killed! I have a long ways to go.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-08.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-08.htm new file mode 100644 index 0000000000..0189777452 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-08.htm @@ -0,0 +1,2 @@ +Master Tobald:
+I'll defend myself, thank you. Take the stone I gave you and commune with the last tablet! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-09.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-09.htm new file mode 100644 index 0000000000..ee38f2998a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/4-09.htm @@ -0,0 +1,2 @@ +Master Tobald:
+Take the stone I gave you and commune with the last stone tablet! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/5-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/5-01.htm new file mode 100644 index 0000000000..3feeb46da8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/5-01.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Hieroglyphics are engraved on the tablet. They emit a dim light, with a mysterious and powerful magic.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/5-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/5-02.htm new file mode 100644 index 0000000000..a82c674769 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/5-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. One of the voices is a familiar female whisper. But it quickly disappears.
+Slowly, you begin to visualize where the next Stone of Commune is... in the valley of dust... you see a second Tablet of Vision... and a female warrior in platinum armor. She is holding the stone... She unfolds her wings and flies away... and she's not alone...
+In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/5-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/5-03.htm new file mode 100644 index 0000000000..1adb1e56bf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/5-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+You visualize the stone once again when touching the Tablet. In the yellow-brown valley... you see a female warrior with platinum wings... She is holding the stone in her hand.
+You are compelled to go forth and find the stone right now! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/6-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/6-01.htm new file mode 100644 index 0000000000..0aa237e1ce --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/6-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+You must have the Stone of Commune to access this Tablet of Vision. The stone is being held by one of the female warriors with platinum wings. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/6-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/6-02.htm new file mode 100644 index 0000000000..dd367dfe29 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/6-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Hieroglyphics are engraved on the tablet. They emit a dim light, with a mysterious and powerful magic.
+ \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/6-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/6-03.htm new file mode 100644 index 0000000000..2824d0a662 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/6-03.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. One of the voices is a familiar female whisper. But it quickly disappears.
+Slowly, you sense the stone... You see the third Tablet of Vision... and an angel with two pairs of wings... She is holding the stone in her hand...
+In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/6-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/6-04.htm new file mode 100644 index 0000000000..bff7683002 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/6-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Once again, you see the third Tablet of Vision... and a female warrior with wings... She is holding the stone in her hand.
+You are compelled to go forth and find the stone right now! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-01.htm new file mode 100644 index 0000000000..23251ef2be --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+The Stone of Commune exists near the tablet. Putting your hands on the tablet will reveal the location of the stone. Put your hands on the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-02.htm new file mode 100644 index 0000000000..14558e41c5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-02.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Putting your hands on the slate, your entire body is knocked back by something powerful but invisible. Then, it begins to appear. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-03.htm new file mode 100644 index 0000000000..b3e3fe6337 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+The Tablet of Vision cannot be accessed without the Stone of Commune. Defeat Archangel Iconoclasis, and take it from him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-04.htm new file mode 100644 index 0000000000..80934b422b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-04.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Someone else is currently communing with the Tablet of Vision. Come back later. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-05.htm new file mode 100644 index 0000000000..fe34aa0295 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-05.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Ancient, indecipherable hieroglyphs are engraved upon the tablet. They emit a mysterious, dim light. There is something magical and powerful in the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-06.htm new file mode 100644 index 0000000000..f3e9d3d989 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-06.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. One of the voices is a familiar female whisper. But it quickly disappears. Slowly, you begin to visualize where the next Stone of Commune is...The Goddard Castle Town...There is Master Tobald.
+Master Tobald has the Stone of Commune! In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-07.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-07.htm new file mode 100644 index 0000000000..6ae88aa708 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/7-07.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Putting your hands on the tablet, the location of the Stone of Commune again becomes clear. Master Tobald in Goddard Castle Town has the stone! Find Master Tobald and get it from him. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/8-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/8-01.htm new file mode 100644 index 0000000000..912143b134 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/8-01.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Ancient, indecipherable hieroglyphs are engraved upon the tablet. They emit a mysterious, dim light. There is something magical and powerful in the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/8-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/8-02.htm new file mode 100644 index 0000000000..1dcebbc019 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/8-02.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. There is a vision of a beautiful blonde woman and a knight with black armor. The vision disappears. Slowly, you begin to visualize where the next Stone of Commune is...The Goddard Castle Town...Master Tobald with the Stone of Commune appears. He is scratching his head.
+In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/8-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/8-03.htm new file mode 100644 index 0000000000..db3f517bc9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/8-03.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+Putting your hands on the tablet, the location of the Stone of Commune again becomes clear. It seems Master Tobald in the Goddard Castle Town has the fifth Stone of Commune. Go and get it from him! \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/9-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/9-01.htm new file mode 100644 index 0000000000..c7b06801c2 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/9-01.htm @@ -0,0 +1,2 @@ +Tablet of Vision:
+To decode the figures in the tablet, the Stone of Commune is needed. The fifth Stone of Commune is in the possession of the Archon of Halisha! You can find him at the Sepulchers or the Shrine of the Feudal Lords at the northeastern part of the Wall of Argos, and defeat low-grade evils. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/9-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/9-02.htm new file mode 100644 index 0000000000..5328bec9e9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/9-02.htm @@ -0,0 +1,4 @@ +Tablet of Vision:
+Ancient, indecipherable hieroglyphs are engraved upon the tablet. They emit a mysterious, dim light. There is something magical and powerful in the tablet.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/9-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/9-03.htm new file mode 100644 index 0000000000..88d52200e9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/9-03.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+The Tablet of Vision becomes overwhelmed by bright lights. While you are holding the stone to work on it, you start to acquire a new sense of knowledge as you hear the voices of thousands reading scriptures in the background. You now realize the truth of the world and yet understand nothing. There is a vision of a beautiful blonde woman and a knight with black armor. The vision disappears. Slowly, you begin to visualize where the next Stone of Commune is...A vision appears...The sixth Tablet of Vision hidden in the wilds. Standing in front of the sixth tablet is an unfamiliar human figure...His face is invisible in the darkness, but the Stone of Commune held in his hand emits a dim light.
+In an instant, the images disappear and then the stone goes completely dark. \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/9-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/9-04.htm new file mode 100644 index 0000000000..1e3293aff6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/9-04.htm @@ -0,0 +1,3 @@ +Tablet of Vision:
+Putting your hands on the tablet, the location of the Stone of Commune again becomes clear. The sixth Stone of Commune is hidden in the wilderness and there are ominous signs of a person's presence ...He is holding the Stone of Commune in his hands... Go and get the stone from him! + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/Q00100_SagaOfTheMaestro.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/Q00100_SagaOfTheMaestro.java new file mode 100644 index 0000000000..d6c3df6ca3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00100_SagaOfTheMaestro/Q00100_SagaOfTheMaestro.java @@ -0,0 +1,105 @@ +/* + * 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.Q00100_SagaOfTheMaestro; + +import com.l2jmobius.gameserver.model.Location; + +import quests.AbstractSagaQuest; + +/** + * Saga of the Maestro (100) + * @author Emperorc + */ +public class Q00100_SagaOfTheMaestro extends AbstractSagaQuest +{ + public Q00100_SagaOfTheMaestro() + { + super(100); + _npc = new int[] + { + 31592, + 31273, + 31597, + 31597, + 31596, + 31646, + 31648, + 31653, + 31654, + 31655, + 31656, + 31597 + }; + Items = new int[] + { + 7080, + 7607, + 7081, + 7515, + 7298, + 7329, + 7360, + 7391, + 7422, + 7453, + 7108, + 0 + }; + Mob = new int[] + { + 27260, + 27249, + 27308 + }; + classid = new int[] + { + 118 + }; + prevclass = new int[] + { + 0x39 + }; + npcSpawnLocations = new Location[] + { + new Location(164650, -74121, -2871), + new Location(47429, -56923, -2383), + new Location(47391, -56929, -2370) + }; + Text = new String[] + { + "PLAYERNAME! Pursued to here! However, I jumped out of the Banshouren boundaries! You look at the giant as the sign of power!", + "... Oh ... good! So it was ... let's begin!", + "I do not have the patience ..! I have been a giant force ...! Cough chatter ah ah ah!", + "Paying homage to those who disrupt the orderly will be PLAYERNAME's death!", + "Now, my soul freed from the shackles of the millennium, Halixia, to the back side I come ...", + "Why do you interfere others' battles?", + "This is a waste of time.. Say goodbye...!", + "...That is the enemy", + "...Goodness! PLAYERNAME you are still looking?", + "PLAYERNAME ... Not just to whom the victory. Only personnel involved in the fighting are eligible to share in the victory.", + "Your sword is not an ornament. Don't you think, PLAYERNAME?", + "Goodness! I no longer sense a battle there now.", + "let...", + "Only engaged in the battle to bar their choice. Perhaps you should regret.", + "The human nation was foolish to try and fight a giant's strength.", + "Must...Retreat... Too...Strong.", + "PLAYERNAME. Defeat...by...retaining...and...Mo...Hacker", + "....! Fight...Defeat...It...Fight...Defeat...It..." + }; + registerNPCs(); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30623-01.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30623-01.html new file mode 100644 index 0000000000..30ba078f04 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30623-01.html @@ -0,0 +1,6 @@ +Duelist Kaien:
+This is the first I've heard of that! I'm so sorry, obviously you've gone to a great deal of trouble for nothing... Wait a moment~
+Could I take a closer look at that? This design is remarkably similar to the one engraved on a scabbard that I received from my father... I am beginning to believe you now.
+I come from a long line of dualists! It has been a tradition in my family for over a thousand years! Charming, no?
+Thank you, I will accept this... I wish I had more to offer you in return! Please accept these worthless trinkets as a token of my appreciation! + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30623-02.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30623-02.html new file mode 100644 index 0000000000..7d26a7f34a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30623-02.html @@ -0,0 +1,3 @@ +Duelist Kaien:
+Your hilt has been taken to a Dwarven craftsman who will fashion a suitable blade for it... Aren't you excited?! + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30704-01.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30704-01.html new file mode 100644 index 0000000000..194ad23f47 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30704-01.html @@ -0,0 +1,5 @@ +High Prefect Gavarentz:
+This necklace and statue prove that what you say is true. Last night I dreamed of an Orc. His large body was covered with scars and he was drenched in what must have been his enemy's blood. He gave me this necklace...
+Thank you, young traveler. Now I shall give the necklace to you. Use it carefully. + + diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30704-02.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30704-02.html new file mode 100644 index 0000000000..ee7ea79d9f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30704-02.html @@ -0,0 +1,3 @@ +High Prefect Gavarentz:
+I have entrusted the amulet necklace to my daughter, who I have sent north to the Orc Fortress. She will wear the necklace in battle. I pray the mighty spirit of her ancestor will watch over her. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-01.htm new file mode 100644 index 0000000000..5d8350e67a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-01.htm @@ -0,0 +1,5 @@ +Antharas Watchman Gilmore:
+I've not left Dragon Valley since I led my men here so many years ago to battle Antharas...
+I have accepted the inevitability of my eternal responsibility to watch over the beast. But my heart goes out to the loyal soldiers who lost their lives due to my stubborn ignorance. I have no other wish than to see their remains returned to their hometowns, but I fear that you are not up to the task...
+(This quest can only be undertaken by a character of level 48 or above.) + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-02.htm new file mode 100644 index 0000000000..fd3c4f9c1b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-02.htm @@ -0,0 +1,5 @@ +Antharas Watchman Gilmore:
+I've not left Dragon Valley since I led my men here so many years ago to battle Antharas...
+I have accepted the inevitability of my eternal responsibility to watch over the beast. But my heart goes out to the loyal soldiers who lost their lives due to my stubborn ignorance. I have no other wish than to see their remains returned to their hometowns so they can rest in peace.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-03.htm new file mode 100644 index 0000000000..359b7b44ee --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-03.htm @@ -0,0 +1,4 @@ +Watcher of Antharas Gilmore:
+I buried my former subordinates in a corner of this Valley in a region called the Watcher's Tomb. However, they strangely came back from the dead after Antharas and Desparion used their magic. My mind is still strong, but they turned into monsters after blood and death... These friends... creatures... are now called... 'Cave Servants'...
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-04.htm new file mode 100644 index 0000000000..d8c1aaa263 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-04.htm @@ -0,0 +1,3 @@ +Watcher of Antharas Gilmore:
+You probably know as well, but there were many, many people that tried to kill Antharas. None were able, but their death was not the end for all. While some were undoubtedly held by Shilen's grasp, others become Cave Servants. Right now, I don't even know how many Cave Servants exist in the Watcher's Tomb. What I can ask of you is to destroy as many Cave Servants as possible. Cave Servant, Archer, Warrior, Chief... Anything that has Cave in the name. Kill them and collect their relics, then bring them to me. I will reward you appropriately. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-05.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-05.html new file mode 100644 index 0000000000..c71f4d8dda --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-05.html @@ -0,0 +1,3 @@ +Antharas Watchman Gilmore:
+Is there something keeping you here? Why aren't you out killing cave servants? Bring me back any relics they leave behind. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-06.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-06.html new file mode 100644 index 0000000000..0f82b981e7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-06.html @@ -0,0 +1,4 @@ +Antharas Watchman Gilmore:
+Believe it or not we gave our lives willingly to save Giran! But we never counted on being here for eternity, let alone looking like this! It's been a thousand years and still I long for my mortal life...
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-07.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-07.html new file mode 100644 index 0000000000..0d4dc03c9e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-07.html @@ -0,0 +1,3 @@ +Antharas Watchman Gilmore:
+What's that? Oh, for some reason, I was sure that you had brought back relics. You should be out killing cave servants. You must do whatever you can to release my men from their endless torment. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-08.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-08.html new file mode 100644 index 0000000000..74058fe3f7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-08.html @@ -0,0 +1,5 @@ +Antharas Watchman Gilmore:
+Thank you! Please take this as a token of my appreciation. Thanks to you the noble soldiers can finally rest in peace... I am afraid that there are many more, however, who still wander this valley. Would you be willing to continue doing this for a while?
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-09.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-09.html new file mode 100644 index 0000000000..3e1e963792 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-09.html @@ -0,0 +1,4 @@ +Antharas Watchman Gilmore:
+Could it be? If my eyes aren't deceiving me this used to belong to a friend of mine...
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-10.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-10.html new file mode 100644 index 0000000000..d770e32ce5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-10.html @@ -0,0 +1,5 @@ +Antharas Watchman Gilmore:
+My personal aide wore this key around his neck. He stood by my side during the battle with Antharas 1,000 years ago. He was the first-born son in his family... This key was very important to him.
+I believe one of his descendants is living in the Town of Giran. He has the family name of Rodemai.
+I am bound to this valley so cannot go myself. Would you please take the key to Rodemai in the Town of Giran? I will pay you for your trouble. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-11.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-11.html new file mode 100644 index 0000000000..772823c4c0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-11.html @@ -0,0 +1,5 @@ +Antharas Watchman Gilmore:
+This sword belonged to one of my aides who fought alongside me against Antharas 1,000 years ago. In the intervening years the blade must have rusted away and only this hilt is left. He was a swordsman without parallel...
+It is said that one of his descendants is living in the Town of Oren. It is likely that he is following the family tradition of being a Duelist.
+I am unable to leave this valley or I would take this relic to him. Would you please do this for me? I will pay you for your trouble. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-12.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-12.html new file mode 100644 index 0000000000..b5e4ecd3b0 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-12.html @@ -0,0 +1,5 @@ +Antharas Watchman Gilmore:
+This necklace belonged to a soldier that served under my command in the battle against Antharas. He was the finest Orc I've ever known, a true intellectual. Seriously! I'm fairly certain he was of aristocratic birth.
+Come to think of it, I've seen that necklace elsewhere. It was worn by an Orc who was a High Prefect from Hunters Village.
+I would take the necklace to him if I was able to leave this valley, but alas, I cannot. Would you please take it to him? I will compensate you well for your trouble. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-13.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-13.html new file mode 100644 index 0000000000..1ae245960a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-13.html @@ -0,0 +1,5 @@ +Antharas Watchman Gilmore:
+This crucifix belonged to one of the brave young soldiers who accompanied me here 1,000 years ago to battle the beast Antharas. At that time it shone like the sun. Now it looks so old and weathered...
+He worshipped in a temple that stood where Aden Castle stands now. Please go to the Town of Aden and take this crucifix to the temple of Einhasad. Show it to a High Priest at the temple, he will know what to do with it.
+Even if I could leave the valley to travel there, an undead such as myself could never enter the temple. If you will do this for me I will pay you well. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-14.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-14.html new file mode 100644 index 0000000000..785b0426db --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-14.html @@ -0,0 +1,3 @@ +Antharas Watchman Gilmore:
+Please go ahead and deliver the relic I gave you. You can come back and resume dispatching the cave servants afterwards. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-15.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-15.html new file mode 100644 index 0000000000..fd8ba57044 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-15.html @@ -0,0 +1,6 @@ +Watcher of Antharas Gilmore:
+Oh, you're back? Perhaps I should reward for your good work, hmm?
+Now, while you're here, I'd like to ask you to help with the same task in your future endeavours, as there are other friends of mine who still cannot rest in the watcher's tomb. Would you do this for me again in a while?
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-16.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-16.html new file mode 100644 index 0000000000..fb33cbc75d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-16.html @@ -0,0 +1,3 @@ +Antharas Watchman Gilmore:
+Oh, thank you! I knew I could depend on you. This could go on for a while. There seems to be no end of cave servants in this cursed valley. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-17.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-17.html new file mode 100644 index 0000000000..464b896f45 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30754-17.html @@ -0,0 +1,3 @@ +Antharas Watchman Gilmore:
+Oh, well, you have done much good. I knew you wouldn't stay here forever, as I and my soldiers must do. Thank you for helping me and my men. Goodbye... + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30756-01.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30756-01.html new file mode 100644 index 0000000000..089d914b7c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30756-01.html @@ -0,0 +1,5 @@ +Sir Kristof Rodemai:
+Really! So the ancestors of the Rodemai family participated in the expedition to fight Antharas during the Elmoreden Empire?
+Yes, that does sound familiar. My family has always been a self-sacrificing lot... This key proves it. So, how about that?
+I appreciate your bringing me something so precious! Here, take this as a token of my appreciation for your hard work. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30756-02.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30756-02.html new file mode 100644 index 0000000000..9209516c9e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30756-02.html @@ -0,0 +1,3 @@ +Sir Kristof Rodemai:
+The recovery of this key has restored the honor of the Rodemai family. It actually traces our ancestry back to the time of the ancient empire! I hope that you will continue working for us... + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30857-01.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30857-01.html new file mode 100644 index 0000000000..7b77324814 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30857-01.html @@ -0,0 +1,5 @@ +High Priest Orven:
+This looks like a badge from our temple...? Don't tell me... Could it be a relic from the battle against Antharas 1,000 years ago? How could it be?
+I have always feared that our efforts to slay Antharas have been in vain. This old badge tells me that our responsibilities cannot be avoided, no matter the cost.
+Thank you, young traveler. Please take this small token of appreciation from our temple. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30857-02.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30857-02.html new file mode 100644 index 0000000000..179c2b115c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/30857-02.html @@ -0,0 +1,3 @@ +High Priest Orven:
+The badge is safe with other sacred relics deep within the temple. Many fail to grasp the significance of this old piece of metal, but I hear it calling me to my duty... + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/Q00344_1000YearsTheEndOfLamentation.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/Q00344_1000YearsTheEndOfLamentation.java new file mode 100644 index 0000000000..98088c6790 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00344_1000YearsTheEndOfLamentation/Q00344_1000YearsTheEndOfLamentation.java @@ -0,0 +1,378 @@ +/* + * 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.Q00344_1000YearsTheEndOfLamentation; + +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.holders.ItemHolder; +import com.l2jmobius.gameserver.model.quest.Quest; +import com.l2jmobius.gameserver.model.quest.QuestState; + +/** + * 1000 years, the End of Lamentation (344) + * @author Pandragon + */ +public final class Q00344_1000YearsTheEndOfLamentation extends Quest +{ + // NPCs + private static final int KAIEN = 30623; + private static final int GARVARENTZ = 30704; + private static final int GILMORE = 30754; + private static final int RODEMAI = 30756; + private static final int ORVEN = 30857; + // Items + private static final int ARTICLES = 4269; + private static final ItemHolder OLD_KEY = new ItemHolder(4270, 1); + private static final ItemHolder OLD_HILT = new ItemHolder(4271, 1); + private static final ItemHolder TOTEM_NECKLACE = new ItemHolder(4272, 1); + private static final ItemHolder CRUCIFIX = new ItemHolder(4273, 1); + // Monsters + private static final Map MONSTER_CHANCES = new HashMap<>(); + { + MONSTER_CHANCES.put(20236, 0.58); // Cave Servant + MONSTER_CHANCES.put(20238, 0.75); // Cave Servant Warrior + MONSTER_CHANCES.put(20237, 0.78); // Cave Servant Archer + MONSTER_CHANCES.put(20239, 0.79); // Cave Servant Captain + MONSTER_CHANCES.put(20240, 0.85); // Royal Cave Servant + MONSTER_CHANCES.put(20272, 0.58); // Cave Servant + MONSTER_CHANCES.put(20273, 0.78); // Cave Servant Archer + MONSTER_CHANCES.put(20274, 0.75); // Cave Servant Warrior + MONSTER_CHANCES.put(20275, 0.79); // Cave Servant Captain + MONSTER_CHANCES.put(20276, 0.85); // Royal Cave Servant + } + // Rewards + private static final ItemHolder ORIHARUKON_ORE = new ItemHolder(1874, 25); + private static final ItemHolder VARNISH_OF_PURITY = new ItemHolder(1887, 10); + private static final ItemHolder SCROLL_EWC = new ItemHolder(951, 1); + private static final ItemHolder RAID_SWORD = new ItemHolder(133, 1); + private static final ItemHolder COKES = new ItemHolder(1879, 55); + private static final ItemHolder RING_OF_AGES = new ItemHolder(885, 1); + private static final ItemHolder LEATHER = new ItemHolder(1882, 70); + private static final ItemHolder COARSE_BONE_POWDER = new ItemHolder(1881, 50); + private static final ItemHolder HEAVY_DOOM_HAMMER = new ItemHolder(191, 1); + private static final ItemHolder STONE_OF_PURITY = new ItemHolder(1875, 19); + private static final ItemHolder SCROLL_EAC = new ItemHolder(952, 5); + private static final ItemHolder DRAKE_LEATHER_BOOTS = new ItemHolder(2437, 1); + // Misc + private static final int MIN_LVL = 48; + + public Q00344_1000YearsTheEndOfLamentation() + { + super(344); + addStartNpc(GILMORE); + addTalkId(KAIEN, GARVARENTZ, GILMORE, RODEMAI, ORVEN); + addKillId(MONSTER_CHANCES.keySet()); + registerQuestItems(ARTICLES, OLD_KEY.getId(), OLD_HILT.getId(), TOTEM_NECKLACE.getId(), CRUCIFIX.getId()); + } + + @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 "30754-03.htm": + case "30754-16.html": + { + htmltext = event; + break; + } + case "30754-04.htm": + { + if (qs.isCreated()) + { + qs.startQuest(); + htmltext = event; + } + break; + } + case "30754-08.html": + { + if (qs.isCond(1)) + { + final long count = getQuestItemsCount(player, ARTICLES); + if (count < 1) + { + htmltext = "30754-07.html"; + } + else + { + takeItems(player, ARTICLES, -1); + if (getRandom(1000) >= count) + { + giveAdena(player, count * 60, true); + htmltext = event; + } + else + { + qs.setCond(2, true); + switch (getRandom(4)) + { + case 0: + { + qs.setMemoState(1); + giveItems(player, OLD_HILT); + break; + } + case 1: + { + qs.setMemoState(2); + giveItems(player, OLD_KEY); + break; + } + case 2: + { + qs.setMemoState(3); + giveItems(player, TOTEM_NECKLACE); + break; + } + case 3: + { + qs.setMemoState(4); + giveItems(player, CRUCIFIX); + break; + } + } + htmltext = "30754-09.html"; + } + } + } + break; + } + case "30754-17.html": + { + if (qs.isCond(1)) + { + htmltext = event; + qs.exitQuest(true, true); + } + break; + } + case "relic_info": + { + switch (qs.getMemoState()) + { + case 1: + { + htmltext = "30754-10.html"; + break; + } + case 2: + { + htmltext = "30754-11.html"; + break; + } + case 3: + { + htmltext = "30754-12.html"; + break; + } + case 4: + { + htmltext = "30754-13.html"; + break; + } + } + break; + } + } + return htmltext; + } + + @Override + public String onTalk(L2Npc npc, L2PcInstance talker) + { + final QuestState qs = getQuestState(talker, true); + String htmltext = getNoQuestMsg(talker); + switch (npc.getId()) + { + case GILMORE: + { + if (qs.isCreated()) + { + htmltext = (talker.getLevel() >= MIN_LVL) ? "30754-02.htm" : "30754-01.htm"; + } + else if (qs.isStarted()) + { + if (qs.isCond(1)) + { + htmltext = (hasQuestItems(talker, ARTICLES)) ? "30754-06.html" : "30754-05.html"; + } + else if (hasItem(talker, OLD_KEY) || hasItem(talker, OLD_HILT) || hasItem(talker, TOTEM_NECKLACE) || hasItem(talker, CRUCIFIX)) + { + htmltext = "30754-14.html"; + } + else + { + qs.setCond(1); + htmltext = "30754-15.html"; + } + } + else + { + htmltext = getAlreadyCompletedMsg(talker); + } + break; + } + case KAIEN: + { + if (qs.getMemoState() == 1) + { + if (hasItem(talker, OLD_HILT)) + { + takeItems(talker, OLD_HILT.getId(), -1); + final int rand = getRandom(100); + if (rand <= 52) + { + rewardItems(talker, ORIHARUKON_ORE); + } + else if (rand <= 76) + { + rewardItems(talker, VARNISH_OF_PURITY); + } + else if (rand <= 98) + { + rewardItems(talker, SCROLL_EWC); + } + else + { + rewardItems(talker, RAID_SWORD); + } + qs.setCond(1); + htmltext = "30623-01.html"; + } + else + { + htmltext = "30623-02.html"; + } + } + break; + } + case RODEMAI: + { + if (qs.getMemoState() == 2) + { + if (hasItem(talker, OLD_KEY)) + { + takeItems(talker, OLD_KEY.getId(), -1); + final int rand = getRandom(100); + if (rand <= 39) + { + rewardItems(talker, COKES); + } + else if (rand <= 89) + { + rewardItems(talker, SCROLL_EWC); + } + else + { + rewardItems(talker, RING_OF_AGES); + } + qs.setCond(1); + htmltext = "30756-01.html"; + } + else + { + htmltext = "30756-02.html"; + } + } + break; + } + case GARVARENTZ: + { + if (qs.getMemoState() == 3) + { + if (hasItem(talker, TOTEM_NECKLACE)) + { + takeItems(talker, TOTEM_NECKLACE.getId(), -1); + final int rand = getRandom(100); + if (rand <= 47) + { + rewardItems(talker, LEATHER); + } + else if (rand <= 97) + { + rewardItems(talker, COARSE_BONE_POWDER); + } + else + { + rewardItems(talker, HEAVY_DOOM_HAMMER); + } + qs.setCond(1); + htmltext = "30704-01.html"; + } + else + { + htmltext = "30704-02.html"; + } + } + break; + } + case ORVEN: + { + if (qs.getMemoState() == 4) + { + if (hasItem(talker, CRUCIFIX)) + { + takeItems(talker, CRUCIFIX.getId(), -1); + final int rand = getRandom(100); + if (rand <= 49) + { + rewardItems(talker, STONE_OF_PURITY); + } + else if (rand <= 69) + { + rewardItems(talker, SCROLL_EAC); + } + else + { + rewardItems(talker, DRAKE_LEATHER_BOOTS); + } + qs.setCond(1); + htmltext = "30857-01.html"; + } + else + { + htmltext = "30857-02.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) + { + giveItemRandomly(qs.getPlayer(), npc, ARTICLES, 1, 0, MONSTER_CHANCES.get(npc.getId()), true); + } + return super.onKill(npc, killer, isSummon); + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-01.htm new file mode 100644 index 0000000000..5ea0b3f3f5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-01.htm @@ -0,0 +1,7 @@ +Warehouse Freightman Kluck:
+Whew! There's no way I can keep up this pace! Hello, friend! Am I glad to see you!
+For as long as anyone can remember, Dwarves have been traders, am I right? And now come the Humans, with their friends in high places, taking over the trade routes in Innadril, Abella, and Giran! Who do they think they are?
+Boycott the Humans! We're establishing a free trade zone near Alligator Island! The only problem is, that place is crawling with horrible monsters.
+Would you help us get rid of them? If you'd like, we can draw up a Contract right now!
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-02.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-02.html new file mode 100644 index 0000000000..c131ac2635 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-02.html @@ -0,0 +1,5 @@ +Warehouse Freightman Kluck:
+Well, then, here you go! Sign on the dotted line... Now, I'll read the Contract to you.
+Adventurer agrees to go to Alligator Island and kill the Crokian lads, dailaon lads, Crokian lad warriors, farhite lads, nos lads, and the Swamp Tribe and bring back their teeth as proof.And Kluck, that's me, will count the number of teeth brought back and reward said adventurer accordingly.Third, if said adventurer brings back 100 or more teeth at a time, he or she will receive an additional bonus.Fourth, while carrying out the task specified in the Contract on Alligator Island, if the adventurer finds items other than the teeth of monsters, the adventurer will own those items free and clear.
+Do these terms meet with your approval? Then, the Contract is formally established between us! Alligator Island is to the north, across the sea from here. This work will be hard for you to carry out by yourself. You'd better find other adventurers to go with you. If you wish, I will establish a Contract with them as well. Sorry, there's no bridge... You look rather strapping... Couldn't you swim there? + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-03.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-03.html new file mode 100644 index 0000000000..b45680604d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-03.html @@ -0,0 +1,5 @@ +Warehouse Freightman Kluck:
+I'm going crazy here! So many things to do... And nothing seems to be going right... What is the guild thinking, giving me such an assignment? What could they possibly expect me to do? Sometimes I wonder why I stay in this stupid guild!
+How long have you been standing there? I was just talking to myself. You're an adventurer, am I right? I don't have any work to give you right now. Come back later.
+(This quest may only be undertaken by a character of level 38 or above.) + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-04.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-04.html new file mode 100644 index 0000000000..7f3b1576e4 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-04.html @@ -0,0 +1,7 @@ +Warehouse Freightman Kluck:
+Good to see you again, my friend... Have you brought teeth? Or perhaps you have a question...?
+ + + + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-05.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-05.html new file mode 100644 index 0000000000..110c90ac3b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-05.html @@ -0,0 +1,6 @@ +Warehouse Freightman Kluck:
+OK, one more time...

+Adventurer agrees to go to Alligator Island and kill the Crokian lads, dailaon lads, Crokian lad warriors, farhite lads, nos lads, and the Swamp Tribe and bring back their teeth as proof.And Kluck, that's me, will count the number of teeth brought back and reward said adventurer accordingly.Third, if said adventurer brings back 100 or more teeth at a time, he or she will receive an additional bonus.Fourth, while carrying out the task specified in the Contract on Alligator Island, if the adventurer finds items other than the teeth of monsters, the adventurer will own those items free and clear.
+Alligator Island is to the north, across the sea from here. Swim there! You look like you could use the exercise!
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-06.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-06.html new file mode 100644 index 0000000000..6380a0b50b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-06.html @@ -0,0 +1,6 @@ +Warehouse Freightman Kluck:
+Hey, impressive! You've brought over 100! Here is your reward! And, per the Contract, your bonus as well!
+I appreciate your hard work! Hopefully soon our dream of a free trade zone without tax will be realized. Keep up the good work!
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-07.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-07.html new file mode 100644 index 0000000000..2d5eae7a83 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-07.html @@ -0,0 +1,5 @@ +Warehouse Freightman Kluck:
+Let's see, teeth are worth... Here you go! Thank you for your hard work! Hopefully soon the island will be completely free of monsters and our dream of a free trade zone without tax can be realized! Keep up the good work!
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-08.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-08.html new file mode 100644 index 0000000000..3c85d5d72b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-08.html @@ -0,0 +1,3 @@ +Warehouse Freightman Kluck:
+Are you kidding? You expect something for nothing? Not around here, my friend! Go to Alligator Island immediately and bring me back some teeth! Do I need to read the Contract to you again? + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-09.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-09.html new file mode 100644 index 0000000000..0429bf8b3a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-09.html @@ -0,0 +1,3 @@ +Warehouse Freightman Kluck:
+That's a good adventurer... Heh heh... This free trade zone will benefit us all! + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-10.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-10.html new file mode 100644 index 0000000000..e25d530c49 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-10.html @@ -0,0 +1,3 @@ +Warehouse Freightman Kluck:
+What a pity... You won't be easy to replace... I appreciate your contribution to our cause... When the free trade zone on Alligator Island becomes a reality and I have opened my own shop, you must visit me there. May the prosperity of Maphr be with you always... + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-11.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-11.html new file mode 100644 index 0000000000..2f1301ac2c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-11.html @@ -0,0 +1,8 @@ +Warehouse Freightman Kluck:
+Ah, you again... Have you brought me teeth? Or is it another question? What's that, a piece of paper?
+ + + + + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-12.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-12.html new file mode 100644 index 0000000000..41dc7694e1 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-12.html @@ -0,0 +1,4 @@ +Warehouse Freightman Kluck:
+Hmm... A piece of Map, eh? I bet if we collected about 10 pieces just like it, we'd have a complete Map!
+Come to think of it, there is a rumor that part of the legendary treasure of Zaken the pirate is buried on Alligator Island. Zaken's boatswain's lover stole it and hid it there... + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-13.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-13.html new file mode 100644 index 0000000000..b590639dd8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/30895-13.html @@ -0,0 +1,5 @@ +Warehouse Freightman Kluck:
+Ah, yes, these pieces definitely go together... Just like doing a puzzle! What have we here? This mark must show where the treasure is hidden!
+This must surely be the Map to the legendary treasure of Zaken the pirate!
+Hmm, I suppose, according to the terms of the Contract, that the Map rightfully belongs to you. Go and see Trader Espen in the weapons shop. He is an expert on Zaken. All pirates, actually... + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/Q00354_ConquestOfAlligatorIsland.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/Q00354_ConquestOfAlligatorIsland.java new file mode 100644 index 0000000000..b25890c9ef --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00354_ConquestOfAlligatorIsland/Q00354_ConquestOfAlligatorIsland.java @@ -0,0 +1,177 @@ +/* + * 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.Q00354_ConquestOfAlligatorIsland; + +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; + +/** + * Conquest of Alligator Island (354) + * @author Adry_85 + */ +public final class Q00354_ConquestOfAlligatorIsland extends Quest +{ + // NPC + private static final int KLUCK = 30895; + // Items + private static final int ALLIGATOR_TOOTH = 5863; + private static final int MYSTERIOUS_MAP_PIECE = 5864; + private static final int PIRATES_TREASURE_MAP = 5915; + // Misc + private static final int MIN_LEVEL = 38; + // Mobs + private static final Map MOB1 = new HashMap<>(); + private static final Map MOB2 = new HashMap<>(); + static + { + MOB1.put(20804, 0.84); // crokian_lad + MOB1.put(20805, 0.91); // dailaon_lad + MOB1.put(20806, 0.88); // crokian_lad_warrior + MOB1.put(20807, 0.92); // farhite_lad + MOB2.put(22208, 14); // nos_lad + MOB2.put(20991, 69); // tribe_of_swamp + } + + public Q00354_ConquestOfAlligatorIsland() + { + super(354); + addStartNpc(KLUCK); + addTalkId(KLUCK); + addKillId(MOB1.keySet()); + addKillId(MOB2.keySet()); + registerQuestItems(ALLIGATOR_TOOTH, MYSTERIOUS_MAP_PIECE); + } + + @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 "30895-04.html": + case "30895-05.html": + case "30895-09.html": + { + htmltext = event; + break; + } + case "30895-02.html": + { + st.startQuest(); + htmltext = event; + break; + } + case "ADENA": + { + final long count = getQuestItemsCount(player, ALLIGATOR_TOOTH); + if (count >= 100) + { + giveAdena(player, (count * 220) + 10700, true); + takeItems(player, ALLIGATOR_TOOTH, -1); + htmltext = "30895-06.html"; + } + else if (count > 0) + { + giveAdena(player, (count * 220) + 3100, true); + takeItems(player, ALLIGATOR_TOOTH, -1); + htmltext = "30895-07.html"; + } + else + { + htmltext = "30895-08.html"; + } + break; + } + case "30895-10.html": + { + st.exitQuest(true, true); + htmltext = event; + break; + } + case "REWARD": + { + final long count = getQuestItemsCount(player, MYSTERIOUS_MAP_PIECE); + if (count >= 10) + { + giveItems(player, PIRATES_TREASURE_MAP, 1); + takeItems(player, MYSTERIOUS_MAP_PIECE, 10); + htmltext = "30895-13.html"; + } + else if (count > 0) + { + htmltext = "30895-12.html"; + } + break; + } + } + return htmltext; + } + + @Override + public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) + { + final QuestState st = getRandomPartyMemberState(player, -1, 3, npc); + if (st != null) + { + int npcId = npc.getId(); + if (MOB1.containsKey(npcId)) + { + giveItemRandomly(st.getPlayer(), npc, ALLIGATOR_TOOTH, 1, 0, MOB1.get(npcId), true); + } + else + { + final int itemCount = ((getRandom(100) < MOB2.get(npcId)) ? 2 : 1); + giveItemRandomly(st.getPlayer(), npc, ALLIGATOR_TOOTH, itemCount, 0, 1.0, true); + } + + giveItemRandomly(st.getPlayer(), npc, MYSTERIOUS_MAP_PIECE, 1, 0, 0.1, false); + } + return super.onKill(npc, player, isSummon); + } + + @Override + public String onTalk(L2Npc npc, L2PcInstance player) + { + final QuestState st = getQuestState(player, true); + String htmltext = getNoQuestMsg(player); + if (st == null) + { + return htmltext; + } + + if (st.isCreated()) + { + htmltext = ((player.getLevel() >= MIN_LEVEL) ? "30895-01.htm" : "30895-03.html"); + } + else if (st.isStarted()) + { + htmltext = (hasQuestItems(player, MYSTERIOUS_MAP_PIECE) ? "30895-11.html" : "30895-04.html"); + } + return htmltext; + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-01.htm new file mode 100644 index 0000000000..0591a815f8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-01.htm @@ -0,0 +1,5 @@ +Trader Galibredo:
+Although now I'm merely a merchant, at one time my family was prominent! Although I may not look it, the blood of kings courses through my veins!
+Whenever I say this, people laugh at me and think I'm lying. It's so very frustrating! But at last, now I have a chance to prove my noble heritage! All I need is a bit of help from an adventurer like yourself! I will pay you generously for your work! No cost is too great when the honor of my family is at stake! Will you help this old man?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-02.htm new file mode 100644 index 0000000000..779b0a9448 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-02.htm @@ -0,0 +1,7 @@ +Trader Galibredo:
+Have you ever heard of Berona, a sculptor from the Elmoreden Empire? She is well-known among antique lovers...
+A few months ago, hundreds of her works were excavated in Innadril. "Galfredo Romer's Bust" was one of them. He was one of my ancestors who was as an aid to the Emperor! It is recorded in my family's genealogy! If you don't believe me, I'll show it to you!
+Anyway, I sent my nephew to Innadril to buy all the sculptures for me. But, while they were being delivered to me, they were stolen by Orc bandits. I'm very upset with my nephew! I told him repeatedly to hire guards!
+Ahem! So, here's the deal. Will you recover the sculptures for me?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-03.htm new file mode 100644 index 0000000000..f1346565b8 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-03.htm @@ -0,0 +1,6 @@ +Trader Galibredo:
+The thieves who stole my precious sculptures are the Timak Orc troop. According to my nephew, the troop consists of Timak Orc troop archers, timak Orc troop warriors, timak Orc troop leaders and the Timak Orc troop shaman. I doubt that those brutes even know the value of what they have!
+If you bring me "Galfredo Romer's Busts", I will pay you handsomely. If you bring me 100 or more of them at one time, you will receive a bonus. Please try your best!
+You can keep any other sculptures you recover. You can sell them to a store or give them to someone as a gift.
+They move around in a group, so it is not a bad idea to go with a couple of friends, if they wish to. Good luck! I'm counting on you. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-04.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-04.html new file mode 100644 index 0000000000..2cf29be5ae --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-04.html @@ -0,0 +1,5 @@ +Trader Galibredo:
+Although now I'm merely a merchant, at one time my family was prominent! Although I may not look it, the blood of kings courses through my veins!
+What's with the expression? Does it mean you don't believe me? You must think I'm just a crazy old man! Get away from me!
+(This quest can only be undertaken by a character of level 36 or higher.) + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-05.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-05.html new file mode 100644 index 0000000000..fd131e49b3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-05.html @@ -0,0 +1,7 @@ +Trader Galibredo:
+Come on in! I've been waiting for you. How did you do?
+Let me say this to you again. The thieves who stole my precious antiques are the Timak Orc troop archers, timak Orc troop warriors, timak Orc troop leaders and the Timak Orc troop shaman. I trust that you destroyed them and recovered my goods?
+ + + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-06.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-06.html new file mode 100644 index 0000000000..d4b59caf4a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-06.html @@ -0,0 +1,3 @@ +Trader Galibredo:
+What the...? Where are the statues of my ancestor...? Don't you know?! I mean, where are Galfredo Romer's Busts? Do you expect me to pay you for nothing? + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-07.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-07.html new file mode 100644 index 0000000000..4ead6e930c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-07.html @@ -0,0 +1,6 @@ +Trader Galibredo:
+Oh, at last! The proof of the prestigious heritage of my family! The dignity of my great ancestors is restored!
+Let me see... how may busts did you bring me? 70... 80... 90... Oh, wonderful! It's more than 100! Then, in addition to your regular pay, I'll add a bonus... Here you go! Thank you for your hard work!
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-08.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-08.html new file mode 100644 index 0000000000..7449535bdd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-08.html @@ -0,0 +1,5 @@ +Trader Galibredo:
+Oh, at last! The proof of the prestigious heritage of my family! The dignity of my great ancestors is restored! Thank you very much young man! Let me see... how may busts did you bring me? Oh yes! Here is your reward!
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-09.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-09.html new file mode 100644 index 0000000000..9105fab90a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-09.html @@ -0,0 +1,3 @@ +Trader Galibredo:
+I'm counting on you! Go punish those dastardly thieves and recover my precious antiques. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-10.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-10.html new file mode 100644 index 0000000000..0e552d0b97 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-10.html @@ -0,0 +1,4 @@ +Trader Galibredo:
+You want to quit? Sigh...! That's the problem with today's young people... always hopping from job to job, they never stay in one place very long! Don't you know that once you accept a job, you should finish it? Dear me...
+Oh, well, if that is really what you want, I won't stop you. Thank you for your hard work. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-11.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-11.html new file mode 100644 index 0000000000..ad486cfa60 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30181-11.html @@ -0,0 +1,8 @@ +Trader Galibredo:
+Welcome back! I've been waiting for you. Were you successful? I trust that you destroyed the Timak Orc troop and brought back my goods?
+As I told you, all I want is "Galfredo Romer's Busts". You can keep the other works of sculptor Berona for yourself. You should be able to sell them for a fairly good price.
+Or... if you would like, you can also take them to the antique dealer Patrin over there and get them appraised. Since we are close friends, I'll put in a good word for you. If the statues are prototypes or originals they are more valuable. If they are imitations or fakes, then they are worthless. It's a gamble.

+ + + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-01.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-01.html new file mode 100644 index 0000000000..d8d441903a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-01.html @@ -0,0 +1,6 @@ +Antique Dealer Patrin:
+Yes, Trader Galibredo told me about you. He said that you would be stopping by with some antique statues to be appraised...
+Oh my! That statue... is that the "Lady of the Court" by Berona? Where did you find such a precious item...? Let me have a look!
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-02.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-02.html new file mode 100644 index 0000000000..d38cc5c912 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-02.html @@ -0,0 +1,6 @@ +Antique Dealer Patrin:
+Why, you find the true value of the item! To the untrained eye, an antique like this may seem rather ordinary. But to an expert like myself, each subtle mark and worn surface tells a story. The materials and techniques used in its manufacture are revealed to me.
+The different aspects will determine the true value of the statue. Statues that are appraised to be prototypes or genuine are the most valuable.
+If the appraisal shows that the statue is an imitation or a forgery, its value will be minimal. Sometimes it is better to skip the appraisal altogether.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-03.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-03.html new file mode 100644 index 0000000000..37e31e469a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-03.html @@ -0,0 +1,8 @@ +Antique Dealer Patrin:
+Just a moment... Let me get my reading glasses...
+Now, what have we here? Hmm...
+Oh Oh...!
+Hmm...?!
+In... indeed...!
+This is a prototype made by the very hands of Berona! This was used to make molds from which many other statues were produced. You must understand that this is one of the most valuable antiques you will ever find. It will fetch a handsome price at any store. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-04.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-04.html new file mode 100644 index 0000000000..669ed70a29 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-04.html @@ -0,0 +1,8 @@ +Antique Dealer Patrin:
+Just a moment... Let me get my reading glasses...
+Now, what have we here? Hmm...
+Oh Oh...!
+Hmm...?!
+In... indeed...!
+This is indeed a genuine statue. It was made from the prototype. Although not as valuable as its prototype, it is highly regarded among antique dealers. It will fetch a pretty good price at any store. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-05.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-05.html new file mode 100644 index 0000000000..764b47df7a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-05.html @@ -0,0 +1,7 @@ +Antique Dealer Patrin:
+Just a moment... Let me get my reading glasses...
+Now, what have we here?
+Hmm...?!
+Oh... Heh heh...!
+This is no work of Berona. It is a very cleverly made imitation! An apprentice sculptor must have copied the work of Berona. It is not worth much. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-06.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-06.html new file mode 100644 index 0000000000..31a504a480 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-06.html @@ -0,0 +1,8 @@ +Antique Dealer Patrin:
+Just a moment... Let me get my reading glasses...
+Now, shall I take a look at it? Hmm...
+Oh Oh...!
+Hmm...?!
+Heh Heh...!
+This is not Berona's work! It's a forgery! It must have been made by a skillful counterfeiter! I am sorry. It is virtually worthless. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-07.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-07.html new file mode 100644 index 0000000000..c9ebb79bd9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-07.html @@ -0,0 +1,6 @@ +Antique Dealer Patrin:
+Just a moment... Let me get my reading glasses...
+Now, what have we here? Hmm...
+Huh...?!! I barely touched it! How could I have made such a mistake!
+May I offer my abject apologies! Ancient articles such as this are so very fragile! + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-08.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-08.html new file mode 100644 index 0000000000..f1c64f4f95 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/30929-08.html @@ -0,0 +1,3 @@ +Antique Dealer Patrin:
+Why would you come to me empty-handed and ask for an appraisal? Are you kidding? What insolence! + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/Q00355_FamilyHonor.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/Q00355_FamilyHonor.java new file mode 100644 index 0000000000..cba9922311 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00355_FamilyHonor/Q00355_FamilyHonor.java @@ -0,0 +1,245 @@ +/* + * 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.Q00355_FamilyHonor; + +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; +import com.l2jmobius.gameserver.util.Util; + +/** + * Family Honor (355) + * @author Adry_85 + */ +public final class Q00355_FamilyHonor extends Quest +{ + private static final class DropInfo + { + public final int _firstChance; + public final int _secondChance; + + public DropInfo(int firstChance, int secondChance) + { + _firstChance = firstChance; + _secondChance = secondChance; + } + + public int getFirstChance() + { + return _firstChance; + } + + public int getSecondChance() + { + return _secondChance; + } + } + + // NPCs + private static final int GALIBREDO = 30181; + private static final int PATRIN = 30929; + // Items + private static final int GALFREDO_ROMERS_BUST = 4252; + private static final int SCULPTOR_BERONA = 4350; + private static final int ANCIENT_STATUE_PROTOTYPE = 4351; + private static final int ANCIENT_STATUE_ORIGINAL = 4352; + private static final int ANCIENT_STATUE_REPLICA = 4353; + private static final int ANCIENT_STATUE_FORGERY = 4354; + // Misc + private static final int MIN_LEVEL = 36; + + private static final Map MOBS = new HashMap<>(); + static + { + MOBS.put(20767, new DropInfo(560, 684)); // timak_orc_troop_leader + MOBS.put(20768, new DropInfo(530, 650)); // timak_orc_troop_shaman + MOBS.put(20769, new DropInfo(420, 516)); // timak_orc_troop_warrior + MOBS.put(20770, new DropInfo(440, 560)); // timak_orc_troop_archer + } + + public Q00355_FamilyHonor() + { + super(355); + addStartNpc(GALIBREDO); + addTalkId(GALIBREDO, PATRIN); + addKillId(MOBS.keySet()); + registerQuestItems(GALFREDO_ROMERS_BUST); + } + + @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 "30181-02.htm": + case "30181-09.html": + case "30929-01.html": + case "30929-02.html": + { + htmltext = event; + break; + } + case "30181-03.htm": + { + qs.startQuest(); + htmltext = event; + break; + } + case "30181-06.html": + { + final long galfredoRomersBustCount = getQuestItemsCount(player, GALFREDO_ROMERS_BUST); + + if (galfredoRomersBustCount < 1) + { + htmltext = event; + } + else if (galfredoRomersBustCount >= 100) + { + giveAdena(player, (galfredoRomersBustCount * 120) + 7800, true); + takeItems(player, GALFREDO_ROMERS_BUST, -1); + htmltext = "30181-07.html"; + } + else + { + giveAdena(player, (galfredoRomersBustCount * 120) + 2800, true); + takeItems(player, GALFREDO_ROMERS_BUST, -1); + htmltext = "30181-08.html"; + } + break; + } + case "30181-10.html": + { + final long galfredoRomersBustCount = getQuestItemsCount(player, GALFREDO_ROMERS_BUST); + + if (galfredoRomersBustCount > 0) + { + giveAdena(player, galfredoRomersBustCount * 120, true); + } + + takeItems(player, GALFREDO_ROMERS_BUST, -1); + qs.exitQuest(true, true); + htmltext = event; + break; + } + case "30929-03.html": + { + final int random = getRandom(100); + + if (hasQuestItems(player, SCULPTOR_BERONA)) + { + if (random < 2) + { + giveItems(player, ANCIENT_STATUE_PROTOTYPE, 1); + htmltext = event; + } + else if (random < 32) + { + giveItems(player, ANCIENT_STATUE_ORIGINAL, 1); + htmltext = "30929-04.html"; + } + else if (random < 62) + { + giveItems(player, ANCIENT_STATUE_REPLICA, 1); + htmltext = "30929-05.html"; + } + else if (random < 77) + { + giveItems(player, ANCIENT_STATUE_FORGERY, 1); + htmltext = "30929-06.html"; + } + else + { + htmltext = "30929-07.html"; + } + + takeItems(player, SCULPTOR_BERONA, 1); + } + else + { + htmltext = "30929-08.html"; + } + break; + } + } + return htmltext; + } + + @Override + public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) + { + final QuestState qs = getQuestState(killer, false); + + if ((qs == null) || !Util.checkIfInRange(1500, npc, killer, true)) + { + return null; + } + + final DropInfo info = MOBS.get(npc.getId()); + final int random = getRandom(1000); + + if (random < info.getFirstChance()) + { + giveItemRandomly(killer, npc, GALFREDO_ROMERS_BUST, 1, 0, 1.0, true); + } + else if (random < info.getSecondChance()) + { + giveItemRandomly(killer, npc, SCULPTOR_BERONA, 1, 0, 1.0, true); + } + return super.onKill(npc, killer, isSummon); + } + + @Override + public String onTalk(L2Npc npc, L2PcInstance player) + { + QuestState qs = getQuestState(player, true); + String htmltext = getNoQuestMsg(player); + if (qs.isCreated()) + { + htmltext = (player.getLevel() >= MIN_LEVEL) ? "30181-01.htm" : "30181-04.html"; + } + else if (qs.isStarted()) + { + if (npc.getId() == GALIBREDO) + { + if (hasQuestItems(player, SCULPTOR_BERONA)) + { + htmltext = "30181-11.html"; + } + else + { + htmltext = "30181-05.html"; + } + } + else + { + htmltext = "30929-01.html"; + } + } + return htmltext; + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-01.htm new file mode 100644 index 0000000000..3a1b300f8c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-01.htm @@ -0,0 +1,5 @@ +Magister Gauen:
+Since the era of Shunaiman, the first emperor of the ancient Elmoreden Empire, the Mystics of the Ivory Tower have been researching the Sea of Spores. Around E.D. 500 they constructed a force field tower which stopped the spread of that wretched sea. Their research has continued throughout the centuries.
+Although the ancient barrier appears to be holding, the Sea of Spores continues to threaten us. A final solution to this problem must be found.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-02.htm new file mode 100644 index 0000000000..0f33d6934a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-02.htm @@ -0,0 +1,7 @@ +Magister Gauen:
+Frankly, I'm not sure. Up to now our research has been focused on sustaining and strengthening the magic force field tower.
+However, it has become clear that we need a more permanent solution. For this we must return to the Sea of Spores itself.
+We must shift our strategy to researching each individual spore, one by one.
+We must study the colonies they build, how they spawn and the complex relationships between the plants and animals of the sea.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-03.htm new file mode 100644 index 0000000000..b52020e7e6 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-03.htm @@ -0,0 +1,4 @@ +Magister Gauen:
+I must have a tissue sample of an organism that has joined with spores and grown roots. Rotting Tree Spores and spore zombies will do nicely.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-04.htm new file mode 100644 index 0000000000..5a3aacd27b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-04.htm @@ -0,0 +1,4 @@ +Magister Gauen:
+There are many different types of spores, all with unique and often dangerous characteristics. Are you sure you want to do this?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-05.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-05.htm new file mode 100644 index 0000000000..fbd791500e --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-05.htm @@ -0,0 +1,3 @@ +Magister Gauen:
+Your resolve is admirable! Go and get the spores that live as parasites on rotten trees and spore zombies. Put the spores from the spore zombies in this grey pouch and put the spores from the rotten trees in this yellow pouch. The capacity of the pouches varies according to the size of the spores. Each pouch usually holds about 50 spores. Thank you for your assistance. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-06.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-06.htm new file mode 100644 index 0000000000..7ea5415d15 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-06.htm @@ -0,0 +1,5 @@ +Magister Gauen:
+Since the era of Shunaiman, the first emperor of the ancient Elmoreden Empire, the Mystics of the Ivory Tower have been researching the Sea of Spores. Around E.D. 500 they constructed a force field tower which stopped the spread of that wretched sea. Their research has continued through the centuries.
+They could use some help in their studies, but I'm afraid you're not yet ready.
+(This quest may only be undertaken by a character of level 43 or above.) + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-07.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-07.html new file mode 100644 index 0000000000..364929bc8d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-07.html @@ -0,0 +1,3 @@ +Magister Gauen:
+Have you been to the Sea of Spores? Bring me the spores from rotten trees in this yellow pouch and the spores from spore zombies in this grey pouch. Fill the pouches with 50 spores each and then bring them back to me. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-08.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-08.html new file mode 100644 index 0000000000..f25856c3bd --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-08.html @@ -0,0 +1,5 @@ +Magister Gauen:
+Have you just returned from the Sea of Spores? I see that you have filled the yellow pouch. Due to inevitable...ah, shrinkage, I had hoped that you would fill both pouches. Well, no matter. What do you wish to do? Will you give me the yellow pouch?
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-09.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-09.html new file mode 100644 index 0000000000..c1c826f889 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-09.html @@ -0,0 +1,5 @@ +Magister Gauen:
+Do you wish to continue collecting spores or would you like to quit?
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-10.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-10.html new file mode 100644 index 0000000000..ec977ea20b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-10.html @@ -0,0 +1,3 @@ +Magister Gauen:
+Go to the Sea of Spores and bring back the spores that are parasites on the bodies of rotten trees and spore zombies. Collect 50 of each kind in each of the two pouches. Please do this and restore peace to the community. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-11.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-11.html new file mode 100644 index 0000000000..863b4d7e5f --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-11.html @@ -0,0 +1,3 @@ +Magister Gauen:
+Thank you very much.
If you ever return to the Sea of Spores, come and see me. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-12.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-12.html new file mode 100644 index 0000000000..4c285eb56b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-12.html @@ -0,0 +1,5 @@ +Magister Gauen:
+Have you just returned from the Sea of Spores? I see that you have filled the grey pouch. Due to inevitable...ah, shrinkage, I had hoped that you would fill both pouches. Well, no matter. What do you wish to do? Will you give me the grey pouch?
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-13.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-13.html new file mode 100644 index 0000000000..3a4d94bfbb --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-13.html @@ -0,0 +1,6 @@ +Magister Gauen:
+Ah, you've returned! Give me the pouches. Hmm...
+Actually, I'm a little busy... Just put them anywhere...
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-14.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-14.html new file mode 100644 index 0000000000..f4279dd65b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-14.html @@ -0,0 +1,4 @@ +Magister Gauen:
+Please put them in that box over there. Thanks to you, we can continue to conduct highly productive and effective research. Your contribution will be duly noted.
+Would you like to help us some more? + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-15.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-15.html new file mode 100644 index 0000000000..bb0994bca5 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-15.html @@ -0,0 +1,4 @@ +Magister Gauen:
+Oh yes, this is great! Splendid work! Even experts aren't so neat!
+You must be rewarded! Please take this. You have greatly aided our research. I may ask for your assistance again. You are very good at this! + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-16.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-16.html new file mode 100644 index 0000000000..bfe0ac66c7 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-16.html @@ -0,0 +1,3 @@ +Magister Gauen:
+Here we go... I acknowledge that I received from you 50 Herbivorous Spores and 50 carnivorous spores. Here is your reward. If you wish, come back and help me again. We have enough for now, but I'm sure that in the future we shall need more. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-17.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-17.html new file mode 100644 index 0000000000..475805b5fe --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-17.html @@ -0,0 +1,4 @@ +Magister Gauen:
+What's this? They're all crushed together! I can't count them when they're like this... Well, they feel to be about the right weight...
+They have been too badly damaged to be useful for our research. But a deal's a deal, I shall pay you. If you wish to continue in this job, you must be more careful! + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-18.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-18.html new file mode 100644 index 0000000000..8e5c80e119 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/30717-18.html @@ -0,0 +1,4 @@ +Magister Gauen:
+I'm sorry, I was distracted. Let's see, first we must sort them... What do we have here?
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/Q00356_DigUpTheSeaOfSpores.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/Q00356_DigUpTheSeaOfSpores.java new file mode 100644 index 0000000000..31ef57ca9a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00356_DigUpTheSeaOfSpores/Q00356_DigUpTheSeaOfSpores.java @@ -0,0 +1,196 @@ +/* + * 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.Q00356_DigUpTheSeaOfSpores; + +import java.util.HashMap; +import java.util.Map; + +import com.l2jmobius.commons.util.Rnd; +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.util.Util; + +/** + * Dig Up the Sea of Spores! (356) + * @author Adry_85 + */ +public final class Q00356_DigUpTheSeaOfSpores extends Quest +{ + // NPC + private static final int GAUEN = 30717; + // Items + private static final int CARNIVORE_SPORE = 5865; + private static final int HERBIVOROUS_SPORE = 5866; + // Misc + private static final int MIN_LEVEL = 43; + // Monsters + private static final int ROTTING_TREE = 20558; + private static final int SPORE_ZOMBIE = 20562; + private static final Map MONSTER_DROP_CHANCES = new HashMap<>(); + static + { + MONSTER_DROP_CHANCES.put(ROTTING_TREE, 0.73); + MONSTER_DROP_CHANCES.put(SPORE_ZOMBIE, 0.94); + } + + public Q00356_DigUpTheSeaOfSpores() + { + super(356); + addStartNpc(GAUEN); + addTalkId(GAUEN); + addKillId(ROTTING_TREE, SPORE_ZOMBIE); + registerQuestItems(HERBIVOROUS_SPORE, CARNIVORE_SPORE); + } + + @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 "30717-02.htm": + case "30717-03.htm": + case "30717-04.htm": + case "30717-10.html": + case "30717-18.html": + { + htmltext = event; + break; + } + case "30717-05.htm": + { + qs.startQuest(); + htmltext = event; + break; + } + case "30717-09.html": + { + addExpAndSp(player, 31850, 0); + takeItems(player, CARNIVORE_SPORE, -1); + takeItems(player, HERBIVOROUS_SPORE, -1); + htmltext = event; + break; + } + case "30717-11.html": + { + qs.exitQuest(true, true); + htmltext = event; + break; + } + case "30717-14.html": + { + addExpAndSp(player, 45500, 2600); + qs.exitQuest(true, true); + htmltext = event; + break; + } + case "FINISH": + { + final int value = Rnd.get(100); + int adena = 0; + if (value < 20) + { + adena = 44000; + htmltext = "30717-15.html"; + } + else if (value < 70) + { + adena = 20950; + htmltext = "30717-16.html"; + } + else + { + adena = 10400; + htmltext = "30717-17.html"; + } + giveAdena(player, adena, true); + qs.exitQuest(true, true); + break; + } + } + return htmltext; + } + + @Override + public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) + { + final QuestState qs = getQuestState(killer, false); + + if ((qs == null) || !Util.checkIfInRange(1500, npc, killer, true)) + { + return null; + } + + final int dropItem = ((npc.getId() == ROTTING_TREE) ? HERBIVOROUS_SPORE : CARNIVORE_SPORE); + final int otherItem = ((dropItem == HERBIVOROUS_SPORE) ? CARNIVORE_SPORE : HERBIVOROUS_SPORE); + + if (giveItemRandomly(qs.getPlayer(), npc, dropItem, 1, 50, MONSTER_DROP_CHANCES.get(npc.getId()), true)) + { + if (getQuestItemsCount(killer, otherItem) >= 50) + { + qs.setCond(3); + } + else + { + qs.setCond(2); + } + } + 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) ? "30717-01.htm" : "30717-06.htm"; + } + else if (qs.isStarted()) + { + final boolean hasAllHerbSpores = (getQuestItemsCount(player, HERBIVOROUS_SPORE) >= 50); + final boolean hasAllCarnSpores = (getQuestItemsCount(player, CARNIVORE_SPORE) >= 50); + + if (hasAllHerbSpores && hasAllCarnSpores) + { + htmltext = "30717-13.html"; + } + else if (hasAllCarnSpores) + { + htmltext = "30717-12.html"; + } + else if (hasAllHerbSpores) + { + htmltext = "30717-08.html"; + } + else + { + htmltext = "30717-07.html"; + } + } + return htmltext; + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-01.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-01.htm new file mode 100644 index 0000000000..162c215dfc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-01.htm @@ -0,0 +1,5 @@ +Grand Master Oltlin:
+Have you seen the sights of the city? The wonderful castles built by humans, in spite of countless errors and obstacles. Do you have any idea what is beneath them? Often, long shadows are cast under the glow of glory.
+You always find the darkest shadows under strong light. Those who pursue glory are wary of shadows. Where there is pure achievement, there is always absence.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-02.htm new file mode 100644 index 0000000000..1a50d0b805 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-02.htm @@ -0,0 +1,6 @@ +Grand Master Oltlin:
+Ah, yes, the bitter ramblings of an old man. As you approach true enlightenment, the shadows grow darker. Among those who pursue glory, some work diligently against the shadow at every opportunity.
+At the same time, they must know that their efforts are as futile as covering up the sky with your hand. Of course, I don't need to explain this to you. The gods created us in their own imperfect image.
+Perfect beings' only creations are contrivances. As the perfect circle has no edge... perfect hatred only produces monsters.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-03.htm new file mode 100644 index 0000000000..de3bd55990 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-03.htm @@ -0,0 +1,7 @@ +Grand Master Oltlin:
+Her anger towards Gran Kain and Einhasad for a time turned Shilen into a pure and perfect being. That is, she became the literal incarnation of destruction.
+As she achieved the purest form of fury, her benevolence and austerity left her completely. Her perfect wrath is the source of those evil creatures.
+They are sealed away now, and I don't know what their current condition is, but their very existence proves that she has become a goddess of destruction!
+We worshippers of Shilen teach our children that she is our mother, therefore we must calm her wrath.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-04.htm new file mode 100644 index 0000000000..42c81d97be --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-04.htm @@ -0,0 +1,4 @@ +Grand Master Oltlin:
+There are evil creatures close to her. These are the illegitimate children she bore while her fury was at its fiercest... Go slay Falibati and Trives who bear a striking resemblence to her. Bring back their Snake Scales.
+If you bring me 108 Snake Scales, I will teach you a secret, ancient method of creation. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-05.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-05.html new file mode 100644 index 0000000000..b00d937a3b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-05.html @@ -0,0 +1,5 @@ +Grand Master Oltlin:
+Have you seen the sights of the city? The wonderful castles built by humans, in spite of countless errors and obstacles. Do you have any idea what is beneath them? Often, long shadows are cast under the glow of glory.
+You always find the darkest shadows under strong light. Does this make sense to you? I thought not. It seems you will need more training. Why don't you explore the world some more and come back later.
+(This quest can only be undertaken by a character of level 63 or higher.) + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-06.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-06.html new file mode 100644 index 0000000000..c2c6d719dc --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-06.html @@ -0,0 +1,3 @@ +Grand Master Oltlin:
+To restore the dignity and glory of the goddess you must kill Falibati and Trives, the illegitimate children born of her wrath, and bring back 108 Snake Scales. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-07.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-07.html new file mode 100644 index 0000000000..82c3c11480 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/30862-07.html @@ -0,0 +1,5 @@ +Grand Master Oltlin:
+Thank you for your efforts. I know it was not easy... Needless to say, please don't tell other people that you have done this for me. Above all my children must never learn of it...
+In exchange for your efforts, I will give you this Secret Book in which ancient secret creation methods are recorded. I hope it will be helpful to you.
+Too many people think they can cover the sky with the palm of their hand. There is such a thing as too much truth... My work will likely never end... If you are ever interested in helping me again, come back to see me. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/Q00358_IllegitimateChildOfTheGoddess.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/Q00358_IllegitimateChildOfTheGoddess.java new file mode 100644 index 0000000000..175880756c --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00358_IllegitimateChildOfTheGoddess/Q00358_IllegitimateChildOfTheGoddess.java @@ -0,0 +1,132 @@ +/* + * 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.Q00358_IllegitimateChildOfTheGoddess; + +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; + +/** + * Illegitimate Child of the Goddess (358) + * @author Adry_85 + */ +public final class Q00358_IllegitimateChildOfTheGoddess extends Quest +{ + // NPC + private static final int OLTRAN = 30862; + // Item + private static final int SNAKE_SCALE = 5868; + // Misc + private static final int MIN_LEVEL = 63; + private static final int SNAKE_SCALE_COUNT = 108; + // Rewards + private static final int[] REWARDS = new int[] + { + 5364, // Recipe: Sealed Dark Crystal Shield(60%) + 5366, // Recipe: Sealed Shield of Nightmare(60%) + 6329, // Recipe: Sealed Phoenix Necklace(70%) + 6331, // Recipe: Sealed Phoenix Earring(70%) + 6333, // Recipe: Sealed Phoenix Ring(70%) + 6335, // Recipe: Sealed Majestic Necklace(70%) + 6337, // Recipe: Sealed Majestic Earring(70%) + 6339, // Recipe: Sealed Majestic Ring(70%) + }; + // Mobs + private static final Map MOBS = new HashMap<>(); + static + { + MOBS.put(20672, 0.71); // trives + MOBS.put(20673, 0.74); // falibati + } + + public Q00358_IllegitimateChildOfTheGoddess() + { + super(358); + addStartNpc(OLTRAN); + addTalkId(OLTRAN); + addKillId(MOBS.keySet()); + registerQuestItems(SNAKE_SCALE); + } + + @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 "30862-02.htm": + case "30862-03.htm": + { + htmltext = event; + break; + } + case "30862-04.htm": + { + st.startQuest(); + htmltext = event; + break; + } + } + return htmltext; + } + + @Override + public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) + { + final QuestState st = getRandomPartyMemberState(player, 1, 3, npc); + if ((st != null) && giveItemRandomly(player, npc, SNAKE_SCALE, 1, SNAKE_SCALE_COUNT, MOBS.get(npc.getId()), true)) + { + st.setCond(2, true); + } + return super.onKill(npc, player, isSummon); + } + + @Override + public String onTalk(L2Npc npc, L2PcInstance player) + { + final QuestState st = getQuestState(player, true); + String htmltext = getNoQuestMsg(player); + if (st.isCreated()) + { + htmltext = ((player.getLevel() >= MIN_LEVEL) ? "30862-01.htm" : "30862-05.html"); + } + else if (st.isStarted()) + { + if (getQuestItemsCount(player, SNAKE_SCALE) < SNAKE_SCALE_COUNT) + { + htmltext = "30862-06.html"; + } + else + { + rewardItems(player, REWARDS[getRandom(REWARDS.length)], 1); + st.exitQuest(true, true); + htmltext = "30862-07.html"; + } + } + return htmltext; + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-01.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-01.html new file mode 100644 index 0000000000..4b17de7baf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-01.html @@ -0,0 +1,5 @@ +Guard Coleman:
+Have you been to the Cemetery?
+It's a dangerous place, where many monsters roam. The neglect of the kingdom has allowed it to fall into ruins. If we incur our ancestors' wrath, we'll have no one to blame but ourselves. You must use extreme care when you go there. I seriously doubt that you will survive.
+(This quest can only be undertaken by a character of level 52 or higher.) + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-02.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-02.htm new file mode 100644 index 0000000000..599ba67d7d --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-02.htm @@ -0,0 +1,6 @@ +Guard Coleman:
+Have you witnessed the current condition of the Cemetery?
+The final resting place of kings, aristocrats and heroes has fallen into ruin and been overtaken by hideous monsters. Our neglect tempts our ancestors' wrath.
+At Captain Kurtiz's direction, we have begun to try to drive out the monsters, but we have not been very effective so far.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-03.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-03.htm new file mode 100644 index 0000000000..c43f61d80a --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-03.htm @@ -0,0 +1,6 @@ +Guard Coleman:
+Captain Kurtiz says that in order to wipe them out completely, the Taik Orc seeker and the Taik Orc supply leader must be stopped from giving supplies to the monsters.
+But alas, our guards are having a hard time dealing with their forces. The captain has ordered me to find someone who can kill them for us.
+You seem capable of doing it. Are you willing to help us? We will pay you a generous reward.
+ + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-04.htm b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-04.htm new file mode 100644 index 0000000000..c2256286a9 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-04.htm @@ -0,0 +1,3 @@ +Guard Coleman:
+I wish you luck. You will be compensated based on the amount of supplies you bring back from the orcs. If you happen to find an important document, please bring it to me as well. In our current predicament, any amount of enemy intelligence would be very helpful. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-05.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-05.html new file mode 100644 index 0000000000..a150b9ea0b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-05.html @@ -0,0 +1,5 @@ +Guard Coleman:
+Why are you still here? Your must subjugate Taik Orc seekers and Taik Orc supply leaders. You can't go back on your word! You don't intend to do that, do you?
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-06.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-06.html new file mode 100644 index 0000000000..97225f6ab3 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-06.html @@ -0,0 +1,5 @@ +Guard Coleman:
+Are you finished already? You must be exhausted! Thank you! Here is your reward. This should be more than enough compensation for your work... Do you wish to continue helping me with this mission?
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-07.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-07.html new file mode 100644 index 0000000000..85422e343b --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-07.html @@ -0,0 +1,7 @@ +Guard Coleman:
+Are you finished already? You must be exhausted! Thank you! You shall be well compensated.
+What is this? A document regarding the supplies? I knew it! There is a conspiracy afoot! I must take this to Captain Kurtiz right away! Thank you!
+Oh yes, I almost forgot. Here is your reward. Here is some extra for the document...
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-08.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-08.html new file mode 100644 index 0000000000..91ea0d75db --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-08.html @@ -0,0 +1,7 @@ +Guard Coleman:
+Are you finished already? You must be exhausted! Thank you! You shall be well compensated.
+What is this? A document regarding the supplies? I knew it! There is a conspiracy afoot! I must take this to Captain Kurtiz right away! Thank you!
+Oh yes, I almost forgot. Here is your reward. Here is some extra for the document... Will you continue to help me?
+ + + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-09.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-09.html new file mode 100644 index 0000000000..a4e1e3eeca --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-09.html @@ -0,0 +1,3 @@ +Guard Coleman:
+Thank you! I'm sure you will continue to have great results. Bring me any supplies and documents you take from the Taik orcs and I will give you a generous reward... Hurry! + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-10.html b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-10.html new file mode 100644 index 0000000000..9267e4accf --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/30873-10.html @@ -0,0 +1,3 @@ +Guard Coleman:
+Ah, yes... I understand... We all have our own path to follow... I shouldn't try to stop you. May a divine blessing shine upon your path from this day forward... But with your abilities, you probably don't even need a blessing. Someday I'm sure your name with be known throughout the kingdom of Aden. + \ No newline at end of file diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/Q00360_PlunderTheirSupplies.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/Q00360_PlunderTheirSupplies.java new file mode 100644 index 0000000000..df2c311192 --- /dev/null +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/Q00360_PlunderTheirSupplies/Q00360_PlunderTheirSupplies.java @@ -0,0 +1,182 @@ +/* + * 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.Q00360_PlunderTheirSupplies; + +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 com.l2jmobius.gameserver.util.Util; + +/** + * Plunder Supplies (360) + * @author netvirus + */ +public final class Q00360_PlunderTheirSupplies extends Quest +{ + // Npc + private static final int COLEMAN = 30873; + // Misc + private static final int MIN_LVL = 52; + // Monsters + private static final Map MONSTER_DROP_CHANCES = new HashMap<>(); + // Items + private static final int RECIPE_OF_SUPPLY = 5870; + private static final int SUPPLY_ITEMS = 5872; + private static final int SUSPICIOUS_DOCUMENT_PIECE = 5871; + + static + { + MONSTER_DROP_CHANCES.put(20666, 50); // Taik Orc Seeker + MONSTER_DROP_CHANCES.put(20669, 75); // Taik Orc Supply Leader + } + + public Q00360_PlunderTheirSupplies() + { + super(360); + addStartNpc(COLEMAN); + addTalkId(COLEMAN); + addKillId(MONSTER_DROP_CHANCES.keySet()); + registerQuestItems(SUPPLY_ITEMS, SUSPICIOUS_DOCUMENT_PIECE, RECIPE_OF_SUPPLY); + } + + @Override + public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) + { + final QuestState st = getQuestState(player, false); + String htmltext = null; + if (st == null) + { + return htmltext; + } + + switch (event) + { + case "30873-03.htm": + case "30873-09.html": + { + htmltext = event; + break; + } + case "30873-04.htm": + { + st.startQuest(); + htmltext = event; + break; + } + case "30873-10.html": + { + st.exitQuest(false, true); + htmltext = event; + break; + } + } + return htmltext; + } + + @Override + public String onKill(L2Npc npc, L2PcInstance killer, boolean isPet) + { + final QuestState st = getQuestState(killer, false); + if ((st == null) || !Util.checkIfInRange(1500, npc, killer, false)) + { + return super.onKill(npc, killer, isPet); + } + + if (getRandom(100) < MONSTER_DROP_CHANCES.get(npc.getId())) + { + giveItems(killer, SUPPLY_ITEMS, 1); + playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); + } + + if (getRandom(100) < 10) + { + if (getQuestItemsCount(killer, SUSPICIOUS_DOCUMENT_PIECE) < 4) + { + giveItems(killer, SUSPICIOUS_DOCUMENT_PIECE, 1); + } + else + { + giveItems(killer, RECIPE_OF_SUPPLY, 1); + takeItems(killer, SUSPICIOUS_DOCUMENT_PIECE, -1); + } + playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); + } + return super.onKill(npc, killer, isPet); + } + + @Override + public String onTalk(L2Npc npc, L2PcInstance player) + { + final QuestState st = getQuestState(player, true); + String htmltext = getNoQuestMsg(player); + if (st == null) + { + return htmltext; + } + + switch (st.getState()) + { + case State.CREATED: + { + htmltext = (player.getLevel() >= MIN_LVL) ? "30873-02.htm" : "30873-01.html"; + break; + } + case State.STARTED: + { + final long supplyCount = getQuestItemsCount(player, SUPPLY_ITEMS); + final long recipeCount = getQuestItemsCount(player, RECIPE_OF_SUPPLY); + if (supplyCount == 0) + { + if (recipeCount == 0) + { + htmltext = "30873-05.html"; + } + else + { + giveAdena(player, (recipeCount * 6000), true); + takeItems(player, RECIPE_OF_SUPPLY, -1); + htmltext = "30873-08.html"; + } + } + else + { + if (recipeCount == 0) + { + giveAdena(player, ((supplyCount * 100) + 6000), true); + takeItems(player, SUPPLY_ITEMS, -1); + htmltext = "30873-06.html"; + } + else + { + giveAdena(player, (((supplyCount * 100) + 6000) + (recipeCount * 6000)), true); + takeItems(player, SUPPLY_ITEMS, -1); + takeItems(player, RECIPE_OF_SUPPLY, -1); + htmltext = "30873-07.html"; + } + } + break; + } + } + return htmltext; + } +} diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/quests/QuestMasterHandler.java b/L2J_Mobius_Classic/dist/game/data/scripts/quests/QuestMasterHandler.java index ee8ef916ae..14acfe72c2 100644 --- a/L2J_Mobius_Classic/dist/game/data/scripts/quests/QuestMasterHandler.java +++ b/L2J_Mobius_Classic/dist/game/data/scripts/quests/QuestMasterHandler.java @@ -24,6 +24,37 @@ import quests.Q00002_WhatWomenWant.Q00002_WhatWomenWant; import quests.Q00003_WillTheSealBeBroken.Q00003_WillTheSealBeBroken; import quests.Q00004_LongLiveThePaagrioLord.Q00004_LongLiveThePaagrioLord; import quests.Q00005_MinersFavor.Q00005_MinersFavor; +import quests.Q00070_SagaOfThePhoenixKnight.Q00070_SagaOfThePhoenixKnight; +import quests.Q00071_SagaOfEvasTemplar.Q00071_SagaOfEvasTemplar; +import quests.Q00072_SagaOfTheSwordMuse.Q00072_SagaOfTheSwordMuse; +import quests.Q00073_SagaOfTheDuelist.Q00073_SagaOfTheDuelist; +import quests.Q00074_SagaOfTheDreadnought.Q00074_SagaOfTheDreadnought; +import quests.Q00075_SagaOfTheTitan.Q00075_SagaOfTheTitan; +import quests.Q00076_SagaOfTheGrandKhavatari.Q00076_SagaOfTheGrandKhavatari; +import quests.Q00077_SagaOfTheDominator.Q00077_SagaOfTheDominator; +import quests.Q00078_SagaOfTheDoomcryer.Q00078_SagaOfTheDoomcryer; +import quests.Q00079_SagaOfTheAdventurer.Q00079_SagaOfTheAdventurer; +import quests.Q00080_SagaOfTheWindRider.Q00080_SagaOfTheWindRider; +import quests.Q00081_SagaOfTheGhostHunter.Q00081_SagaOfTheGhostHunter; +import quests.Q00082_SagaOfTheSagittarius.Q00082_SagaOfTheSagittarius; +import quests.Q00083_SagaOfTheMoonlightSentinel.Q00083_SagaOfTheMoonlightSentinel; +import quests.Q00084_SagaOfTheGhostSentinel.Q00084_SagaOfTheGhostSentinel; +import quests.Q00085_SagaOfTheCardinal.Q00085_SagaOfTheCardinal; +import quests.Q00086_SagaOfTheHierophant.Q00086_SagaOfTheHierophant; +import quests.Q00087_SagaOfEvasSaint.Q00087_SagaOfEvasSaint; +import quests.Q00088_SagaOfTheArchmage.Q00088_SagaOfTheArchmage; +import quests.Q00089_SagaOfTheMysticMuse.Q00089_SagaOfTheMysticMuse; +import quests.Q00090_SagaOfTheStormScreamer.Q00090_SagaOfTheStormScreamer; +import quests.Q00091_SagaOfTheArcanaLord.Q00091_SagaOfTheArcanaLord; +import quests.Q00092_SagaOfTheElementalMaster.Q00092_SagaOfTheElementalMaster; +import quests.Q00093_SagaOfTheSpectralMaster.Q00093_SagaOfTheSpectralMaster; +import quests.Q00094_SagaOfTheSoultaker.Q00094_SagaOfTheSoultaker; +import quests.Q00095_SagaOfTheHellKnight.Q00095_SagaOfTheHellKnight; +import quests.Q00096_SagaOfTheSpectralDancer.Q00096_SagaOfTheSpectralDancer; +import quests.Q00097_SagaOfTheShillienTemplar.Q00097_SagaOfTheShillienTemplar; +import quests.Q00098_SagaOfTheShillienSaint.Q00098_SagaOfTheShillienSaint; +import quests.Q00099_SagaOfTheFortuneSeeker.Q00099_SagaOfTheFortuneSeeker; +import quests.Q00100_SagaOfTheMaestro.Q00100_SagaOfTheMaestro; import quests.Q00101_SwordOfSolidarity.Q00101_SwordOfSolidarity; import quests.Q00102_SeaOfSporesFever.Q00102_SeaOfSporesFever; import quests.Q00103_SpiritOfCraftsman.Q00103_SpiritOfCraftsman; @@ -116,6 +147,12 @@ import quests.Q00328_SenseForBusiness.Q00328_SenseForBusiness; import quests.Q00329_CuriosityOfADwarf.Q00329_CuriosityOfADwarf; import quests.Q00331_ArrowOfVengeance.Q00331_ArrowOfVengeance; import quests.Q00333_HuntOfTheBlackLion.Q00333_HuntOfTheBlackLion; +import quests.Q00344_1000YearsTheEndOfLamentation.Q00344_1000YearsTheEndOfLamentation; +import quests.Q00354_ConquestOfAlligatorIsland.Q00354_ConquestOfAlligatorIsland; +import quests.Q00355_FamilyHonor.Q00355_FamilyHonor; +import quests.Q00356_DigUpTheSeaOfSpores.Q00356_DigUpTheSeaOfSpores; +import quests.Q00358_IllegitimateChildOfTheGoddess.Q00358_IllegitimateChildOfTheGoddess; +import quests.Q00360_PlunderTheirSupplies.Q00360_PlunderTheirSupplies; import quests.Q00369_CollectorOfJewels.Q00369_CollectorOfJewels; import quests.Q00370_AnElderSowsSeeds.Q00370_AnElderSowsSeeds; import quests.Q00401_PathOfTheWarrior.Q00401_PathOfTheWarrior; @@ -151,6 +188,37 @@ public class QuestMasterHandler Q00003_WillTheSealBeBroken.class, Q00004_LongLiveThePaagrioLord.class, Q00005_MinersFavor.class, + Q00070_SagaOfThePhoenixKnight.class, + Q00071_SagaOfEvasTemplar.class, + Q00072_SagaOfTheSwordMuse.class, + Q00073_SagaOfTheDuelist.class, + Q00074_SagaOfTheDreadnought.class, + Q00075_SagaOfTheTitan.class, + Q00076_SagaOfTheGrandKhavatari.class, + Q00077_SagaOfTheDominator.class, + Q00078_SagaOfTheDoomcryer.class, + Q00079_SagaOfTheAdventurer.class, + Q00080_SagaOfTheWindRider.class, + Q00081_SagaOfTheGhostHunter.class, + Q00082_SagaOfTheSagittarius.class, + Q00083_SagaOfTheMoonlightSentinel.class, + Q00084_SagaOfTheGhostSentinel.class, + Q00085_SagaOfTheCardinal.class, + Q00086_SagaOfTheHierophant.class, + Q00087_SagaOfEvasSaint.class, + Q00088_SagaOfTheArchmage.class, + Q00089_SagaOfTheMysticMuse.class, + Q00090_SagaOfTheStormScreamer.class, + Q00091_SagaOfTheArcanaLord.class, + Q00092_SagaOfTheElementalMaster.class, + Q00093_SagaOfTheSpectralMaster.class, + Q00094_SagaOfTheSoultaker.class, + Q00095_SagaOfTheHellKnight.class, + Q00096_SagaOfTheSpectralDancer.class, + Q00097_SagaOfTheShillienTemplar.class, + Q00098_SagaOfTheShillienSaint.class, + Q00099_SagaOfTheFortuneSeeker.class, + Q00100_SagaOfTheMaestro.class, Q00101_SwordOfSolidarity.class, Q00102_SeaOfSporesFever.class, Q00103_SpiritOfCraftsman.class, @@ -243,6 +311,12 @@ public class QuestMasterHandler Q00329_CuriosityOfADwarf.class, Q00331_ArrowOfVengeance.class, Q00333_HuntOfTheBlackLion.class, + Q00344_1000YearsTheEndOfLamentation.class, + Q00354_ConquestOfAlligatorIsland.class, + Q00355_FamilyHonor.class, + Q00356_DigUpTheSeaOfSpores.class, + Q00358_IllegitimateChildOfTheGoddess.class, + Q00360_PlunderTheirSupplies.class, Q00369_CollectorOfJewels.class, Q00370_AnElderSowsSeeds.class, Q00401_PathOfTheWarrior.class,