Examples of MayorNPC


Examples of games.stendhal.server.maps.ados.townhall.MayorNPC

    MockStendlRPWorld.get();
   
    final StendhalRPZone zone = new StendhalRPZone("admin_test");
   
    new MayorNPC().configureZone(zone, null);
     
    final AbstractQuest quest = new DailyItemQuest();
    quest.addToWorld();

  }
View Full Code Here

Examples of games.stendhal.server.maps.ados.townhall.MayorNPC

      StendhalRPZone ratZone = new StendhalRPZone(RAT_ZONES.get(i),100,100);
      SingletonRepository.getRPWorld().addRPZone(ratZone);
    }
   
    final StendhalRPZone zone = new StendhalRPZone("admin_test");
    new MayorNPC().configureZone(zone, null);
    quest.addToWorld();
    npc = SingletonRepository.getNPCList().get("Mayor Chalmers");
    en = npc.getEngine();
   
    /*
 
View Full Code Here

Examples of games.stendhal.server.maps.semos.townhall.MayorNPC

  public void setUp() {

    final StendhalRPZone zone = new StendhalRPZone("admin_test");
   
    new SadScientistNPC().configureZone(zone, null);   
    new MayorNPC().configureZone(zone, null);
   
    AbstractQuest quest = new SadScientist();
    quest.addToWorld();

    player = PlayerTestHelper.createPlayer("bob");
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.