/* * 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.Q00431_WeddingMarch; import com.l2jserver.gameserver.enums.QuestSound; 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; /** * Wedding March (431)
* Original Jython script by CubicVirtuoso. * @author eyjine */ public class Q00431_WeddingMarch extends Quest { // NPC private static final int KANTABILON = 31042; // Monsters private static final int[] MOBS = { 20786, // Lienrik 20787, // Lienrik Lad }; // Items private static final int SILVER_CRYSTAL = 7540; private static final int WEDDING_ECHO_CRYSTAL = 7062; // Misc private static final int MIN_LEVEL = 38; private static final int CRYSTAL_COUNT = 50; public Q00431_WeddingMarch() { super(431, Q00431_WeddingMarch.class.getSimpleName(), "Wedding March"); addStartNpc(KANTABILON); addTalkId(KANTABILON); addKillId(MOBS); registerQuestItems(SILVER_CRYSTAL); } @Override public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) { final QuestState st = getQuestState(player, false); if (st == null) { return null; } String htmltext = null; if (event.equalsIgnoreCase("31042-02.htm")) { st.startQuest(); htmltext = event; } else if (event.equalsIgnoreCase("31042-06.html")) { if (st.getQuestItemsCount(SILVER_CRYSTAL) < CRYSTAL_COUNT) { return "31042-05.html"; } st.giveItems(WEDDING_ECHO_CRYSTAL, 25); st.exitQuest(true, true); htmltext = event; } return htmltext; } @Override public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon) { final L2PcInstance member = getRandomPartyMember(player, 1); if (member != null) { final QuestState st = getQuestState(member, false); if (getRandomBoolean()) { st.giveItems(SILVER_CRYSTAL, 1); if (st.getQuestItemsCount(SILVER_CRYSTAL) >= CRYSTAL_COUNT) { st.setCond(2, true); } else { st.playSound(QuestSound.ITEMSOUND_QUEST_ITEMGET); } } } return super.onKill(npc, player, isSummon); } @Override public String onTalk(L2Npc npc, L2PcInstance player) { String htmltext = getNoQuestMsg(player); final QuestState st = getQuestState(player, true); if (st == null) { return htmltext; } switch (st.getState()) { case State.CREATED: htmltext = (player.getLevel() >= MIN_LEVEL) ? "31042-01.htm" : "31042-00.htm"; break; case State.STARTED: htmltext = (st.isCond(1)) ? "31042-03.html" : "31042-04.html"; break; } return htmltext; } }