Okay, thanks! I had another question though.
What if I want to show the percentage of how close someone got to a particular result?
Like for instance, let's say there's a page A and page B. There's also variable X, Y, and Z.
To get to page A: X must be 6, Y must be 4, and Z must be 5.
To get to page B: X must be 3, Y must be 9, and Z must be 3.
Now, at the end of the game let's say the player got 5 for all variables. They can't get either option because they don't have the right set of numbers.
But I want to give them what they got closest to, so I say "if they got numbers between 4 and 6 for all three variables, then they got to page A". This works cause now they'll get page A but not page B.
However, let's say there's a page C and to get to this page: X must be 5, Y must be 5, and Z must be 6. Now they'll be given both links. For the purposes of my game that's okay, they can both links so long as they can end up somewhere, but I still want to show them what they got closest to.
So, I want to show them they were closer to C then A. Like, "you were 99% a match for C" and "you were 95% a match for A".
Can I accomplish that? Is that do-able?