String outPath = file.getParent() + "/players/" + name +".dat";
out = new File(outPath);
backupFile(out);
try {
NBTInputStream inStream = new NBTInputStream(new FileInputStream(out));
CompoundTag root = (CompoundTag)inStream.readTag();
inStream.close();
HashMap<String, Tag> rootMap = new HashMap<String, Tag>(root.getValue());
ArrayList<Tag> posTag = new ArrayList<Tag>(((ListTag)rootMap.get("Pos")).getValue());
posTag.set(0, new DoubleTag("x", x));