Package simpleserver

Examples of simpleserver.Position


      this.isPublic = isPublic;
      this.invites = invites;
    }

    public HomePoint(NBTCompound tag) {
      position = new Position(tag);
      isPublic = tag.getByte(PUBLIC).get().equals((byte) 1);
      invites = tag.getList(INVITES).cast();
    }
View Full Code Here


  private Position position;
  private Player player;
  private PlayerFile dat;

  public Teleporter(Player player, Coordinate coordinate) throws IOException {
    this(player, new Position(coordinate));
  }
View Full Code Here

  private ServerEncryption encryption = new ServerEncryption();

  public Bot(Server server, String name) {
    this.name = name;
    this.server = server;
    position = new Position();
  }
View Full Code Here

  public Position get(String name) {
    name = name.toLowerCase();
    if (!node.containsKey(name)) {
      return null;
    }
    return new Position(node.getCompound(name));
  }
View Full Code Here

  private String ev = null;

  private Timer timer = new Timer();

  public NpcBot(String name, String e, Server s, Coordinate coordinate) throws IOException {
    this(name, e, s, new Position(coordinate));
  }
View Full Code Here

TOP

Related Classes of simpleserver.Position

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.