Package bosses.FourSepulchersSpawn

Examples of bosses.FourSepulchersSpawn.GateKeeper


   * Method openNextDoor.
   * @param npcId int
   */
  public void openNextDoor(int npcId)
  {
    GateKeeper gk = FourSepulchersManager.getHallGateKeeper(npcId);
    gk.door.openMe();
    if (_closeTask != null)
    {
      _closeTask.cancel(false);
    }
View Full Code Here


    }
  }

  public void openNextDoor(int npcId)
  {
    GateKeeper gk = FourSepulchersManager.getHallGateKeeper(npcId);
    gk.door.openMe();
    if(_closeTask != null)
    {
      _closeTask.cancel(true);
    }
View Full Code Here

TOP

Related Classes of bosses.FourSepulchersSpawn.GateKeeper

Copyright © 2018 www.massapicom. 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.