Package games.stendhal.server.maps.deathmatch

Examples of games.stendhal.server.maps.deathmatch.DeathmatchInfo


  public AdosDeathmatch(final StendhalRPZone zone, final Area area) {
    this.zone = zone;
    arena = area;
    logger.debug("big constructor for zone", new Throwable());
    final Spot entrance = new Spot(zone, 96, 75);
    deathmatchInfo = new DeathmatchInfo(arena, zone, entrance);
    // do not let players scroll out of deathmatch
    Rectangle r = area.getShape().getBounds();
    zone.disallowOut(r.x, r.y, r.width, r.height);
  }
View Full Code Here

TOP

Related Classes of games.stendhal.server.maps.deathmatch.DeathmatchInfo

Copyright © 2018 www.massapicom. 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.