/* * Copyright (C) 2004-2013 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 . */ package ai.individual; import java.util.List; import javolution.util.FastList; import ai.npc.AbstractNpcAI; import com.l2jserver.gameserver.model.L2Spawn; import com.l2jserver.gameserver.model.Location; import com.l2jserver.gameserver.model.actor.L2Npc; import com.l2jserver.gameserver.model.actor.instance.L2MonsterInstance; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.network.NpcStringId; import com.l2jserver.gameserver.network.clientpackets.Say2; import com.l2jserver.gameserver.network.serverpackets.NpcSay; /** * Manages Darion's Enforcer's and Darion's Executioner spawn/despawn * @author GKR */ public class Keltas extends AbstractNpcAI { private static final int KELTAS = 22341; private static final int ENFORCER = 22342; private static final int EXECUTIONER = 22343; private L2MonsterInstance _spawnedKeltas = null; private final List _spawnedMonsters; private static final Location[] ENFORCER_SPAWN_POINTS = { new Location(-24540, 251404, -3320), new Location(-24100, 252578, -3060), new Location(-24607, 252443, -3074), new Location(-23962, 252041, -3275), new Location(-24381, 252132, -3090), new Location(-23652, 251838, -3370), new Location(-23838, 252603, -3095), new Location(-23257, 251671, -3360), new Location(-27127, 251106, -3523), new Location(-27118, 251203, -3523), new Location(-27052, 251205, -3523), new Location(-26999, 250818, -3523), new Location(-29613, 252888, -3523), new Location(-29765, 253009, -3523), new Location(-29594, 252570, -3523), new Location(-29770, 252658, -3523), new Location(-27816, 252008, -3527), new Location(-27930, 252011, -3523), new Location(-28702, 251986, -3523), new Location(-27357, 251987, -3527), new Location(-28859, 251081, -3527), new Location(-28607, 250397, -3523), new Location(-28801, 250462, -3523), new Location(-29123, 250387, -3472), new Location(-25376, 252368, -3257), new Location(-25376, 252208, -3257) }; private static final Location[] EXECUTIONER_SPAWN_POINTS = { new Location(-24419, 251395, -3340), new Location(-24912, 252160, -3310), new Location(-25027, 251941, -3300), new Location(-24127, 252657, -3058), new Location(-25120, 252372, -3270), new Location(-24456, 252651, -3060), new Location(-24844, 251614, -3295), new Location(-28675, 252008, -3523), new Location(-27943, 251238, -3523), new Location(-27827, 251984, -3523), new Location(-27276, 251995, -3523), new Location(-28769, 251955, -3523), new Location(-27969, 251073, -3523), new Location(-27233, 250938, -3523), new Location(-26835, 250914, -3523), new Location(-26802, 251276, -3523), new Location(-29671, 252781, -3527), new Location(-29536, 252831, -3523), new Location(-29419, 253214, -3523), new Location(-27923, 251965, -3523), new Location(-28499, 251882, -3527), new Location(-28194, 251915, -3523), new Location(-28358, 251078, -3527), new Location(-28580, 251071, -3527), new Location(-28492, 250704, -3523) }; public Keltas(String name, String descr) { super(name, descr); addKillId(KELTAS); addSpawnId(KELTAS); _spawnedMonsters = new FastList<>(); } private void spawnMinions() { for (Location loc : ENFORCER_SPAWN_POINTS) { L2MonsterInstance minion = (L2MonsterInstance) addSpawn(ENFORCER, loc, false, 0, false); minion.getSpawn().setRespawnDelay(60); minion.getSpawn().setAmount(1); minion.getSpawn().startRespawn(); _spawnedMonsters.add(minion.getSpawn()); } for (Location loc : EXECUTIONER_SPAWN_POINTS) { L2MonsterInstance minion = (L2MonsterInstance) addSpawn(EXECUTIONER, loc, false, 0, false); minion.getSpawn().setRespawnDelay(80); minion.getSpawn().setAmount(1); minion.getSpawn().startRespawn(); _spawnedMonsters.add(minion.getSpawn()); } } private void despawnMinions() { if ((_spawnedMonsters == null) || _spawnedMonsters.isEmpty()) { return; } for (L2Spawn spawn : _spawnedMonsters) { spawn.stopRespawn(); L2Npc minion = spawn.getLastSpawn(); if ((minion != null) && !minion.isDead()) { minion.deleteMe(); } } _spawnedMonsters.clear(); } @Override public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) { if (event.equalsIgnoreCase("despawn")) { if ((_spawnedKeltas != null) && !_spawnedKeltas.isDead()) { _spawnedKeltas.broadcastPacket(new NpcSay(_spawnedKeltas.getObjectId(), Say2.NPC_SHOUT, _spawnedKeltas.getId(), NpcStringId.THAT_IS_IT_FOR_TODAYLETS_RETREAT_EVERYONE_PULL_BACK)); _spawnedKeltas.deleteMe(); _spawnedKeltas.getSpawn().decreaseCount(_spawnedKeltas); despawnMinions(); } } return null; } @Override public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) { cancelQuestTimers("despawn"); despawnMinions(); return super.onKill(npc, killer, isSummon); } @Override public final String onSpawn(L2Npc npc) { if (!npc.isTeleporting()) { _spawnedKeltas = (L2MonsterInstance) npc; npc.broadcastPacket(new NpcSay(_spawnedKeltas.getObjectId(), Say2.NPC_SHOUT, _spawnedKeltas.getId(), NpcStringId.GUYS_SHOW_THEM_OUR_POWER)); spawnMinions(); startQuestTimer("despawn", 1800000, null, null); } return super.onSpawn(npc); } public static void main(String[] args) { new Keltas(Keltas.class.getSimpleName(), "ai"); } }