Examples of openDoor()


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

    }
    Reflection ref = actor.getReflection();
    // Открываем дверь, спауним тиата
    if(checkAllDestroyed(actor.getNpcId(), ref.getId()))
    {
      ref.openDoor(DOOR);
      spawnTiat();
      // Показываем заставку спауна Тиата
      for(L2Player pl : L2World.getAroundPlayers(actor))
      {
        if(pl != null)
View Full Code Here

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

      {
        case CrystalPrisonGuard:
          Reflection ref = ReflectionTable.getInstance().get(currentReflection);
          for(int doorId : doors)
          {
            ref.openDoor(doorId);
          }
          for(int i = 0; i < _crystalineLocation.length; i++)
          {
            _crystaline[i] = spawn(_crystalineLocation[i], CrystalPrisonGuard);
            _crystaline[i].setRunning();
View Full Code Here

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

    Location teleto = null;
    boolean spawn_captain = false;
    if(npcId == ORACLE_GUIDE2)
    {
      Reflection r = ReflectionTable.getInstance().get(world.instanceId);
      r.openDoor(DOOR5);
      r.openDoor(DOOR6);
    }
    else if(npcId == OG1)
    {
      spawn_captain = true;
View Full Code Here

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

    boolean spawn_captain = false;
    if(npcId == ORACLE_GUIDE2)
    {
      Reflection r = ReflectionTable.getInstance().get(world.instanceId);
      r.openDoor(DOOR5);
      r.openDoor(DOOR6);
    }
    else if(npcId == OG1)
    {
      spawn_captain = true;
    }
View Full Code Here

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

    world.bosses = 5;
    worlds.put(r.getId(), world);
    if(type == 1)
    {
      runEmeraldAndSteamFirstRoom(world);
      r.openDoor(DOOR1);
      r.openDoor(DOOR2);
    }
    else if(type == 2)
    {
      runCoralGardenHall(world);
View Full Code Here

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

    worlds.put(r.getId(), world);
    if(type == 1)
    {
      runEmeraldAndSteamFirstRoom(world);
      r.openDoor(DOOR1);
      r.openDoor(DOOR2);
    }
    else if(type == 2)
    {
      runCoralGardenHall(world);
      r.openDoor(CORAL_GARDEN_GATEWAY);
View Full Code Here

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

      r.openDoor(DOOR2);
    }
    else if(type == 2)
    {
      runCoralGardenHall(world);
      r.openDoor(CORAL_GARDEN_GATEWAY);
    }
    for(L2Player member : player.getParty().getPartyMembers())
    {
      if(member != player)
      {
View Full Code Here

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

    world.DarnelRoom.npclist = new HashMap<L2NpcInstance, Boolean>();
    L2NpcInstance newNpc;
    newNpc = addSpawnToInstance(DARNEL, new Location(152759, 145949, -12588, 21592), 0, world.instanceId);
    world.DarnelRoom.npclist.put(newNpc, false);
    Reflection r = ReflectionTable.getInstance().get(world.instanceId);
    r.openDoor(DOOR3);
    r.openDoor(DOOR4);
  }

  private void runSteamRoom1(World world)
  {
View Full Code Here

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

    L2NpcInstance newNpc;
    newNpc = addSpawnToInstance(DARNEL, new Location(152759, 145949, -12588, 21592), 0, world.instanceId);
    world.DarnelRoom.npclist.put(newNpc, false);
    Reflection r = ReflectionTable.getInstance().get(world.instanceId);
    r.openDoor(DOOR3);
    r.openDoor(DOOR4);
  }

  private void runSteamRoom1(World world)
  {
    world.status = 20;
View Full Code Here

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

      {
        for(int i = 0; i <= 7; i++)
        {
          if(mob[2] == i && world.ForthRoom.counter == i)
          {
            ref.openDoor(W1 + i);
            world.ForthRoom.counter += 1;
            if(world.ForthRoom.counter == 7)
            {
              runFifthRoom(world);
            }
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.