Examples of DoorTable


Examples of com.l2jfrozen.gameserver.datatables.csv.DoorTable

   
    Runtime.getRuntime().addShutdownHook(Shutdown.getInstance());
   
    try
    {
      DoorTable doorTable = DoorTable.getInstance();
     
      // Opened by players like L2OFF
      //doorTable.getDoor(19160010).openMe();
      //doorTable.getDoor(19160011).openMe();
     
      doorTable.getDoor(19160012).openMe();
      doorTable.getDoor(19160013).openMe();
      doorTable.getDoor(19160014).openMe();
      doorTable.getDoor(19160015).openMe();
      doorTable.getDoor(19160016).openMe();
      doorTable.getDoor(19160017).openMe();
      doorTable.getDoor(24190001).openMe();
      doorTable.getDoor(24190002).openMe();
      doorTable.getDoor(24190003).openMe();
      doorTable.getDoor(24190004).openMe();
      doorTable.getDoor(23180001).openMe();
      doorTable.getDoor(23180002).openMe();
      doorTable.getDoor(23180003).openMe();
      doorTable.getDoor(23180004).openMe();
      doorTable.getDoor(23180005).openMe();
      doorTable.getDoor(23180006).openMe();
      doorTable.getDoor(25150002).openMe();
      doorTable.getDoor(25150003).openMe();
      doorTable.getDoor(25150004).openMe();
      doorTable.getDoor(25150005).openMe();
      doorTable.getDoor(25150006).openMe();
      doorTable.getDoor(25150012).openMe();
      doorTable.getDoor(25150013).openMe();
      doorTable.getDoor(25150014).openMe();
      doorTable.getDoor(25150015).openMe();
      doorTable.getDoor(25150016).openMe();
      doorTable.getDoor(25150032).openMe();
      doorTable.getDoor(25150033).openMe();
      doorTable.getDoor(25150034).openMe();
      doorTable.getDoor(25150035).openMe();
      doorTable.getDoor(25150036).openMe();
      doorTable.checkAutoOpen();
      doorTable = null;
    }
    catch (NullPointerException e)
    {
      _log.info("There is errors in your Door.csv file. Update door.csv");
View Full Code Here

Examples of com.l2jfrozen.gameserver.datatables.csv.DoorTable

  }

  public void openNextDoor(int npcId)
  {
    int doorId = FourSepulchersManager.getInstance().getHallGateKeepers().get(npcId).intValue();
    DoorTable _doorTable = DoorTable.getInstance();
    _doorTable.getDoor(doorId).openMe();

    if(_closeTask != null)
    {
      _closeTask.cancel(true);
    }
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.