Package com.l2jfrozen.gameserver.model.quest

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


    if(qs == null && !Config.ALT_DEV_NO_QUESTS){
      q = QuestManager.getInstance().getQuest("255_Tutorial");
    }
   
    if(q != null)
      q.newQuestState(player);
  }

  @Override
  public String getType()
  {
View Full Code Here


        // Check for start point
        for (Quest temp : getTemplate().getEventQuests(Quest.QuestEventType.QUEST_START))
        {
          if (temp == q)
          {
            qs = q.newQuestState(player);
            break;
          }
        }
      }
    }
View Full Code Here

      if(!Config.ALT_DEV_NO_QUESTS)
        q = QuestManager.getInstance().getQuest(quest);
     
      if(q == null)
        return retval;
      qs = q.newQuestState(this);
    }
    if(qs != null)
    {
      if(getLastQuestNpcObject() > 0)
      {
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.