Package com.l2jfrozen.gameserver.model.quest

Examples of com.l2jfrozen.gameserver.model.quest.Quest.reload()


  public final boolean reload(String questFolder)
  {
    Quest q = getQuest(questFolder);
    if(q == null)
      return false;
    return q.reload();
  }

  /**
   * Reloads a the quest given by questId.<BR>
   * <B>NOTICE: Will only work if the quest name is equal the quest folder name</B>
View Full Code Here


  public final boolean reload(int questId)
  {
    Quest q = this.getQuest(questId);
    if(q == null)
      return false;
    return q.reload();
  }

  public final void reloadAllQuests()
  {
    _log.info("Reloading Server Scripts");
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.