123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- /*
- * 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.Q00621_EggDelivery;
- import java.util.Arrays;
- import java.util.List;
- 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;
- /**
- * Egg Delivery (621)
- * @author Janiko
- */
- public final class Q00621_EggDelivery extends Quest
- {
- // NPCs
- private static final int JEREMY = 31521;
- private static final int PULIN = 31543;
- private static final int NAFF = 31544;
- private static final int CROCUS = 31545;
- private static final int KUBER = 31546;
- private static final int BOELIN = 31547;
- private static final int VALENTINE = 31584;
- // Items
- private static final int BOILED_EGG = 7195;
- private static final int EGG_PRICE = 7196;
- // Misc
- private static final int MIN_LVL = 68;
- // Reward
- private static final int QUICK_STEP_POTION = 734;
- private static final int SEALED_RING_OF_AURAKYRA = 6849;
- private static final int SEALED_SANDDRAGONS_EARING = 6847;
- private static final int SEALED_DRAGON_NECKLACE = 6851;
- // Talkers
- private static final List<Integer> TALKERS = Arrays.asList(NAFF, CROCUS, KUBER, BOELIN);
-
- public Q00621_EggDelivery()
- {
- super(621, Q00621_EggDelivery.class.getSimpleName(), "Egg Delivery");
- addStartNpc(JEREMY);
- addTalkId(JEREMY, PULIN, VALENTINE);
- addTalkId(TALKERS);
- registerQuestItems(BOILED_EGG, EGG_PRICE);
- }
-
- @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 "31521-03.htm":
- {
- if (qs.isCreated())
- {
- qs.startQuest();
- giveItems(player, BOILED_EGG, 5);
- htmltext = event;
- }
- break;
- }
- case "31521-06.html":
- {
- if (qs.isCond(6))
- {
- if (getQuestItemsCount(player, EGG_PRICE) >= 5)
- {
- qs.setCond(7, true);
- takeItems(player, EGG_PRICE, -1);
- htmltext = event;
- }
- else
- {
- htmltext = "31521-07.html";
- }
- }
- break;
- }
- case "31543-02.html":
- {
- if (qs.isCond(1))
- {
- if (hasQuestItems(player, BOILED_EGG))
- {
- qs.setCond(2, true);
- takeItems(player, BOILED_EGG, 1);
- giveItems(player, EGG_PRICE, 1);
- htmltext = event;
- }
- else
- {
- htmltext = "31543-03.html";
- }
- }
- break;
- }
- case "31544-02.html":
- case "31545-02.html":
- case "31546-02.html":
- case "31547-02.html":
- {
- if (TALKERS.contains(npc.getId()) && qs.isCond(TALKERS.indexOf(npc.getId()) + 2))
- {
- if (hasQuestItems(player, BOILED_EGG))
- {
- qs.setCond(qs.getCond() + 1, true);
- takeItems(player, BOILED_EGG, 1);
- giveItems(player, EGG_PRICE, 1);
- htmltext = event;
- }
- else
- {
- htmltext = npc.getId() + "-03.html";
- }
- }
- break;
- }
- case "31584-02.html":
- {
- if (qs.isCond(7))
- {
- int rnd = getRandom(1000);
- if (rnd < 800)
- {
- rewardItems(player, QUICK_STEP_POTION, 1);
- giveAdena(player, 18800, true);
- }
- else if (rnd < 880)
- {
- rewardItems(player, SEALED_RING_OF_AURAKYRA, 1);
- }
- else if (rnd < 960)
- {
- rewardItems(player, SEALED_SANDDRAGONS_EARING, 1);
- }
- else if (rnd < 1000)
- {
- rewardItems(player, SEALED_DRAGON_NECKLACE, 1);
- }
- qs.exitQuest(true, true);
- htmltext = event;
- }
- break;
- }
- }
- return htmltext;
- }
-
- @Override
- public String onTalk(L2Npc npc, L2PcInstance talker)
- {
- final QuestState qs = getQuestState(talker, true);
- String htmltext = getNoQuestMsg(talker);
- switch (npc.getId())
- {
- case JEREMY:
- {
- switch (qs.getState())
- {
- case State.CREATED:
- {
- htmltext = (talker.getLevel() >= MIN_LVL) ? "31521-01.htm" : "31521-02.htm";
- break;
- }
- case State.STARTED:
- {
- switch (qs.getCond())
- {
- case 1:
- {
- htmltext = "31521-04.html";
- break;
- }
- case 6:
- {
- if (hasQuestItems(talker, EGG_PRICE))
- {
- htmltext = "31521-05.html";
- }
- break;
- }
- case 7:
- {
- if (!hasQuestItems(talker, BOILED_EGG))
- {
- htmltext = "31521-08.html";
- }
- break;
- }
- }
- break;
- }
- case State.COMPLETED:
- {
- htmltext = getAlreadyCompletedMsg(talker);
- break;
- }
- }
- break;
- }
- case PULIN:
- {
- if (qs.isStarted())
- {
- switch (qs.getCond())
- {
- case 1:
- {
- if (getQuestItemsCount(talker, BOILED_EGG) >= 5)
- {
- htmltext = "31543-01.html";
- }
- break;
- }
- case 2:
- {
- htmltext = "31543-04.html";
- break;
- }
- }
- }
- break;
- }
- case NAFF:
- case CROCUS:
- case KUBER:
- case BOELIN:
- {
- if (qs.isStarted())
- {
- final int cond = TALKERS.indexOf(npc.getId()) + 2;
- if (qs.isCond(cond) && hasQuestItems(talker, EGG_PRICE)) // 2,3,4,5
- {
- htmltext = npc.getId() + "-01.html";
- }
- else if (qs.isCond(cond + 1)) // 3,4,5,6
- {
- htmltext = npc.getId() + "-04.html";
- }
- }
- break;
- }
- case VALENTINE:
- {
- if (qs.isStarted() && qs.isCond(7))
- {
- htmltext = "31584-01.html";
- }
- break;
- }
- }
- return htmltext;
- }
- }
|