12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /*
- * 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 <http://www.gnu.org/licenses/>.
- */
- package ai.individual;
- import javolution.util.FastSet;
- import ai.npc.AbstractNpcAI;
- import com.l2jserver.gameserver.datatables.SpawnTable;
- import com.l2jserver.gameserver.instancemanager.WalkingManager;
- import com.l2jserver.gameserver.model.L2Spawn;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- /**
- * Dust Dragon Tracker AI.
- * @author Adry_85
- */
- public class DustDragon extends AbstractNpcAI
- {
- private static final int DUST_DRAGON_ID = 22834;
-
- private static final int[] ROUTE_ID =
- {
- 20,
- 21,
- 22,
- 23,
- 24
- };
-
- private DustDragon(String name, String descr)
- {
- super(name, descr);
- addSpawnId(DUST_DRAGON_ID);
-
- FastSet<L2Spawn> spawns = SpawnTable.getInstance().getSpawnTable();
- for (L2Spawn spawn : spawns)
- {
- if (spawn.getNpcid() == DUST_DRAGON_ID)
- {
- onSpawn(spawn.getLastSpawn());
- }
- }
- }
-
- @Override
- public String onSpawn(L2Npc npc)
- {
- for (int route : ROUTE_ID)
- {
- WalkingManager.getInstance().startMoving(npc, route);
- }
-
- return super.onSpawn(npc);
- }
-
- public static void main(String[] args)
- {
- new DustDragon(DustDragon.class.getSimpleName(), "ai");
- }
- }
|