Examples of QuestCompletedCondition


Examples of games.stendhal.server.entity.npc.condition.QuestCompletedCondition

    final String epilog = "You can find answers to frequently asked questions by typing #/faq \nYou can read about some of the currently most powerful and successful warriors at #http://stendhalgame.org\n ";
   
      //This is used if the player returns, asks for #help and then say #yes
      npc.add(ConversationStates.ATTENDING,
      ConversationPhrases.YES_MESSAGES, new QuestCompletedCondition(QUEST_SLOT),
      ConversationStates.ATTENDING,
      epilog + "You know, you remind me of my younger self...",
      null);

    final List<ChatAction> reward2 = new LinkedList<ChatAction>();
View Full Code Here

Examples of lineage2.gameserver.model.quest.startcondition.impl.QuestCompletedCondition

   * Method addQuestCompletedCheck.
   * @param clazz Class<?>
   */
  public void addQuestCompletedCheck(Class<?> clazz)
  {
    startConditionList.add(new QuestCompletedCondition(clazz.getSimpleName()));
  }
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.