Examples of QuestCompletedCondition


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

  private void createRequestingStep() {
    final SpeakerNPC zara = npcs.get("Zara");

    zara.add(ConversationStates.ATTENDING,
      ConversationPhrases.QUEST_MESSAGES,
      new QuestCompletedCondition(QUEST_SLOT),
      ConversationStates.ATTENDING,
      "I don't have a new task for you. But thank you for the suntan cream. I feel my skin is getting better already!",
      null);
   
    zara.add(ConversationStates.ATTENDING,
View Full Code Here

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

        ConversationStates.QUEST_OFFERED,
        "I'm looking for a drink, should be an exotic one. Can you bring me one?",
        null);
npc.add(ConversationStates.ATTENDING,
    ConversationPhrases.QUEST_MESSAGES,
    new QuestCompletedCondition(QUEST_SLOT),
    ConversationStates.ATTENDING,
    "I'm drunken now thank you!",
    null);

npc.add(ConversationStates.ATTENDING,
View Full Code Here

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

        null);

   
    npc.add(ConversationStates.ATTENDING,
        ConversationPhrases.QUEST_MESSAGES,
        new QuestCompletedCondition(QUEST_SLOT),
        ConversationStates.ATTENDING,
        "Thanks for your help. I am relieved to have the amulet back.",
        null);
   
    npc.add(ConversationStates.ATTENDING,
View Full Code Here

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

        }
      });

    npc.add(ConversationStates.ATTENDING,
      Arrays.asList("iou", "henry", "charles", "note"),
      new QuestCompletedCondition(QUEST_SLOT),
      ConversationStates.ATTENDING,
      "You already got cash for that damned IOU!", null);
  }
View Full Code Here

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

      @Override
      protected void createDialog() {
        add(ConversationStates.IDLE,
          ConversationPhrases.GREETING_MESSAGES,
          new AndCondition(new GreetingMatchesNameCondition(super.getName()),
              new QuestCompletedCondition(QUEST_SLOT)),
          ConversationStates.IDLE,
          "Hi again! Good bye, and remember to behave if you want a present next year!",
            new ChatAction() {
              public void fire(final Player player, final Sentence sentence, final EventRaiser raiser) {
                addHat(player);     
View Full Code Here

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

    this.message=message;
  }

  @Override
  public ChatCondition getTransactionCondition() {
    return new QuestCompletedCondition(questSlot);
  }
View Full Code Here

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

    this.message=message;
  }

  @Override
  public ChatCondition getTransactionCondition() {
    return new QuestCompletedCondition(questSlot);
  }
View Full Code Here

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

    @Override
    protected void createDialog() {
      add(ConversationStates.IDLE,
          ConversationPhrases.GREETING_MESSAGES,
          new AndCondition(new GreetingMatchesNameCondition(getName()),
              new QuestCompletedCondition(QUEST_SLOT)),
          ConversationStates.ATTENDING,
          null,
          new SayTextWithPlayerNameAction("Hi again, [name]. I remember that you solved this problem already. You can do it again, of course."));
     
      add(ConversationStates.IDLE,
View Full Code Here

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

        "You know, it's hard to get food round here. I don't have any #supplies for next year.",
        null);
   
    npc.add(ConversationStates.ATTENDING,
        ConversationPhrases.QUEST_MESSAGES,
        new QuestCompletedCondition(QUEST_SLOT),
        ConversationStates.ATTENDING,
        "I'm inspired to work again! I'm making things for Wrvil now. Thanks for getting me interested in forging again.",
        null);
   
    npc.add(ConversationStates.ATTENDING,
View Full Code Here

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

  private void getBookStep() {
    final SpeakerNPC npc = npcs.get("Ceryl");

    npc.add(ConversationStates.ATTENDING,
        "book",
        new AndCondition(new QuestInStateCondition(QUEST_SLOT, "seeking_book"), new QuestCompletedCondition("ceryl_book")),
        ConversationStates.ATTENDING,
        "Currently the #gem #book is quite popular...",
        null);
   
    npc.add(ConversationStates.ATTENDING,
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.