Examples of FillDoors()


Examples of l2p.gameserver.model.Reflection.FillDoors()

      if(r.getTeleportLoc() == null)
      {
        r.setTeleportLoc(i.getTeleportCoords());
      }
      r.FillSpawns(i.getSpawnsInfo());
      r.FillDoors(i.getDoors());
    }
    if(minParty <= 1) // для соло инстансов без босса флаг ставится при входе
    {
      player.setVar(name, String.valueOf(System.currentTimeMillis()));
    }
View Full Code Here

Examples of l2p.gameserver.model.Reflection.FillDoors()

      if(r.getTeleportLoc() == null)
      {
        r.setTeleportLoc(i.getTeleportCoords());
      }
      r.FillSpawns(i.getSpawnsInfo());
      r.FillDoors(i.getDoors());
    }
    r.setCoreLoc(r.getReturnLoc());
    r.setReturnLoc(player.getLoc());
    player.setVar("backCoords", r.getReturnLoc().toXYZString());
    player.teleToLocation(r.getTeleportLoc(), r.getId());
View Full Code Here

Examples of l2p.gameserver.model.Reflection.FillDoors()

      if(r.getTeleportLoc() == null)
      {
        r.setTeleportLoc(i.getTeleportCoords());
      }
      r.FillSpawns(i.getSpawnsInfo());
      r.FillDoors(i.getDoors());
    }
    r.setCoreLoc(r.getReturnLoc());
    r.setReturnLoc(player.getLoc());
    for(L2Player member : cc.getMembers())
    {
View Full Code Here

Examples of l2p.gameserver.model.Reflection.FillDoors()

      if(r.getTeleportLoc() == null)
      {
        r.setTeleportLoc(i.getTeleportCoords());
      }
      r.FillSpawns(i.getSpawnsInfo());
      r.FillDoors(i.getDoors());
    }
    World world = new World();
    world.instanceId = r.getId();
    worlds.put(r.getId(), world);
    for(L2Player member : player.getParty().getPartyMembers())
View Full Code Here

Examples of l2p.gameserver.model.Reflection.FillDoors()

      if(r.getTeleportLoc() == null)
      {
        r.setTeleportLoc(i.getTeleportCoords());
      }
      r.FillSpawns(i.getSpawnsInfo());
      r.FillDoors(i.getDoors());
    }
    r.setCoreLoc(r.getReturnLoc());
    r.setReturnLoc(player.getLoc());
    boolean dispellBuffs = iz.isDispellBuffs();
    if(party)
View Full Code Here

Examples of l2p.gameserver.model.Reflection.FillDoors()

      if(r.getTeleportLoc() == null)
      {
        r.setTeleportLoc(i.getTeleportCoords());
      }
      r.FillSpawns(i.getSpawnsInfo());
      r.FillDoors(i.getDoors());
    }
    int timelimit = il.getTimelimit();
    SpawnNpc(r.getId());
    player.setReflection(r);
    player.teleToLocation(il.getTeleportCoords());
View Full Code Here

Examples of l2p.gameserver.model.Reflection.FillDoors()

      if(r.getTeleportLoc() == null)
      {
        r.setTeleportLoc(i.getTeleportCoords());
      }
      r.FillSpawns(i.getSpawnsInfo());
      r.FillDoors(i.getDoors());
    }
    World world = new World();
    world.rooms = new GArray<Room>();
    world.instanceId = r.getId();
    world.status = 0;
View Full Code Here

Examples of l2p.gameserver.model.entity.KamalokaNightmare.FillDoors()

      if(r.getTeleportLoc() == null)
      {
        r.setTeleportLoc(i.getTeleportCoords());
      }
      r.FillSpawns(i.getSpawnsInfo());
      r.FillDoors(i.getDoors());
    }
    player.setVar(name, String.valueOf(System.currentTimeMillis()));
    r.setReturnLoc(player.getLoc());
    player.setVar("backCoords", r.getReturnLoc().toXYZString());
    player.teleToLocation(r.getTeleportLoc(), r.getId());
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.