123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- /*
- * 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.Q00412_PathOfTheDarkWizard;
- 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.base.ClassId;
- import com.l2jserver.gameserver.model.quest.Quest;
- import com.l2jserver.gameserver.model.quest.QuestState;
- import com.l2jserver.gameserver.network.serverpackets.SocialAction;
- import com.l2jserver.gameserver.util.Util;
- /**
- * Path Of The Dark Wizard (412)
- * @author ivantotov
- */
- public final class Q00412_PathOfTheDarkWizard extends Quest
- {
- // NPCs
- private static final int CHARKEREN = 30415;
- private static final int ANNIKA = 30418;
- private static final int ARKENIA = 30419;
- private static final int VARIKA = 30421;
- // Items
- private static final int SEEDS_OF_ANGER = 1253;
- private static final int SEEDS_OF_DESPAIR = 1254;
- private static final int SEEDS_OF_HORROR = 1255;
- private static final int SEEDS_OF_LUNACY = 1256;
- private static final int FAMILYS_REMAINS = 1257;
- private static final int KNEE_BONE = 1259;
- private static final int HEART_OF_LUNACY = 1260;
- private static final int LUCKY_KEY = 1277;
- private static final int CANDLE = 1278;
- private static final int HUB_SCENT = 1279;
- // Reward
- private static final int JEWEL_OF_DARKNESS = 1261;
- // Monster
- private static final int MARSH_ZOMBIE = 20015;
- private static final int MISERY_SKELETON = 20022;
- private static final int SKELETON_SCOUT = 20045;
- private static final int SKELETON_HUNTER = 20517;
- private static final int SKELETON_HUNTER_ARCHER = 20518;
- // Misc
- private static final int MIN_LEVEL = 18;
-
- public Q00412_PathOfTheDarkWizard()
- {
- super(412, Q00412_PathOfTheDarkWizard.class.getSimpleName(), "Path Of The Dark Wizard");
- addStartNpc(VARIKA);
- addTalkId(VARIKA, CHARKEREN, ANNIKA, ARKENIA);
- addKillId(MARSH_ZOMBIE, MISERY_SKELETON, SKELETON_SCOUT, SKELETON_HUNTER, SKELETON_HUNTER_ARCHER);
- registerQuestItems(SEEDS_OF_ANGER, SEEDS_OF_DESPAIR, SEEDS_OF_HORROR, SEEDS_OF_LUNACY, FAMILYS_REMAINS, KNEE_BONE, HEART_OF_LUNACY, LUCKY_KEY, CANDLE, HUB_SCENT);
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- final QuestState qs = getQuestState(player, false);
- if (qs == null)
- {
- return null;
- }
-
- String htmltext = null;
- switch (event)
- {
- case "ACCEPT":
- {
- if (player.getClassId() == ClassId.darkMage)
- {
- if (player.getLevel() >= MIN_LEVEL)
- {
- if (hasQuestItems(player, JEWEL_OF_DARKNESS))
- {
- htmltext = "30421-04.htm";
- }
- else
- {
- qs.startQuest();
- giveItems(player, SEEDS_OF_DESPAIR, 1);
- htmltext = "30421-05.htm";
- }
- }
- else
- {
- htmltext = "30421-02.htm";
- }
- }
- else if (player.getClassId() == ClassId.darkWizard)
- {
- htmltext = "30421-02a.htm";
- }
- else
- {
- htmltext = "30421-03.htm";
- }
- break;
- }
- case "30421-06.html":
- {
- if (hasQuestItems(player, SEEDS_OF_ANGER))
- {
- htmltext = event;
- }
- else
- {
- htmltext = "30421-07.html";
- }
- break;
- }
- case "30421-09.html":
- {
- if (hasQuestItems(player, SEEDS_OF_HORROR))
- {
- htmltext = event;
- }
- else
- {
- htmltext = "30421-10.html";
- }
- break;
- }
- case "30421-11.html":
- {
- if (hasQuestItems(player, SEEDS_OF_LUNACY))
- {
- htmltext = event;
- }
- else if (!hasQuestItems(player, SEEDS_OF_LUNACY) && hasQuestItems(player, SEEDS_OF_DESPAIR))
- {
- htmltext = "30421-12.html";
- }
- break;
- }
- case "30421-08.html":
- case "30415-02.html":
- {
- htmltext = event;
- break;
- }
- case "30415-03.html":
- {
- giveItems(player, LUCKY_KEY, 1);
- htmltext = event;
- break;
- }
- case "30418-02.html":
- {
- giveItems(player, CANDLE, 1);
- htmltext = event;
- break;
- }
- }
- return htmltext;
- }
-
- @Override
- public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
- {
- final QuestState qs = getQuestState(killer, false);
- if ((qs != null) && qs.isStarted() && Util.checkIfInRange(1500, npc, killer, true))
- {
- switch (npc.getId())
- {
- case MARSH_ZOMBIE:
- {
- if (hasQuestItems(killer, LUCKY_KEY) && (getQuestItemsCount(killer, FAMILYS_REMAINS) < 3))
- {
- if (getRandom(2) == 0)
- {
- giveItems(killer, FAMILYS_REMAINS, 1);
- if (getQuestItemsCount(killer, FAMILYS_REMAINS) == 3)
- {
- playSound(killer, QuestSound.ITEMSOUND_QUEST_MIDDLE);
- }
- else
- {
- playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET);
- }
- }
- }
- break;
- }
- case MISERY_SKELETON:
- case SKELETON_HUNTER:
- case SKELETON_HUNTER_ARCHER:
- {
- if (hasQuestItems(killer, CANDLE) && (getQuestItemsCount(killer, KNEE_BONE) < 2))
- {
- if (getRandom(2) == 0)
- {
- giveItems(killer, KNEE_BONE, 1);
- if (getQuestItemsCount(killer, KNEE_BONE) == 2)
- {
- playSound(killer, QuestSound.ITEMSOUND_QUEST_MIDDLE);
- }
- else
- {
- playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET);
- }
- }
- }
- break;
- }
- case SKELETON_SCOUT:
- {
- if (hasQuestItems(killer, HUB_SCENT) && (getQuestItemsCount(killer, HEART_OF_LUNACY) < 3))
- {
- if (getRandom(2) == 0)
- {
- giveItems(killer, HEART_OF_LUNACY, 1);
- if (getQuestItemsCount(killer, HEART_OF_LUNACY) == 3)
- {
- playSound(killer, QuestSound.ITEMSOUND_QUEST_MIDDLE);
- }
- else
- {
- playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET);
- }
- }
- }
- break;
- }
- }
- }
- return super.onKill(npc, killer, isSummon);
- }
-
- @Override
- public String onTalk(L2Npc npc, L2PcInstance player)
- {
- final QuestState qs = getQuestState(player, true);
- String htmltext = getNoQuestMsg(player);
- if (qs.isCreated() || qs.isCompleted())
- {
- if (npc.getId() == VARIKA)
- {
- if (!hasQuestItems(player, JEWEL_OF_DARKNESS))
- {
- htmltext = "30421-01.htm";
- }
- else
- {
- htmltext = "30421-04.htm";
- }
- }
- }
- else if (qs.isStarted())
- {
- switch (npc.getId())
- {
- case VARIKA:
- {
- if (hasQuestItems(player, SEEDS_OF_DESPAIR, SEEDS_OF_HORROR, SEEDS_OF_LUNACY, SEEDS_OF_ANGER))
- {
- giveAdena(player, 163800, true);
- giveItems(player, JEWEL_OF_DARKNESS, 1);
- final int level = player.getLevel();
- if (level >= 20)
- {
- addExpAndSp(player, 320534, 28630);
- }
- else if (level == 19)
- {
- addExpAndSp(player, 456128, 28630);
- }
- else
- {
- addExpAndSp(player, 591724, 35328);
- }
- qs.exitQuest(false, true);
- player.sendPacket(new SocialAction(player.getObjectId(), 3));
- qs.saveGlobalQuestVar("1ClassQuestFinished", "1");
- htmltext = "30421-13.html";
- }
- else if (hasQuestItems(player, SEEDS_OF_DESPAIR))
- {
- if (!hasAtLeastOneQuestItem(player, FAMILYS_REMAINS, LUCKY_KEY, CANDLE, HUB_SCENT, KNEE_BONE, HEART_OF_LUNACY))
- {
- htmltext = "30421-14.html";
- }
- else if (!hasQuestItems(player, SEEDS_OF_ANGER))
- {
- htmltext = "30421-08.html";
- }
- else if (!hasQuestItems(player, SEEDS_OF_HORROR))
- {
- htmltext = "30421-15.html";
- }
- else if (!hasQuestItems(player, SEEDS_OF_LUNACY))
- {
- htmltext = "30421-12.html";
- }
- }
- break;
- }
- case CHARKEREN:
- {
- if (!hasQuestItems(player, SEEDS_OF_ANGER) && hasQuestItems(player, SEEDS_OF_DESPAIR))
- {
- if (!hasAtLeastOneQuestItem(player, FAMILYS_REMAINS, LUCKY_KEY))
- {
- htmltext = "30415-01.html";
- }
- else if (hasQuestItems(player, LUCKY_KEY) && (getQuestItemsCount(player, FAMILYS_REMAINS) < 3))
- {
- htmltext = "30415-04.html";
- }
- else
- {
- giveItems(player, SEEDS_OF_ANGER, 1);
- takeItems(player, FAMILYS_REMAINS, -1);
- takeItems(player, LUCKY_KEY, 1);
- htmltext = "30415-05.html";
- }
- }
- else
- {
- htmltext = "30415-06.html";
- }
- break;
- }
- case ANNIKA:
- {
- if (!hasQuestItems(player, SEEDS_OF_HORROR) && hasQuestItems(player, SEEDS_OF_DESPAIR))
- {
- if (!hasAtLeastOneQuestItem(player, CANDLE, KNEE_BONE))
- {
- htmltext = "30418-01.html";
- }
- else if (hasQuestItems(player, CANDLE) && (getQuestItemsCount(player, KNEE_BONE) < 2))
- {
- htmltext = "30418-03.html";
- }
- else
- {
- giveItems(player, SEEDS_OF_HORROR, 1);
- takeItems(player, KNEE_BONE, -1);
- takeItems(player, CANDLE, 1);
- htmltext = "30418-04.html";
- }
- }
- break;
- }
- case ARKENIA:
- {
- if (!hasQuestItems(player, SEEDS_OF_LUNACY))
- {
- if (!hasAtLeastOneQuestItem(player, HUB_SCENT, HEART_OF_LUNACY))
- {
- giveItems(player, HUB_SCENT, 1);
- htmltext = "30419-01.html";
- }
- else if (hasQuestItems(player, HUB_SCENT) && (getQuestItemsCount(player, HEART_OF_LUNACY) < 3))
- {
- htmltext = "30419-02.html";
- }
- else
- {
- giveItems(player, SEEDS_OF_LUNACY, 1);
- takeItems(player, HEART_OF_LUNACY, -1);
- takeItems(player, HUB_SCENT, 1);
- htmltext = "30419-03.html";
- }
- }
- break;
- }
- }
- }
- return htmltext;
- }
- }
|