123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- /*
- * 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 <http://www.gnu.org/licenses/>.
- */
- package quests.Q00026_TiredOfWaiting;
- import java.util.HashMap;
- import java.util.Map;
- 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;
- /**
- * Tired Of Waiting (26)
- * @author corbin12
- */
- public final class Q00026_TiredOfWaiting extends Quest
- {
- // NPCs
- private static final int ISAEL_SILVERSHADOW = 30655;
- private static final int KITZKA = 31045;
- // Items
- private static final int DELIVERY_BOX = 17281;
- private static final Map<String, Integer> REWARDS = new HashMap<>();
- static
- {
- REWARDS.put("31045-10.html", 17248); // Large Dragon Bone
- REWARDS.put("31045-11.html", 17266); // Will of Antharas
- REWARDS.put("31045-12.html", 17267); // Sealed Blood Crystal
- }
-
- public Q00026_TiredOfWaiting()
- {
- super(26, Q00026_TiredOfWaiting.class.getSimpleName(), "Tired of Waiting");
- addStartNpc(ISAEL_SILVERSHADOW);
- addTalkId(ISAEL_SILVERSHADOW, KITZKA);
- registerQuestItems(DELIVERY_BOX);
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- String htmltext = null;
- final QuestState st = getQuestState(player, false);
- if (st == null)
- {
- return htmltext;
- }
-
- switch (event)
- {
- case "30655-02.htm":
- case "30655-03.htm":
- case "30655-05.html":
- case "30655-06.html":
- case "31045-02.html":
- case "31045-03.html":
- case "31045-05.html":
- case "31045-06.html":
- case "31045-07.html":
- case "31045-08.html":
- case "31045-09.html":
- htmltext = event;
- break;
- case "30655-04.html":
- if (st.isCreated())
- {
- st.giveItems(DELIVERY_BOX, 1);
- st.startQuest();
- htmltext = event;
- }
- break;
- case "31045-04.html":
- if (st.isStarted())
- {
- st.takeItems(DELIVERY_BOX, -1);
- htmltext = event;
- }
- break;
- case "31045-10.html":
- case "31045-11.html":
- case "31045-12.html":
- if (st.isStarted())
- {
- st.giveItems(REWARDS.get(event), 1);
- st.exitQuest(false, true);
- htmltext = event;
- }
- break;
- }
- return htmltext;
- }
-
- @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 ISAEL_SILVERSHADOW:
- if (st.isCreated())
- {
- htmltext = ((player.getLevel() >= 80) ? "30655-01.htm" : "30655-00.html");
- }
- else if (st.isStarted())
- {
- htmltext = "30655-07.html";
- }
- else
- {
- htmltext = "30655-08.html";
- }
- break;
- case KITZKA:
- if (st.isStarted())
- {
- htmltext = (st.hasQuestItems(DELIVERY_BOX) ? "31045-01.html" : "31045-09.html");
- }
- break;
- }
- return htmltext;
- }
- }
|