Hi! I’m currently coding a personality quiz using the points system and I’m in a bit of trouble.
There are 18 questions and there are five categories: Air, Water, Fire, Earth, and Metal. There are different charcters for each one and every time the reader chooses and answer that corresponds with that element that character recieves a point.
At the end I used the coding:
if (AIR > FIRE and METAL and WATER and EARTH){
goto airresult
}
and then the same thing with the other results. The issue is that no matter what the air result always comes up! Even when I select only fire or water answers the air result is the only thing I get. I’ve tried using gains and labels and anything I can think of. Any ideas on what to do?