Log in

View Full Version : Scenarist random question


rdbello
6th January 2003, 16:20
I would like to make a quiz. I don't know if this is the better way, but I've 5 titles and in each title, 50 pgcs (a presentation, 47 menus with questions, one stillshow with " congratulations" and other with the "your answer is wrong). I need that one of the 47 questions appears randomly. Thanks for any help.

iomagic
6th January 2003, 19:15
Is there any way to read some kind of timer register, or start the timerafter a particular user input? User input combined with random timer value might be an easy approach.

Can't say if this is viable, but just a thought...

UTec
7th January 2003, 05:02
Presentation PGC:

Pre command: GPRMx Random 47
Post commands:

If GPRMx = 1, JumpPGC Menu #1
If GPRMx = 2, JumpPGC Menu #2
If GPRMx = 3, JumpPGC Menu #3
.... so on and so forth up until...
If GPRMx = 47, JumpPGC Menu #47

rdbello
7th January 2003, 15:53
Thanks UTec.