I have an sqlite table that shows scores from different game modes. In one of the columns, I don't want the score to show up unless the user reaches the final 5th level, but I also don't want it to be recorded as a 0 either. I want it to be as if the game was never played. No score recorded at all. Here's what I have....
if(appDelegate.easymediumhard == 2 && gameVarLevel == 5){
if(gameVarLevel == 5){
globalScore = timeSeconds;
}
else if(gameVarLevel != 5){
????????????
}
}
Now I know i need the else if statement but I don't know what it should be.