/* * 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.Q00509_AClansFame; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; import com.l2jserver.gameserver.enums.QuestSound; import com.l2jserver.gameserver.model.L2Clan; 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.SystemMessageId; import com.l2jserver.gameserver.network.serverpackets.PledgeShowInfoUpdate; import com.l2jserver.gameserver.network.serverpackets.RadarControl; import com.l2jserver.gameserver.network.serverpackets.SystemMessage; /** * A Clan's Fame (509) * @author Adry_85 */ public class Q00509_AClansFame extends Quest { // NPC private static final int VALDIS = 31331; private static final Map> REWARD_POINTS = new HashMap<>(); static { REWARD_POINTS.put(1, Arrays.asList(25290, 8489, 1378)); // Daimon The White-Eyed REWARD_POINTS.put(2, Arrays.asList(25293, 8490, 1378)); // Hestia, Guardian Deity Of The Hot Springs REWARD_POINTS.put(3, Arrays.asList(25523, 8491, 1070)); // Plague Golem REWARD_POINTS.put(4, Arrays.asList(25322, 8492, 782)); // Demon's Agent Falston } private static final int[] RAID_BOSS = { 25290, 25293, 25523, 25322 }; public Q00509_AClansFame() { super(509, Q00509_AClansFame.class.getSimpleName(), "A Clan's Fame"); addStartNpc(VALDIS); addTalkId(VALDIS); addKillId(RAID_BOSS); } @Override public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) { QuestState st = getQuestState(player, false); if (st == null) { return getNoQuestMsg(player); } switch (event) { case "31331-0.html": st.startQuest(); break; case "31331-1.html": st.set("raid", "1"); player.sendPacket(new RadarControl(0, 2, 186304, -43744, -3193)); break; case "31331-2.html": st.set("raid", "2"); player.sendPacket(new RadarControl(0, 2, 134672, -115600, -1216)); break; case "31331-3.html": st.set("raid", "3"); player.sendPacket(new RadarControl(0, 2, 170000, -60000, -3500)); break; case "31331-4.html": st.set("raid", "4"); player.sendPacket(new RadarControl(0, 2, 93296, -75104, -1824)); break; case "31331-5.html": st.exitQuest(true, true); break; } return event; } @Override public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) { if (player.getClan() == null) { return null; } QuestState st = null; if (player.isClanLeader()) { st = player.getQuestState(getName()); } else { L2PcInstance pleader = player.getClan().getLeader().getPlayerInstance(); if ((pleader != null) && player.isInsideRadius(pleader, 1500, true, false)) { st = pleader.getQuestState(getName()); } } if ((st != null) && st.isStarted()) { int raid = st.getInt("raid"); if (REWARD_POINTS.containsKey(raid)) { if ((npc.getId() == REWARD_POINTS.get(raid).get(0)) && !st.hasQuestItems(REWARD_POINTS.get(raid).get(1))) { st.rewardItems(REWARD_POINTS.get(raid).get(1), 1); st.playSound(QuestSound.ITEMSOUND_QUEST_ITEMGET); } } } return null; } @Override public String onTalk(L2Npc npc, L2PcInstance player) { String htmltext = getNoQuestMsg(player); final QuestState st = getQuestState(player, true); if (st == null) { return htmltext; } L2Clan clan = player.getClan(); switch (st.getState()) { case State.CREATED: htmltext = ((clan == null) || !player.isClanLeader() || (clan.getLevel() < 6)) ? "31331-0a.htm" : "31331-0b.htm"; break; case State.STARTED: if ((clan == null) || !player.isClanLeader()) { st.exitQuest(true); return "31331-6.html"; } int raid = st.getInt("raid"); if (REWARD_POINTS.containsKey(raid)) { if (st.hasQuestItems(REWARD_POINTS.get(raid).get(1))) { htmltext = "31331-" + raid + "b.html"; st.playSound(QuestSound.ITEMSOUND_QUEST_FANFARE_1); st.takeItems(REWARD_POINTS.get(raid).get(1), -1); final int rep = REWARD_POINTS.get(raid).get(2); clan.addReputationScore(rep, true); player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.CLAN_QUEST_COMPLETED_AND_S1_POINTS_GAINED).addInt(rep)); clan.broadcastToOnlineMembers(new PledgeShowInfoUpdate(clan)); } else { htmltext = "31331-" + raid + "a.html"; } } else { htmltext = "31331-0.html"; } break; default: break; } return htmltext; } }