Examples of PaperChase


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

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

  /**
   * 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
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.