123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- /*
- * 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.Q00450_GraveRobberRescue;
- import com.l2jserver.gameserver.ai.CtrlIntention;
- import com.l2jserver.gameserver.enums.QuestSound;
- import com.l2jserver.gameserver.enums.QuestType;
- import com.l2jserver.gameserver.model.Location;
- import com.l2jserver.gameserver.model.actor.L2Attackable;
- 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;
- import com.l2jserver.gameserver.network.NpcStringId;
- import com.l2jserver.gameserver.network.clientpackets.Say2;
- import com.l2jserver.gameserver.network.serverpackets.NpcSay;
- /**
- * Grave Robber Rescue (450)
- * @author malyelfik
- */
- public class Q00450_GraveRobberRescue extends Quest
- {
- // NPCs
- private static final int KANEMIKA = 32650;
- private static final int WARRIOR = 32651;
- // Monster
- private static final int WARRIOR_MON = 22741;
- // Item
- private static final int EVIDENCE_OF_MIGRATION = 14876;
- // Misc
- private static final int MIN_LEVEL = 80;
-
- public Q00450_GraveRobberRescue()
- {
- super(450, Q00450_GraveRobberRescue.class.getSimpleName(), "Grave Robber Rescue");
- addStartNpc(KANEMIKA);
- addTalkId(KANEMIKA, WARRIOR);
- registerQuestItems(EVIDENCE_OF_MIGRATION);
- }
-
- @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 "32650-04.htm":
- case "32650-05.htm":
- case "32650-06.html":
- break;
- case "32650-07.htm":
- st.startQuest();
- break;
- case "despawn":
- npc.setBusy(false);
- npc.deleteMe();
- htmltext = null;
- break;
- 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;
- }
-
- if (npc.getId() == KANEMIKA)
- {
- switch (st.getState())
- {
- case State.COMPLETED:
- if (!st.isNowAvailable())
- {
- htmltext = "32650-03.html";
- break;
- }
- st.setState(State.CREATED);
- case State.CREATED:
- htmltext = (player.getLevel() >= MIN_LEVEL) ? "32650-01.htm" : "32650-02.htm";
- break;
- case State.STARTED:
- if (st.isCond(1))
- {
- htmltext = (!st.hasQuestItems(EVIDENCE_OF_MIGRATION)) ? "32650-08.html" : "32650-09.html";
- }
- else
- {
- st.giveAdena(65000, true); // Glory days reward: 6 886 980 exp, 8 116 410 sp, 371 400 Adena
- st.exitQuest(QuestType.DAILY, true);
- htmltext = "32650-10.html";
- }
- break;
- }
- }
- else if (st.isCond(1))
- {
- if (npc.isBusy())
- {
- return null;
- }
-
- if (getRandom(100) < 66)
- {
- st.giveItems(EVIDENCE_OF_MIGRATION, 1);
- st.playSound(QuestSound.ITEMSOUND_QUEST_ITEMGET);
- npc.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, new Location(npc.getX() + 100, npc.getY() + 100, npc.getZ(), 0));
- npc.setBusy(true);
-
- startQuestTimer("despawn", 3000, npc, player);
-
- if (st.getQuestItemsCount(EVIDENCE_OF_MIGRATION) == 10)
- {
- st.setCond(2, true);
- }
- htmltext = "32651-01.html";
- }
- else
- {
- if (getRandom(100) < 50)
- {
- npc.broadcastPacket(new NpcSay(npc.getObjectId(), Say2.NPC_ALL, npc.getId(), NpcStringId.GRUNT_OH));
- }
- else
- {
- npc.broadcastPacket(new NpcSay(npc.getObjectId(), Say2.NPC_ALL, npc.getId(), NpcStringId.GRUNT_WHATS_WRONG_WITH_ME));
- }
- npc.deleteMe();
- htmltext = null;
-
- final L2Attackable monster = (L2Attackable) addSpawn(WARRIOR_MON, npc.getX(), npc.getY(), npc.getZ(), npc.getHeading(), true, 600000);
- monster.setRunning();
- monster.addDamageHate(player, 0, 999);
- monster.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, player);
- showOnScreenMsg(player, NpcStringId.THE_GRAVE_ROBBER_WARRIOR_HAS_BEEN_FILLED_WITH_DARK_ENERGY_AND_IS_ATTACKING_YOU, 5, 5000);
- }
- }
-
- return htmltext;
- }
- }
|