Examples of configureZone()


Examples of games.stendhal.server.maps.ados.hauntedhouse.WomanGhostNPC.configureZone()

    zoneConf.configureZone(zone, null);
    npc = SingletonRepository.getNPCList().get("Carena");
    en = npc.getEngine();

    zoneConf = new KidGhostNPC();
    zoneConf.configureZone(zone, null);

    zoneConf = new games.stendhal.server.maps.athor.cave.GhostNPC();
    zoneConf.configureZone(zone, null);

    zoneConf = new games.stendhal.server.maps.orril.dungeon.GhostNPC();
View Full Code Here

Examples of games.stendhal.server.maps.ados.hauntedhouse.WomanGhostNPC.configureZone()

    zoneConf = new KidGhostNPC();
    zoneConf.configureZone(zone, null);

    zoneConf = new games.stendhal.server.maps.athor.cave.GhostNPC();
    zoneConf.configureZone(zone, null);

    zoneConf = new games.stendhal.server.maps.orril.dungeon.GhostNPC();
    zoneConf.configureZone(zone, null);

    zoneConf = new games.stendhal.server.maps.wofol.house5.GhostNPC();
View Full Code Here

Examples of games.stendhal.server.maps.ados.hauntedhouse.WomanGhostNPC.configureZone()

    zoneConf = new games.stendhal.server.maps.athor.cave.GhostNPC();
    zoneConf.configureZone(zone, null);

    zoneConf = new games.stendhal.server.maps.orril.dungeon.GhostNPC();
    zoneConf.configureZone(zone, null);

    zoneConf = new games.stendhal.server.maps.wofol.house5.GhostNPC();
    zoneConf.configureZone(zone, null);

    final AbstractQuest quest = new FindGhosts();
View Full Code Here

Examples of games.stendhal.server.maps.ados.hauntedhouse.WomanGhostNPC.configureZone()

    zoneConf = new games.stendhal.server.maps.orril.dungeon.GhostNPC();
    zoneConf.configureZone(zone, null);

    zoneConf = new games.stendhal.server.maps.wofol.house5.GhostNPC();
    zoneConf.configureZone(zone, null);

    final AbstractQuest quest = new FindGhosts();
    quest.addToWorld();
    en = npc.getEngine();
View Full Code Here

Examples of games.stendhal.server.maps.ados.outside.CloaksCollectorNPC.configureZone()

  }

  @Before
  public void setUp() {
    final ZoneConfigurator zoneConf = new CloaksCollectorNPC();
    zoneConf.configureZone(new StendhalRPZone("admin_test"), null);
    npc = SingletonRepository.getNPCList().get("Bario");

    final AbstractQuest quest = new CloaksForBario();
    quest.addToWorld();
    en = npc.getEngine();
View Full Code Here

Examples of games.stendhal.server.maps.ados.swamp.DeathmatchRecruiterNPC.configureZone()

    Log4J.init();
    PlayerTestHelper.generateNPCRPClasses();
    MockStendlRPWorld.get();
    MockStendlRPWorld.get().addRPZone(ados_wall_n);
    final DeathmatchRecruiterNPC configurator =  new DeathmatchRecruiterNPC();
    configurator.configureZone(zone, null);
    // some of the recruiter responses are defined in the quest not the configurator
   
    new AdosDeathmatch(ados_wall_n, new Area(ados_wall_n, new Rectangle2D.Double(0, 0, ados_wall_n.getWidth(), ados_wall_n.getHeight()))).addToWorld()
  }
 
View Full Code Here

Examples of games.stendhal.server.maps.amazon.hut.PrincessNPC.configureZone()

  }

  @Before
  public void setUp() {
    final ZoneConfigurator zoneConf = new PrincessNPC();
    zoneConf.configureZone(new StendhalRPZone("admin_test"), null);
    npc = SingletonRepository.getNPCList().get("Princess Esclara");
    en = npc.getEngine();

    final AbstractQuest quest = new AmazonPrincess();
    quest.addToWorld();
View Full Code Here

Examples of games.stendhal.server.maps.fado.weaponshop.RingSmithNPC.configureZone()

    Log4J.init();
    MockStendlRPWorld.get();
    MockStendhalRPRuleProcessor.get();
    final StendhalRPZone zone = new StendhalRPZone("admin_test");
    final RingSmithNPC ognir = new RingSmithNPC();
    ognir.configureZone(zone, null);

    final AbstractQuest quest = new RingMaker();
    quest.addToWorld();
    npc = SingletonRepository.getNPCList().get("Ognir");
    en = npc.getEngine();
View Full Code Here

Examples of games.stendhal.server.maps.kotoch.SmithNPC.configureZone()

  }

  @Before
  public void setUp() {
    final ZoneConfigurator zoneConf = new SmithNPC();
    zoneConf.configureZone(new StendhalRPZone("admin_test"), null);
    npc = SingletonRepository.getNPCList().get("Vulcanus");

    final AbstractQuest quest = new StuffForVulcanus();
    quest.addToWorld();
    en = npc.getEngine();
View Full Code Here

Examples of games.stendhal.server.maps.nalwor.tower.PrincessNPC.configureZone()

  }

  @Before
  public void setUp() {
    ZoneConfigurator zoneConf = new PrincessNPC();
    zoneConf.configureZone(new StendhalRPZone("admin_test"), null);
    npc = SingletonRepository.getNPCList().get("Tywysoga");
    en = npc.getEngine();

    final StendhalRPZone zone = new StendhalRPZone("int_semos_house");
    MockStendlRPWorld.get().addRPZone(zone);
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.