settingsFile = new File(ModLoader.getMinecraftInstance().getAppDir("minecraft"), "updateManagerSettings.dat");
try {
if(!settingsFile.exists()){
settingsFile.createNewFile();
settingsCompound = new NBTTagCompound();
setBoolean("autoDownload", false);
setBoolean("smpEnable", false);
setInt("checkDelay", 900);
CompressedStreamTools.writeCompressed(settingsCompound, new FileOutputStream(settingsFile));