Package simpleserver.nbt

Examples of simpleserver.nbt.PlayerFile.save()


  void connect() throws UnknownHostException, IOException {
    PlayerFile dat = new PlayerFile(name, server);
    dat.setInventory(inv);
    dat.setPosition(player.position());
    dat.setLook(player.yaw(), player.pitch());
    dat.save();
    super.connect();
  }

  public void add(int id, int count, int damage) {
    inv.add(id, count, damage);
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.