Hi
I currently have a question/answer game and it is set up as (eg) : Set int(random(0,4)) ,
---- obviously the game has more than 5 questions -- but for simplicities sake, ---------
anyway
so the game picks one number ( and the game sets the frame, and asks the question. )
the problem arises when the player is near the end of the game
and is repeatedly being asked the same questions over and over.
I would like it so that there is no repeats or duplicates .
I have been working with a basic capx.
My thought process is:
The game would Set a temp_random number and check against a 'line up' of other numbers to test if they
have already been played (AlreadyRan), and if yes, then 'run again' ( run the Set int(random(0,4)) again )
but if not 'Already Ran', then set the number and tag that number already played.
My problem arises when I try to reloop after a duplicate number is detected...
I have trying to figure it out on a capx but it just doesn't want to work....
any idea's?
Thanks for looking and thanks for your help,
much appreciated.