Package l2p.gameserver.model

Examples of l2p.gameserver.model.L2Spawn.stopRespawn()


      spawn3.stopRespawn();

      L2Spawn spawn4 = new L2Spawn(NpcTable.getTemplate(22203));
      spawn4.setLoc(actor.getLoc());
      spawn4.doSpawn(true);
      spawn4.stopRespawn();

    }
    catch(Exception e)
    {
      e.printStackTrace();
View Full Code Here


            L2Spawn spawn = new L2Spawn(template);
            spawn.setLocation(zone.getLoc().getId());
            spawn.setHeading(-1);
            spawn.setAmount(1);
            spawn.setReflection(r.getId());
            spawn.stopRespawn();
            L2NpcInstance mob = spawn.doSpawn(true);
            if(mob != null)
            {
              ThreadPoolManager.getInstance().scheduleAi(new UnSpawnTask(mob), MONSTER_TRAP_DESPAWN_TIME, false);
              if(mob.isAggressive() && mob.getAI().canSeeInSilentMove(player))
View Full Code Here

    try
    {
      L2Spawn spawn1 = new L2Spawn(NpcTable.getTemplate(22196));
      spawn1.setLoc(actor.getLoc());
      spawn1.doSpawn(true);
      spawn1.stopRespawn();

      L2Spawn spawn2 = new L2Spawn(NpcTable.getTemplate(22199));
      spawn2.setLoc(actor.getLoc());
      spawn2.doSpawn(true);
      spawn2.stopRespawn();
View Full Code Here

      spawn1.stopRespawn();

      L2Spawn spawn2 = new L2Spawn(NpcTable.getTemplate(22199));
      spawn2.setLoc(actor.getLoc());
      spawn2.doSpawn(true);
      spawn2.stopRespawn();
     
      L2Spawn spawn3 = new L2Spawn(NpcTable.getTemplate(22200));
      spawn3.setLoc(actor.getLoc());
      spawn3.doSpawn(true);
      spawn3.stopRespawn();
View Full Code Here

      spawn2.stopRespawn();
     
      L2Spawn spawn3 = new L2Spawn(NpcTable.getTemplate(22200));
      spawn3.setLoc(actor.getLoc());
      spawn3.doSpawn(true);
      spawn3.stopRespawn();

      L2Spawn spawn4 = new L2Spawn(NpcTable.getTemplate(22203));
      spawn4.setLoc(actor.getLoc());
      spawn4.doSpawn(true);
      spawn4.stopRespawn();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.