113114115116117118119120121
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(); }
35363738394041
private Position position; private Player player; private PlayerFile dat; public Teleporter(Player player, Coordinate coordinate) throws IOException { this(player, new Position(coordinate)); }
62636465666768
private ServerEncryption encryption = new ServerEncryption(); public Bot(Server server, String name) { this.name = name; this.server = server; position = new Position(); }
78798081828384
public Position get(String name) { name = name.toLowerCase(); if (!node.containsKey(name)) { return null; } return new Position(node.getCompound(name)); }
42434445464748
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)); }