123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- /*
- * 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.Q00603_DaimonTheWhiteEyedPart1;
- 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;
- import com.l2jserver.gameserver.model.quest.State;
- /**
- * Daimon the White-Eyed - Part 1 (603)
- * @author Pandragon
- */
- public final class Q00603_DaimonTheWhiteEyedPart1 extends Quest
- {
- // NPC
- private static final int EYE_OF_ARGOS = 31683;
- private static final int TABLET_1 = 31548;
- private static final int TABLET_2 = 31549;
- private static final int TABLET_3 = 31550;
- private static final int TABLET_4 = 31551;
- private static final int TABLET_5 = 31552;
- // Items
- private static final int SPIRIT_OF_DARKNESS = 7190;
- private static final int BROKEN_CRYSTAL = 7191;
- // Monsters
- private final Map<Integer, Double> MONSTER_CHANCES = new HashMap<>();
- {
- MONSTER_CHANCES.put(21297, 0.5); // Canyon Bandersnatch Slave
- MONSTER_CHANCES.put(21299, 0.519); // Buffalo Slave
- MONSTER_CHANCES.put(21304, 0.673); // Grendel Slave
- }
- // Reward
- private static final int UNFINISHED_CRYSTAL = 7192;
- // Misc
- private static final int MIN_LVL = 73;
-
- public Q00603_DaimonTheWhiteEyedPart1()
- {
- super(603, Q00603_DaimonTheWhiteEyedPart1.class.getSimpleName(), "Daimon the White-Eyed - Part 1");
- addStartNpc(EYE_OF_ARGOS);
- addTalkId(EYE_OF_ARGOS, TABLET_1, TABLET_2, TABLET_3, TABLET_4, TABLET_5);
- addKillId(MONSTER_CHANCES.keySet());
- registerQuestItems(SPIRIT_OF_DARKNESS, BROKEN_CRYSTAL);
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- final QuestState qs = getQuestState(player, false);
- String htmltext = null;
- if (qs == null)
- {
- return htmltext;
- }
-
- switch (event)
- {
- case "31683-03.htm":
- {
- if (qs.isCreated())
- {
- qs.set("tablet_" + TABLET_1, 0);
- qs.set("tablet_" + TABLET_2, 0);
- qs.set("tablet_" + TABLET_3, 0);
- qs.set("tablet_" + TABLET_4, 0);
- qs.set("tablet_" + TABLET_5, 0);
- qs.startQuest();
- htmltext = event;
- }
- break;
- }
- case "31548-02.html":
- case "31549-02.html":
- case "31550-02.html":
- case "31551-02.html":
- case "31552-02.html":
- {
- if (qs.getCond() < 6)
- {
- giveItems(player, BROKEN_CRYSTAL, 1);
- qs.set("TABLET_" + npc.getId(), 1);
- qs.setCond(qs.getCond() + 1, true);
- htmltext = event;
- }
- break;
- }
- case "31683-06.html":
- {
- if (qs.isCond(6) && (getQuestItemsCount(player, BROKEN_CRYSTAL) >= 5))
- {
- takeItems(player, BROKEN_CRYSTAL, -1);
- qs.setCond(7, true);
- htmltext = event;
- }
- break;
- }
- case "31683-10.html":
- {
- if (qs.isCond(8))
- {
- if (getQuestItemsCount(player, SPIRIT_OF_DARKNESS) >= 200)
- {
- takeItems(player, SPIRIT_OF_DARKNESS, -1);
- giveItems(player, UNFINISHED_CRYSTAL, 1);
- qs.exitQuest(true, true);
- htmltext = event;
- }
- else
- {
- htmltext = "31683-11.html";
- }
- }
- break;
- }
- }
- return htmltext;
- }
-
- @Override
- public String onTalk(L2Npc npc, L2PcInstance talker)
- {
- final QuestState qs = getQuestState(talker, true);
- String htmltext = getNoQuestMsg(talker);
- switch (qs.getState())
- {
- case State.CREATED:
- {
- if (npc.getId() == EYE_OF_ARGOS)
- {
- htmltext = ((talker.getLevel() < MIN_LVL) ? "31683-02.html" : "31683-01.htm");
- }
- break;
- }
- case State.STARTED:
- {
- if (npc.getId() == EYE_OF_ARGOS)
- {
- switch (qs.getCond())
- {
- case 1:
- case 2:
- case 3:
- case 4:
- case 5:
- {
- htmltext = "31683-04.html";
- break;
- }
- case 6:
- {
- htmltext = "31683-05.html";
- break;
- }
- case 7:
- {
- htmltext = "31683-07.html";
- break;
- }
- case 8:
- {
- htmltext = "31683-08.html";
- break;
- }
- }
- }
- else if (qs.getInt("TABLET_" + npc.getId()) == 0)
- {
- htmltext = npc.getId() + "-01.html";
- }
- else
- {
- htmltext = npc.getId() + "-03.html";
- }
- break;
- }
- case State.COMPLETED:
- {
- htmltext = getAlreadyCompletedMsg(talker);
- break;
- }
- }
- return htmltext;
- }
-
- @Override
- public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
- {
- final QuestState qs = getRandomPartyMemberState(killer, 7, 3, npc);
- if (qs != null)
- {
- if (giveItemRandomly(qs.getPlayer(), npc, SPIRIT_OF_DARKNESS, 1, 200, MONSTER_CHANCES.get(npc.getId()), true))
- {
- qs.setCond(8, true);
- }
- }
- return super.onKill(npc, killer, isSummon);
- }
- }
|