Package l2p.gameserver.model.instances

Examples of l2p.gameserver.model.instances.L2PathfinderInstance


          _objects_lock.unlock();
          L2Player p = (L2Player) L2ObjectsStorage.findObject(_player);
          if(p != null)
          {
            p.getPlayer().sendPacket(new SystemMessage(SystemMessage.THIS_DUNGEON_WILL_EXPIRE_IN_S1_MINUTES).addNumber((COLLAPSE_TIME - TIME_LIMIT) / 60000));
            L2PathfinderInstance npc = new L2PathfinderInstance(IdFactory.getInstance().getNextId(), NpcTable.getTemplate(32485));
            npc.setSpawnedLoc(KamalokaNightmare.this.getTeleportLoc());
            npc.setReflection(KamalokaNightmare.this.getId());
            npc.onSpawn();
            npc.spawnMe(npc.getSpawnedLoc());
          }
          else
          {
            collapse();
          }
View Full Code Here

TOP

Related Classes of l2p.gameserver.model.instances.L2PathfinderInstance

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.