123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- /*
- * This program 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.
- *
- * This program 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 hellbound.BaseTower;
- import java.util.Map;
- import javolution.util.FastMap;
- import com.l2jserver.gameserver.datatables.DoorTable;
- import com.l2jserver.gameserver.model.L2Effect;
- 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.skills.SkillHolder;
- /**
- * @author GKR
- */
- public class BaseTower extends Quest
- {
- private static final int GUZEN = 22362;
- private static final int KENDAL = 32301;
- private static final int BODY_DESTROYER = 22363;
-
- private static final Map<Integer, L2PcInstance> BODY_DESTROYER_TARGET_LIST = new FastMap<Integer, L2PcInstance>();
-
- private static final SkillHolder DEATH_WORD = new SkillHolder(5256, 1);
-
- public BaseTower(int questId, String name, String descr)
- {
- super(questId, name, descr);
-
- addKillId(GUZEN);
- addKillId(BODY_DESTROYER);
- addFirstTalkId(KENDAL);
- addAggroRangeEnterId(BODY_DESTROYER);
- }
-
- @Override
- public final String onFirstTalk(L2Npc npc, L2PcInstance player)
- {
- ClassId classId = player.getClassId();
- if (classId.equalsOrChildOf(ClassId.hellKnight) || classId.equalsOrChildOf(ClassId.soultaker))
- {
- return "32301-02.htm";
- }
- else
- {
- return "32301-01.htm";
- }
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- if (event.equalsIgnoreCase("close"))
- {
- DoorTable.getInstance().getDoor(20260004).closeMe();
- }
- return null;
- }
-
- @Override
- public String onAggroRangeEnter(L2Npc npc, L2PcInstance player, boolean isPet)
- {
- if (!BODY_DESTROYER_TARGET_LIST.containsKey(npc.getObjectId()))
- {
- BODY_DESTROYER_TARGET_LIST.put(npc.getObjectId(), player);
- npc.setTarget(player);
- npc.doSimultaneousCast(DEATH_WORD.getSkill());
- }
- return super.onAggroRangeEnter(npc, player, isPet);
- }
-
- @Override
- public String onKill(L2Npc npc, L2PcInstance killer, boolean isPet)
- {
- switch (npc.getNpcId())
- {
- case GUZEN:
- // Should Kendal be despawned before Guzen's spawn? Or it will be crowd of Kendal's
- addSpawn(KENDAL, npc.getSpawn().getLocx(), npc.getSpawn().getLocy(), npc.getSpawn().getLocz(), 0, false, npc.getSpawn().getRespawnDelay(), false);
- DoorTable.getInstance().getDoor(20260003).openMe();
- DoorTable.getInstance().getDoor(20260004).openMe();
- startQuestTimer("close", 60000, npc, null, false);
- break;
- case BODY_DESTROYER:
- if (BODY_DESTROYER_TARGET_LIST.containsKey(npc.getObjectId()))
- {
- final L2PcInstance pl = BODY_DESTROYER_TARGET_LIST.get(npc.getObjectId());
- if ((pl != null) && pl.isOnline() && !pl.isDead())
- {
- final L2Effect e = pl.getFirstEffect(DEATH_WORD.getSkill());
- if (e != null)
- {
- e.exit();
- }
- }
-
- BODY_DESTROYER_TARGET_LIST.remove(npc.getObjectId());
- }
- }
-
- return super.onKill(npc, killer, isPet);
- }
-
- public static void main(String[] args)
- {
- new BaseTower(-1, BaseTower.class.getSimpleName(), "hellbound");
- }
- }
|