Examples of openDoor()


Examples of lineage2.gameserver.model.entity.Reflection.openDoor()

  {
    final NpcInstance actor = getActor();
    final Reflection ref = actor.getReflection();
    if (checkAllDestroyed(actor.getNpcId()))
    {
      ref.openDoor(DOOR);
      ref.addSpawnWithoutRespawn(TIAT_NPC_ID, TIAT_LOC, 0);
    }
    super.onEvtDead(killer);
  }
 
View Full Code Here

Examples of lineage2.gameserver.model.entity.Reflection.openDoor()

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

Examples of lineage2.gameserver.model.entity.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

Examples of lineage2.gameserver.model.entity.Reflection.openDoor()

    }
    else if (event.equalsIgnoreCase("free_anakim"))
    {
      player.showQuestMovie(ExStartScenePlayer.SCENE_SSQ_SEALING_EMPEROR_1ST);
      player.sendPacket(new SystemMessage(SystemMessage.IN_ORDER_TO_HELP_ANAKIM_ACTIVATE_THE_SEALING_DEVICE_OF_THE_EMPEROR_WHO_IS_POSSESED_BY_THE_EVIL));
      ref.openDoor(door11);
      ThreadPoolManager.getInstance().schedule(new SpawnLilithRoom(ref), 17000);
      return null;
    }
    else if (event.equalsIgnoreCase("shunaiman_q196_4.htm"))
    {
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.