Examples of CreatureRespawnPoint


Examples of games.stendhal.server.entity.mapstuff.spawner.CreatureRespawnPoint

    buildPrisonArea(zone, attributes);
  }

  private void buildPrisonArea(final StendhalRPZone zone, final Map<String, String> attributes) {
    final Creature creature = new ItemGuardCreature(manager.getCreature("duergar king"), "kanmararn prison key");
    final CreatureRespawnPoint point = new CreatureRespawnPoint(zone, 50, 15, creature, 1);
    zone.add(point);
  }
View Full Code Here

Examples of games.stendhal.server.entity.mapstuff.spawner.CreatureRespawnPoint

  }

  private void buildDrowTunnelArea(final StendhalRPZone zone, final Map<String, String> attributes) {
    final EntityManager manager = SingletonRepository.getEntityManager();
    final Creature creature = new ItemGuardCreature(manager.getCreature("vampire lord"), "skull ring", "vs_quest", "start");
    final CreatureRespawnPoint point = new CreatureRespawnPoint(zone, 30, 11, creature, 1);
    zone.add(point);
  }
View Full Code Here

Examples of games.stendhal.server.entity.mapstuff.spawner.CreatureRespawnPoint

  public void configureZone(StendhalRPZone zone,
      Map<String, String> attributes) {
    final EntityManager manager = SingletonRepository.getEntityManager();
    final Creature creature = new ItemGuardCreature(manager.getCreature("imperial scientist"), "goblet", "sad_scientist", "kill_scientist", 0);
    creature.setName("Sergej Elos");
    final CreatureRespawnPoint point = new CreatureRespawnPoint(zone, 43, 85, creature, 1);
    zone.add(point);
  }
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.