/* * 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.Q00453_NotStrongEnoughAlone; import quests.Q10282_ToTheSeedOfAnnihilation.Q10282_ToTheSeedOfAnnihilation; import com.l2jserver.gameserver.enums.QuestSound; import com.l2jserver.gameserver.enums.QuestType; import com.l2jserver.gameserver.model.actor.L2Npc; 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.serverpackets.ExQuestNpcLogList; import com.l2jserver.gameserver.util.Util; /** * Not Strong Enough Alone (453) * @author malyelfik */ public class Q00453_NotStrongEnoughAlone extends Quest { // NPC private static final int KLEMIS = 32734; private static final int[] MONSTER1 = { 22746, 22747, 22748, 22749, 22750, 22751, 22752, 22753 }; private static final int[] MONSTER2 = { 22754, 22755, 22756, 22757, 22758, 22759 }; private static final int[] MONSTER3 = { 22760, 22761, 22762, 22763, 22764, 22765 }; // Reward private static final int[][] REWARD = { { 15815, 15816, 15817, 15818, 15819, 15820, 15821, 15822, 15823, 15824, 15825 }, { 15634, 15635, 15636, 15637, 15638, 15639, 15640, 15641, 15642, 15643, 15644 } }; public Q00453_NotStrongEnoughAlone() { super(453, Q00453_NotStrongEnoughAlone.class.getSimpleName(), "Not Strong Enought Alone"); addStartNpc(KLEMIS); addTalkId(KLEMIS); addKillId(MONSTER1); addKillId(MONSTER2); addKillId(MONSTER3); } private void increaseKill(L2PcInstance player, L2Npc npc) { QuestState st = getQuestState(player, false); if (st == null) { return; } int npcId = npc.getId(); if (Util.checkIfInRange(1500, npc, player, false)) { final ExQuestNpcLogList log = new ExQuestNpcLogList(getId()); if (Util.contains(MONSTER1, npcId) && st.isCond(2)) { if (npcId == MONSTER1[4]) { npcId = MONSTER1[0]; } else if (npcId == MONSTER1[5]) { npcId = MONSTER1[1]; } else if (npcId == MONSTER1[6]) { npcId = MONSTER1[2]; } else if (npcId == MONSTER1[7]) { npcId = MONSTER1[3]; } int i = st.getInt(String.valueOf(npcId)); if (i < 15) { st.set(Integer.toString(npcId), Integer.toString(i + 1)); st.playSound(QuestSound.ITEMSOUND_QUEST_ITEMGET); } checkProgress(st, 15, MONSTER1[0], MONSTER1[1], MONSTER1[2], MONSTER1[3]); log.addNpc(MONSTER1[0], st.getInt(String.valueOf(MONSTER1[0]))); log.addNpc(MONSTER1[1], st.getInt(String.valueOf(MONSTER1[1]))); log.addNpc(MONSTER1[2], st.getInt(String.valueOf(MONSTER1[2]))); log.addNpc(MONSTER1[3], st.getInt(String.valueOf(MONSTER1[3]))); } else if (Util.contains(MONSTER2, npcId) && st.isCond(3)) { if (npcId == MONSTER2[3]) { npcId = MONSTER2[0]; } else if (npcId == MONSTER2[4]) { npcId = MONSTER2[1]; } else if (npcId == MONSTER2[5]) { npcId = MONSTER2[2]; } int i = st.getInt(String.valueOf(npcId)); if (i < 20) { st.set(Integer.toString(npcId), Integer.toString(i + 1)); st.playSound(QuestSound.ITEMSOUND_QUEST_ITEMGET); } checkProgress(st, 20, MONSTER2[0], MONSTER2[1], MONSTER2[2]); log.addNpc(MONSTER2[0], st.getInt(String.valueOf(MONSTER2[0]))); log.addNpc(MONSTER2[1], st.getInt(String.valueOf(MONSTER2[1]))); log.addNpc(MONSTER2[2], st.getInt(String.valueOf(MONSTER2[2]))); } else if (Util.contains(MONSTER3, npcId) && st.isCond(4)) { if (npcId == MONSTER3[3]) { npcId = MONSTER3[0]; } else if (npcId == MONSTER3[4]) { npcId = MONSTER3[1]; } else if (npcId == MONSTER3[5]) { npcId = MONSTER3[2]; } int i = st.getInt(String.valueOf(npcId)); if (i < 20) { st.set(Integer.toString(npcId), Integer.toString(i + 1)); st.playSound(QuestSound.ITEMSOUND_QUEST_ITEMGET); } checkProgress(st, 20, MONSTER3[0], MONSTER3[1], MONSTER3[2]); log.addNpc(MONSTER3[0], st.getInt(String.valueOf(MONSTER3[0]))); log.addNpc(MONSTER3[1], st.getInt(String.valueOf(MONSTER3[1]))); log.addNpc(MONSTER3[2], st.getInt(String.valueOf(MONSTER3[2]))); } player.sendPacket(log); } } @Override public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) { String htmltext = event; QuestState st = getQuestState(player, false); if (st == null) { return htmltext; } if (event.equalsIgnoreCase("32734-06.htm")) { st.startQuest(); } else if (event.equalsIgnoreCase("32734-07.html")) { st.setCond(2, true); } else if (event.equalsIgnoreCase("32734-08.html")) { st.setCond(3, true); } else if (event.equalsIgnoreCase("32734-09.html")) { st.setCond(4, true); } return htmltext; } @Override public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) { if (player.getParty() != null) { for (L2PcInstance member : player.getParty().getMembers()) { increaseKill(member, npc); } } else { increaseKill(player, npc); } return null; } @Override public String onTalk(L2Npc npc, L2PcInstance player) { String htmltext = getNoQuestMsg(player); final QuestState st = getQuestState(player, true); QuestState prev = player.getQuestState(Q10282_ToTheSeedOfAnnihilation.class.getSimpleName()); if (st == null) { return htmltext; } switch (st.getState()) { case State.CREATED: if ((player.getLevel() >= 84) && (prev != null) && prev.isCompleted()) { htmltext = "32734-01.htm"; } else { htmltext = "32734-03.html"; } break; case State.STARTED: switch (st.getCond()) { case 1: { htmltext = "32734-10.html"; break; } case 2: { htmltext = "32734-11.html"; break; } case 3: { htmltext = "32734-12.html"; break; } case 4: { htmltext = "32734-13.html"; break; } case 5: { st.giveItems(REWARD[getRandom(REWARD.length)][getRandom(REWARD[0].length)], 1); st.exitQuest(QuestType.DAILY, true); htmltext = "32734-14.html"; break; } } break; case State.COMPLETED: if (!st.isNowAvailable()) { htmltext = "32734-02.htm"; } else { st.setState(State.CREATED); if ((player.getLevel() >= 84) && (prev != null) && (prev.getState() == State.COMPLETED)) { htmltext = "32734-01.htm"; } else { htmltext = "32734-03.html"; } } break; } return htmltext; } private static void checkProgress(QuestState st, int count, int... mobs) { for (int mob : mobs) { if (st.getInt(String.valueOf(mob)) < count) { return; } } st.setCond(5, true); } }