/* * 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.Q00122_OminousNews; 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; /** * Ominous News (122)
* Original Jython script by Polo. * @author malyelfik */ public class Q00122_OminousNews extends Quest { // NPCs private static final int MOIRA = 31979; private static final int KARUDA = 32017; public Q00122_OminousNews() { super(122, Q00122_OminousNews.class.getSimpleName(), "Ominous News"); addStartNpc(MOIRA); addTalkId(MOIRA, KARUDA); } @Override public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) { final QuestState st = getQuestState(player, false); if (st == null) { return getNoQuestMsg(player); } switch (event) { case "31979-02.htm": st.startQuest(); break; case "32017-02.html": st.giveAdena(8923, true); st.addExpAndSp(45151, 2310); st.exitQuest(false, true); break; } return event; } @Override public String onTalk(L2Npc npc, L2PcInstance player) { String htmltext = getNoQuestMsg(player); final QuestState st = getQuestState(player, true); if (st == null) { return htmltext; } switch (npc.getId()) { case MOIRA: switch (st.getState()) { case State.CREATED: htmltext = (player.getLevel() >= 20) ? "31979-01.htm" : "31979-00.htm"; break; case State.STARTED: htmltext = "31979-03.html"; break; case State.COMPLETED: htmltext = getAlreadyCompletedMsg(player); break; } break; case KARUDA: if (st.isStarted()) { htmltext = "32017-01.html"; } break; } return htmltext; } }