123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- /*
- * 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.Collection;
- import javolution.util.FastList;
- 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.L2Character;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.L2Playable;
- import com.l2jserver.gameserver.model.actor.L2Summon;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.actor.instance.L2PetInstance;
- import com.l2jserver.gameserver.network.NpcStringId;
- import com.l2jserver.gameserver.network.serverpackets.NpcSay;
- import com.l2jserver.gameserver.templates.skills.L2SkillType;
- import com.l2jserver.gameserver.util.Util;
- import com.l2jserver.util.Rnd;
- public class Monastery extends L2AttackableAIScript
- {
- static final int[] mobs1 = {22124, 22125, 22126, 22127, 22129};
- static final int[] mobs2 = {22134, 22135};
-
- static final NpcStringId[] messages = {
- NpcStringId.YOU_CANNOT_CARRY_A_WEAPON_WITHOUT_AUTHORIZATION,
- NpcStringId.S1_WHY_WOULD_YOU_CHOOSE_THE_PATH_OF_DARKNESS,
- NpcStringId.S1_HOW_DARE_YOU_DEFY_THE_WILL_OF_EINHASAD
- };
- public Monastery(int questId, String name, String descr)
- {
- super(questId, name, descr);
- registerMobs(mobs1, QuestEventType.ON_AGGRO_RANGE_ENTER, QuestEventType.ON_SPAWN, QuestEventType.ON_SPELL_FINISHED);
- registerMobs(mobs2, QuestEventType.ON_SKILL_SEE);
- }
-
- @Override
- public String onAggroRangeEnter(L2Npc npc, L2PcInstance player, boolean isPet)
- {
- if (Util.contains(mobs1,npc.getNpcId()) && !npc.isInCombat() && npc.getTarget() == null)
- {
- if (player.getActiveWeaponInstance() != null)
- {
- npc.setTarget(player);
- npc.broadcastPacket(new NpcSay(npc.getObjectId(), 0, npc.getNpcId(), messages[0]));
- switch (npc.getNpcId())
- {
- case 22124:
- case 22126:
- {
- L2Skill skill = SkillTable.getInstance().getInfo(4589,8);
- npc.doCast(skill);
- break;
- }
- default:
- {
- npc.setIsRunning(true);
- ((L2Attackable) npc).addDamageHate(player, 0, 999);
- npc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, player);
- break;
- }
- }
- }
- else if (((L2Attackable)npc).getMostHated() == null)
- return null;
- }
- return super.onAggroRangeEnter(npc, player, isPet);
- }
-
- @Override
- public String onSkillSee(L2Npc npc, L2PcInstance caster, L2Skill skill, L2Object[] targets, boolean isPet)
- {
- if (Util.contains(mobs2,npc.getNpcId()))
- {
- if (skill.getSkillType() == L2SkillType.AGGDAMAGE && targets.length != 0)
- {
- for (L2Object obj : targets)
- {
- if (obj.equals(npc))
- {
- NpcSay packet = new NpcSay(npc.getObjectId(), 0, npc.getNpcId(), messages[Rnd.get(2)+1]);
- packet.addStringParameter(caster.getName());
- npc.broadcastPacket(packet);
- ((L2Attackable) npc).addDamageHate(caster, 0, 999);
- npc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, caster);
- break;
- }
- }
- }
- }
- return super.onSkillSee(npc, caster, skill, targets, isPet);
- }
-
- @Override
- public String onSpawn(L2Npc npc)
- {
- if (Util.contains(mobs1,npc.getNpcId()))
- {
- FastList<L2Playable> result = new FastList<L2Playable>();
- Collection<L2Object> objs = npc.getKnownList().getKnownObjects().values();
- for (L2Object obj : objs)
- {
- if (obj instanceof L2PcInstance || obj instanceof L2PetInstance)
- {
- if (Util.checkIfInRange(npc.getAggroRange(), npc, obj, true) && !((L2Character) obj).isDead())
- result.add((L2Playable) obj);
- }
- }
- if (!result.isEmpty() && result.size() != 0)
- {
- Object[] characters = result.toArray();
- for (Object obj : characters)
- {
- L2Playable target = (L2Playable) (obj instanceof L2PcInstance ? obj : ((L2Summon) obj).getOwner());
- if (target.getActiveWeaponInstance() != null && !npc.isInCombat() && npc.getTarget() == null)
- {
- npc.setTarget(target);
- npc.broadcastPacket(new NpcSay(npc.getObjectId(), 0, npc.getNpcId(), messages[0]));
- switch (npc.getNpcId())
- {
- case 22124:
- case 22126:
- case 22127:
- {
- L2Skill skill = SkillTable.getInstance().getInfo(4589,8);
- npc.doCast(skill);
- break;
- }
- default:
- {
- npc.setIsRunning(true);
- ((L2Attackable) npc).addDamageHate(target, 0, 999);
- npc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, target);
- break;
- }
- }
- }
- }
- }
- }
- return super.onSpawn(npc);
- }
-
- @Override
- public String onSpellFinished(L2Npc npc, L2PcInstance player, L2Skill skill)
- {
- if (Util.contains(mobs1,npc.getNpcId()) && skill.getId() == 4589)
- {
- npc.setIsRunning(true);
- ((L2Attackable) npc).addDamageHate(player, 0, 999);
- npc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, player);
- }
- return super.onSpellFinished(npc, player, skill);
- }
-
- public static void main(String[] args)
- {
- new Monastery(-1, "Monastery", "ai");
- }
- }
|