dataFile["admins", player.UserIDString, "Admin"] = "true"
dataFile.Save();and then using an if statement to check it
if(dataFile["admins", player.UserIDString, "Admin"] == "true")
{
}which seems to work perfectly well until you restart the server which it then goes past all of my if statements and does nothing even if its checking if it is null.
The only way i have found to fix it is to clear the datafile but at the same time that really isnt a fix.