123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /*
- * 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 com.l2jserver.gameserver.ai.CtrlIntention;
- import com.l2jserver.gameserver.datatables.SkillTable;
- 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.instance.L2NpcInstance;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.util.Util;
- import com.l2jserver.util.Rnd;
- public class FairyTrees extends L2AttackableAIScript
- {
- private static final int[] mobs = { 27185, 27186, 27187, 27188 };
-
- public FairyTrees(int questId, String name, String descr)
- {
- super(questId, name, descr);
- this.registerMobs(mobs, QuestEventType.ON_KILL);
- super.addSpawnId(27189);
- }
-
- public String onKill (L2NpcInstance npc, L2PcInstance killer, boolean isPet)
- {
- int npcId = npc.getNpcId();
- if (Util.contains(mobs, npcId))
- {
- for (int i = 0; i < 20; i++)
- {
- L2Attackable newNpc = (L2Attackable) addSpawn(27189, npc.getX(), npc.getY(), npc.getZ(), 0, false, 30000);
- L2Character originalKiller = isPet ? killer.getPet() : killer;
- newNpc.setRunning();
- newNpc.addDamageHate(originalKiller, 0, 999);
- newNpc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, originalKiller);
- if (Rnd.get(1, 2) == 1)
- {
- L2Skill skill = SkillTable.getInstance().getInfo(4243, 1);
- if (skill != null && originalKiller != null)
- skill.getEffects(newNpc, originalKiller);
- }
- }
- }
-
- return super.onKill(npc, killer, isPet);
- }
-
- public static void main(String[] args)
- {
- new FairyTrees(-1, "fairy_trees", "ai");
- }
- }
|