So I have 10 Public Integers (all with different names, so there not in an array) and I have an if statement that I want to affect the integers not equal to one.
if(1Num != 1 || 2Num != 1 || 3Num != 1 || 4Num != 1 || 5Num != 1 || 6Num != 1 || 7Num != 1 || 8Num != 1 || 9Num != 1)
{
//PlayerPrefs.SetInt("1Value", 2);
PlayerPrefs.SetInt("2Value", 2);
PlayerPrefs.SetInt("3Value", 2);
PlayerPrefs.SetInt("4alue", 2);
PlayerPrefs.SetInt("5Value", 2);
PlayerPrefs.SetInt("6Value", 2);
PlayerPrefs.SetInt("7Value", 2);
PlayerPrefs.SetInt("8Value", 2);
PlayerPrefs.SetInt("9Value", 2);
PlayerPrefs.SetInt("10Value", 2);
}