/* * Copyright (C) 2004-2015 L2J DataPack * * This file is part of L2J DataPack. * * L2J DataPack 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. * * L2J DataPack 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.Q00197_SevenSignsTheSacredBookOfSeal; import quests.Q00196_SevenSignsSealOfTheEmperor.Q00196_SevenSignsSealOfTheEmperor; import com.l2jserver.gameserver.ai.CtrlIntention; import com.l2jserver.gameserver.enums.QuestSound; import com.l2jserver.gameserver.model.actor.L2Npc; import com.l2jserver.gameserver.model.actor.instance.L2MonsterInstance; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.model.quest.Quest; import com.l2jserver.gameserver.model.quest.QuestState; import com.l2jserver.gameserver.model.quest.State; import com.l2jserver.gameserver.network.NpcStringId; import com.l2jserver.gameserver.network.clientpackets.Say2; import com.l2jserver.gameserver.network.serverpackets.NpcSay; /** * Seven Signs, The Sacred Book of Seal (197) * @author Adry_85 */ public final class Q00197_SevenSignsTheSacredBookOfSeal extends Quest { // NPCs private static final int SHILENS_EVIL_THOUGHTS = 27396; private static final int ORVEN = 30857; private static final int WOOD = 32593; private static final int LEOPARD = 32594; private static final int LAWRENCE = 32595; private static final int SOPHIA = 32596; // Items private static final int MYSTERIOUS_HAND_WRITTEN_TEXT = 13829; private static final int SCULPTURE_OF_DOUBT = 14354; // Misc private static final int MIN_LEVEL = 79; private boolean isBusy = false; public Q00197_SevenSignsTheSacredBookOfSeal() { super(197, Q00197_SevenSignsTheSacredBookOfSeal.class.getSimpleName(), "Seven Signs, the Sacred Book of Seal"); addStartNpc(WOOD); addTalkId(WOOD, ORVEN, LEOPARD, LAWRENCE, SOPHIA); addKillId(SHILENS_EVIL_THOUGHTS); registerQuestItems(MYSTERIOUS_HAND_WRITTEN_TEXT, SCULPTURE_OF_DOUBT); } @Override public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) { if ((npc.getId() == SHILENS_EVIL_THOUGHTS) && "despawn".equals(event)) { if (!npc.isDead()) { isBusy = false; npc.broadcastPacket(new NpcSay(npc.getObjectId(), Say2.NPC_ALL, npc.getId(), NpcStringId.NEXT_TIME_YOU_WILL_NOT_ESCAPE)); npc.deleteMe(); } return super.onAdvEvent(event, npc, player); } final QuestState st = getQuestState(player, false); if (st == null) { return null; } String htmltext = null; switch (event) { case "32593-02.htm": case "32593-03.htm": { htmltext = event; break; } case "32593-04.html": { st.startQuest(); htmltext = event; break; } case "32593-08.html": { if (st.isCond(6) && st.hasQuestItems(MYSTERIOUS_HAND_WRITTEN_TEXT, SCULPTURE_OF_DOUBT)) { htmltext = event; } break; } case "32593-09.html": { if (st.isCond(6)) { if (player.getLevel() >= MIN_LEVEL) { st.addExpAndSp(52518015, 5817677); st.exitQuest(false, true); htmltext = event; } else { htmltext = "level_check.html"; } } break; } case "30857-02.html": case "30857-03.html": { if (st.isCond(1)) { htmltext = event; } break; } case "30857-04.html": { if (st.isCond(1)) { st.setCond(2, true); htmltext = event; } break; } case "32594-02.html": { if (st.isCond(2)) { htmltext = event; } break; } case "32594-03.html": { if (st.isCond(2)) { st.setCond(3, true); htmltext = event; } break; } case "32595-02.html": case "32595-03.html": { if (st.isCond(3)) { htmltext = event; } break; } case "32595-04.html": { if (st.isCond(3)) { isBusy = true; npc.broadcastPacket(new NpcSay(npc.getObjectId(), Say2.NPC_ALL, npc.getId(), NpcStringId.S1_THAT_STRANGER_MUST_BE_DEFEATED_HERE_IS_THE_ULTIMATE_HELP).addStringParameter(player.getName())); final L2MonsterInstance monster = (L2MonsterInstance) addSpawn(SHILENS_EVIL_THOUGHTS, 152520, -57502, -3408, 0, false, 0, false); monster.broadcastPacket(new NpcSay(monster.getObjectId(), Say2.NPC_ALL, monster.getId(), NpcStringId.YOU_ARE_NOT_THE_OWNER_OF_THAT_ITEM)); monster.setRunning(); monster.addDamageHate(player, 0, 999); monster.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, player); startQuestTimer("despawn", 300000, monster, null); } break; } case "32595-06.html": case "32595-07.html": case "32595-08.html": { if (st.isCond(4) && st.hasQuestItems(SCULPTURE_OF_DOUBT)) { htmltext = event; } break; } case "32595-09.html": { if (st.isCond(4) && st.hasQuestItems(SCULPTURE_OF_DOUBT)) { st.setCond(5, true); htmltext = event; } break; } case "32596-02.html": case "32596-03.html": { if (st.isCond(5) && st.hasQuestItems(SCULPTURE_OF_DOUBT)) { htmltext = event; } break; } case "32596-04.html": { if (st.isCond(5) && st.hasQuestItems(SCULPTURE_OF_DOUBT)) { st.giveItems(MYSTERIOUS_HAND_WRITTEN_TEXT, 1); st.setCond(6, true); htmltext = event; } break; } } return htmltext; } @Override public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) { final L2PcInstance partyMember = getRandomPartyMember(player, 3); if (partyMember == null) { return null; } final QuestState st = getQuestState(partyMember, false); if (npc.isInsideRadius(partyMember, 1500, true, false)) { st.giveItems(SCULPTURE_OF_DOUBT, 1); st.playSound(QuestSound.ITEMSOUND_QUEST_FINISH); st.setCond(4); } isBusy = false; cancelQuestTimers("despawn"); npc.broadcastPacket(new NpcSay(npc.getObjectId(), Say2.NPC_ALL, npc.getId(), NpcStringId.S1_YOU_MAY_HAVE_WON_THIS_TIME_BUT_NEXT_TIME_I_WILL_SURELY_CAPTURE_YOU).addStringParameter(partyMember.getName())); return super.onKill(npc, player, isSummon); } @Override public String onTalk(L2Npc npc, L2PcInstance player) { QuestState st = getQuestState(player, true); String htmltext = getNoQuestMsg(player); switch (st.getState()) { case State.COMPLETED: { htmltext = getAlreadyCompletedMsg(player); break; } case State.CREATED: { if (npc.getId() == WOOD) { st = player.getQuestState(Q00196_SevenSignsSealOfTheEmperor.class.getSimpleName()); htmltext = ((player.getLevel() >= MIN_LEVEL) && (st != null) && (st.isCompleted())) ? "32593-01.htm" : "32593-05.html"; } break; } case State.STARTED: { switch (npc.getId()) { case WOOD: { if ((st.getCond() > 0) && (st.getCond() < 6)) { htmltext = "32593-06.html"; } else if (st.isCond(6)) { if (st.hasQuestItems(MYSTERIOUS_HAND_WRITTEN_TEXT, SCULPTURE_OF_DOUBT)) { htmltext = "32593-07.html"; } } break; } case ORVEN: { if (st.isCond(1)) { htmltext = "30857-01.html"; } else if (st.getCond() >= 2) { htmltext = "30857-05.html"; } break; } case LEOPARD: { if (st.isCond(2)) { htmltext = "32594-01.html"; } else if (st.getCond() >= 3) { htmltext = "32594-04.html"; } break; } case LAWRENCE: { if (st.isCond(3)) { if (isBusy) { htmltext = "32595-05.html"; } else { htmltext = "32595-01.html"; } } else if (st.isCond(4)) { if (st.hasQuestItems(SCULPTURE_OF_DOUBT)) { htmltext = "32595-06.html"; } } else if (st.getCond() >= 5) { if (st.hasQuestItems(SCULPTURE_OF_DOUBT)) { htmltext = "32595-10.html"; } } break; } case SOPHIA: { if (st.isCond(5)) { if (st.hasQuestItems(SCULPTURE_OF_DOUBT)) { htmltext = "32596-01.html"; } } else if (st.getCond() >= 6) { if (st.hasQuestItems(SCULPTURE_OF_DOUBT, MYSTERIOUS_HAND_WRITTEN_TEXT)) { htmltext = "32596-05.html"; } } break; } } break; } } return htmltext; } }