Display Table Question
I have a trivia app im working on. I want to test all the questions to make sure all the images and texts are int he right spot.
Right now i haveit set to pick a random question and you choose the answer.
How do I tell it "for testing purposes" to show question 1 then go to question 2 then 3 then 4... etc etc.
Right now i haveit set to pick a random question and you choose the answer.
How do I tell it "for testing purposes" to show question 1 then go to question 2 then 3 then 4... etc etc.
Comments
Make a flag boolean, called Debug (i do something like this for all my games).
Inside of whatever rule chooses the clues, make it say that, when debug is true, do the manual load. When it's false, do your random thing.
Just make a rule that says, anytime you press the spacebar or any key you choose, go increment the num and show that clue.