123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- /*
- * 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.Q00143_FallenAngelRequestOfDusk;
- 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;
- /**
- * Fallen Angel - Request of Dusk (143)
- * @author Nono
- */
- public class Q00143_FallenAngelRequestOfDusk extends Quest
- {
- // NPCs
- private static final int TOBIAS = 30297;
- private static final int CASIAN = 30612;
- private static final int NATOOLS = 30894;
- private static final int ROCK = 32368;
- private static final int ANGEL = 32369;
- // Items
- private static final int SEALED_PROPHECY_PATH_OF_THE_GOD = 10354;
- private static final int PROPHECY_PATH_OF_THE_GOD = 10355;
- private static final int EMPTY_SOUND_CRYSTAL = 10356;
- private static final int ANGEL_MEDICINE = 10357;
- private static final int ANGELS_MESSAGE = 10358;
- // Misc
- private static final int MAX_REWARD_LEVEL = 43;
- private boolean isAngelSpawned = false;
-
- public Q00143_FallenAngelRequestOfDusk()
- {
- super(143, Q00143_FallenAngelRequestOfDusk.class.getSimpleName(), "Fallen Angel - Request of Dusk");
- addTalkId(NATOOLS, TOBIAS, CASIAN, ROCK, ANGEL);
- registerQuestItems(SEALED_PROPHECY_PATH_OF_THE_GOD, PROPHECY_PATH_OF_THE_GOD, EMPTY_SOUND_CRYSTAL, ANGEL_MEDICINE, ANGELS_MESSAGE);
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- final QuestState st = getQuestState(player, false);
- if (st == null)
- {
- return null;
- }
-
- String htmltext = event;
- switch (event)
- {
- case "30894-02.html":
- case "30297-04.html":
- case "30612-05.html":
- case "30612-06.html":
- case "30612-07.html":
- case "30612-08.html":
- case "32369-04.html":
- case "32369-05.html":
- case "32369-07.html":
- case "32369-08.html":
- case "32369-09.html":
- case "32369-10.html":
- break;
- case "30894-01.html":
- st.startQuest();
- break;
- case "30894-03.html":
- st.setCond(2, true);
- st.giveItems(SEALED_PROPHECY_PATH_OF_THE_GOD, 1);
- break;
- case "30297-03.html":
- st.takeItems(SEALED_PROPHECY_PATH_OF_THE_GOD, -1);
- st.set("talk", "1");
- break;
- case "30297-05.html":
- st.unset("talk");
- st.setCond(3, true);
- st.giveItems(PROPHECY_PATH_OF_THE_GOD, 1);
- st.giveItems(EMPTY_SOUND_CRYSTAL, 1);
- break;
- case "30612-03.html":
- st.takeItems(PROPHECY_PATH_OF_THE_GOD, -1);
- st.set("talk", "1");
- break;
- case "30612-09.html":
- st.unset("talk");
- st.setCond(4, true);
- st.giveItems(ANGEL_MEDICINE, 1);
- break;
- case "32368-04.html":
- if (isAngelSpawned)
- {
- return "32368-03.html";
- }
- addSpawn(ANGEL, npc.getX() + 100, npc.getY() + 100, npc.getZ(), 0, false, 120000);
- startQuestTimer("despawn", 120000, null, player);
- isAngelSpawned = true;
- break;
- case "32369-03.html":
- st.takeItems(ANGEL_MEDICINE, -1);
- st.set("talk", "1");
- break;
- case "32369-06.html":
- st.set("talk", "2");
- break;
- case "32369-11.html":
- st.unset("talk");
- st.takeItems(EMPTY_SOUND_CRYSTAL, -1);
- st.giveItems(ANGELS_MESSAGE, 1);
- st.setCond(5, true);
- npc.deleteMe();
- isAngelSpawned = false;
- break;
- case "despawn":
- if (isAngelSpawned)
- {
- isAngelSpawned = false;
- }
- default:
- htmltext = null;
- 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 NATOOLS:
- switch (st.getState())
- {
- case State.STARTED:
- switch (st.getCond())
- {
- case 1:
- htmltext = "30894-01.html";
- break;
- default:
- htmltext = "30894-04.html";
- break;
- }
- break;
- case State.COMPLETED:
- htmltext = getAlreadyCompletedMsg(player);
- break;
- }
- break;
- case TOBIAS:
- if (st.isStarted())
- {
- switch (st.getCond())
- {
- case 1:
- htmltext = "30297-01.html";
- break;
- case 2:
- htmltext = (st.isSet("talk")) ? "30297-04.html" : "30297-02.html";
- break;
- case 3:
- case 4:
- htmltext = "30297-06.html";
- break;
- case 5:
- st.giveAdena(89046, true);
- if (player.getLevel() <= MAX_REWARD_LEVEL)
- {
- st.addExpAndSp(223036, 13901);
- }
- st.exitQuest(false, true);
- htmltext = "30297-07.html";
- break;
- }
- }
- break;
- case CASIAN:
- if (st.isStarted())
- {
- switch (st.getCond())
- {
- case 1:
- case 2:
- htmltext = "30612-01.html";
- break;
- case 3:
- htmltext = (st.isSet("talk")) ? "30612-04.html" : "30612-02.html";
- break;
- default:
- htmltext = "30612-10.html";
- break;
- }
- }
- break;
- case ROCK:
- if (st.isStarted())
- {
- switch (st.getCond())
- {
- case 1:
- case 2:
- case 3:
- htmltext = "32368-01.html";
- break;
- case 4:
- htmltext = "32368-02.html";
- break;
- case 5:
- htmltext = "32368-05.html";
- break;
- }
- }
- break;
- case ANGEL:
- if (st.isStarted())
- {
- switch (st.getCond())
- {
- case 1:
- case 2:
- case 3:
- htmltext = "32369-01.html";
- break;
- case 4:
- if (st.getInt("talk") == 1)
- {
- htmltext = "32369-04.html";
- }
- else if (st.getInt("talk") == 2)
- {
- htmltext = "32369-07.html";
- }
- else
- {
- htmltext = "32369-02.html";
- }
- break;
- }
- }
- break;
- }
- return htmltext;
- }
- }
|