123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- /*
- * 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 ai.group_template;
- import java.util.List;
- import com.l2jserver.gameserver.ai.CtrlIntention;
- import com.l2jserver.gameserver.datatables.SkillTable;
- import com.l2jserver.gameserver.model.L2Object;
- import com.l2jserver.gameserver.model.L2Skill;
- import com.l2jserver.gameserver.model.actor.L2Attackable;
- 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.serverpackets.MagicSkillUse;
- import com.l2jserver.gameserver.util.Broadcast;
- import com.l2jserver.gameserver.util.Util;
- import com.l2jserver.util.Rnd;
- public class StakatoNest extends L2AttackableAIScript
- {
- // List of all mobs just for register
- private static final int[] _stakato_mobs = { 18793, 18794, 18795, 18796, 18797, 18798, 22617, 22618, 22619, 22620, 22621, 22622, 22623, 22624, 22625, 22626, 22627, 22628, 22629, 22630, 22631, 22632, 22633, 25667 };
- // Coocons
- private static final int[] _cocoons = { 18793, 18794, 18795, 18796, 18797, 18798 };
-
- // Cannibalistic Stakato Leader
- private static final int _stakato_leader = 22625;
-
- // Spike Stakato Nurse
- private static final int _stakato_nurse = 22630;
- // Spike Stakato Nurse (Changed)
- private static final int _stakato_nurse_2 = 22631;
- // Spiked Stakato Baby
- private static final int _stakato_baby = 22632;
- // Spiked Stakato Captain
- private static final int _stakato_captain = 22629;
-
- // Female Spiked Stakato
- private static final int _stakato_female = 22620;
- // Male Spiked Stakato
- private static final int _stakato_male = 22621;
- // Male Spiked Stakato (Changed)
- private static final int _stakato_male_2 = 22622;
- // Spiked Stakato Guard
- private static final int _stakato_guard = 22619;
-
- // Cannibalistic Stakato Chief
- private static final int _stakato_chief = 25667;
- // Growth Accelerator
- private static final int _growth_accelerator = 2905;
- // Small Stakato Cocoon
- private static final int _small_cocoon = 14833;
- // Large Stakato Cocoon
- private static final int _large_cocoon = 14834;
-
- @Override
- public String onAttack(L2Npc npc, L2PcInstance attacker, int damage, boolean isPet)
- {
- L2MonsterInstance _mob = (L2MonsterInstance) npc;
-
- if ((_mob.getNpcId() == _stakato_leader) && (Rnd.get(1000) < 100) && (_mob.getCurrentHp() < (_mob.getMaxHp() * 0.3)))
- {
- L2MonsterInstance _follower = checkMinion(npc);
-
- if (_follower != null)
- {
- double _hp = _follower.getCurrentHp();
-
- if (_hp > (_follower.getMaxHp() * 0.3))
- {
- _mob.abortAttack();
- _mob.abortCast();
- _mob.setHeading(Util.calculateHeadingFrom(_mob, _follower));
- _mob.doCast(SkillTable.getInstance().getInfo(4484, 1));
- _mob.setCurrentHp(_mob.getCurrentHp() + _hp);
- _follower.doDie(_follower);
- _follower.deleteMe();
- }
- }
- }
- return super.onAttack(npc, attacker, damage, isPet);
- }
-
- @Override
- public String onKill(L2Npc npc, L2PcInstance killer, boolean isPet)
- {
- L2MonsterInstance _minion = checkMinion(npc);
-
- if (npc.getNpcId() == _stakato_nurse && _minion != null)
- {
- Broadcast.toSelfAndKnownPlayers(npc, new MagicSkillUse(npc, 2046, 1, 1000, 0));
- for (int i = 0; i < 3; i++)
- {
- L2Npc _spawned = addSpawn(_stakato_captain, _minion, true);
- attackPlayer(killer, _spawned);
- }
- }
- else if (npc.getNpcId() == _stakato_baby)
- {
- L2MonsterInstance _leader = ((L2MonsterInstance) npc).getLeader();
- if(_leader != null && !_leader.isDead())
- {
- startQuestTimer("nurse_change", 5000, _leader, killer);
- }
- }
- else if (npc.getNpcId() == _stakato_male && _minion != null)
- {
- Broadcast.toSelfAndKnownPlayers(npc, new MagicSkillUse(npc, 2046, 1, 1000, 0));
- for (int i = 0; i < 3; i++)
- {
- L2Npc _spawned = addSpawn(_stakato_guard, _minion, true);
- attackPlayer(killer, _spawned);
- }
- }
- else if (npc.getNpcId() == _stakato_female)
- {
- L2MonsterInstance _leader = ((L2MonsterInstance) npc).getLeader();
- if(_leader != null && !_leader.isDead())
- {
- startQuestTimer("male_change", 5000, _leader, killer);
- }
- }
- else if (npc.getNpcId() == _stakato_chief)
- {
- if (killer.isInParty())
- {
- List<L2PcInstance> party = killer.getParty().getPartyMembers();
- for (L2PcInstance member : party)
- giveCocoon(member, npc);
- }
- else
- giveCocoon(killer, npc);
- }
- return super.onKill(npc, killer, isPet);
- }
-
- @Override
- public String onSkillSee(L2Npc npc, L2PcInstance caster, L2Skill skill, L2Object[] targets, boolean isPet)
- {
- if (Util.contains(_cocoons, npc.getNpcId()) && Util.contains(targets, npc) && skill.getId() == _growth_accelerator)
- {
- npc.doDie(caster);
- L2Npc _spawned = addSpawn(_stakato_chief, npc.getX(), npc.getY(), npc.getZ(), Util.calculateHeadingFrom(npc, caster), false, 0, true);
- attackPlayer(caster, _spawned);
- }
- return super.onSkillSee(npc, caster, skill, targets, isPet);
- }
-
- @Override
- public final String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- if ((npc == null) || (player == null))
- return null;
- if(npc.isDead())
- return null;
-
- if (event.equalsIgnoreCase("nurse_change"))
- {
- npc.getSpawn().decreaseCount(npc);
- npc.deleteMe();
- L2Npc _spawned = addSpawn(_stakato_nurse_2, npc.getX(), npc.getY(), npc.getZ(), npc.getHeading(), false, 0, true);
- attackPlayer(player, _spawned);
- }
- else if (event.equalsIgnoreCase("male_change"))
- {
- npc.getSpawn().decreaseCount(npc);
- npc.deleteMe();
- L2Npc _spawned = addSpawn(_stakato_male_2, npc.getX(), npc.getY(), npc.getZ(), npc.getHeading(), false, 0, true);
- attackPlayer(player, _spawned);
- }
- return null;
- }
-
- public StakatoNest(int questId, String name, String descr)
- {
- super(questId, name, descr);
-
- this.registerMobs(_stakato_mobs);
- }
-
- public static void main(String[] args)
- {
- new StakatoNest(-1, "StakatoNestAI", "ai");
- }
-
- private L2MonsterInstance checkMinion(L2Npc npc)
- {
- L2MonsterInstance mob = (L2MonsterInstance) npc;
- if (mob.hasMinions())
- {
- List<L2MonsterInstance> _minion = mob.getMinionList().getSpawnedMinions();
- if ((_minion != null) && !_minion.isEmpty() && (_minion.get(0) != null) && !_minion.get(0).isDead())
- return _minion.get(0);
- }
-
- return null;
- }
-
- private void attackPlayer(L2PcInstance player, L2Npc npc)
- {
- if (npc != null && player != null)
- {
- ((L2Attackable) npc).setIsRunning(true);
- ((L2Attackable) npc).addDamageHate(player, 0, 999);
- ((L2Attackable) npc).getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, player);
- }
- }
-
- private void giveCocoon(L2PcInstance player, L2Npc npc)
- {
- if (Rnd.get(100) > 80)
- player.addItem("StakatoCocoon", _large_cocoon, 1, npc, true);
- else
- player.addItem("StakatoCocoon", _small_cocoon, 1, npc, true);
- }
- }
|