Examples of MakeupArtistNPC


Examples of games.stendhal.server.maps.ados.city.MakeupArtistNPC

    // which must be loaded because ramon is defined there!
    MockStendlRPWorld.get().addRPZone(new StendhalRPZone("-1_athor_ship_w2"));
    // a lot of NPCs to load for this quest!
   
    new WizardNPC().configureZone(zone, null);
    new MakeupArtistNPC().configureZone(zone, null)
    new AnimalKeeperNPC().configureZone(zone, null);
    // Dr feelgood isn't part of pizza quest but katinka is and we have to load zoofood
    // so that we have her correct 'hi' and he's in that.
    new VeterinarianNPC().configureZone(zone, null);
    new WeaponsCollectorNPC().configureZone(zone, null);
View Full Code Here

Examples of games.stendhal.server.maps.ados.city.MakeupArtistNPC

  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.ados.city.MakeupArtistNPC

   */
  public boolean removeFromWorld() {
    removeNPC("Fidorea");

    final StendhalRPZone zone = SingletonRepository.getRPWorld().getZone("0_ados_city_n");
    new MakeupArtistNPC().buildFidorea(zone, 20, 13);

    return true;
  }
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.