Package games.stendhal.server.maps.quests

Examples of games.stendhal.server.maps.quests.PaperChase


  public void addToWorld() {
    removeNPC("Fidorea");

    final StendhalRPZone zone = SingletonRepository.getRPWorld().getZone("0_semos_mountain_n2");
    new MakeupArtistNPC().buildFidorea(zone, 96, 109);
    PaperChase paperChase = (PaperChase) StendhalQuestSystem.get().getQuest("PaperChase");
    if (paperChase != null) {
      paperChase.addToStarterNPCs();
    }
  }
View Full Code Here


  /**
   * updates the PaperChase quest so that it points to the correct sign.
   */
  private void updateQuest() {
    PaperChase paperChase = (PaperChase) StendhalQuestSystem.get().getQuest("PaperChase");
    if (paperChase != null) {
      paperChase.setSign(sign);
    }
  }
View Full Code Here

TOP

Related Classes of games.stendhal.server.maps.quests.PaperChase

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.