Hide Reuse Limit

Hi all

I want to make 2 of 6 options available in character development (as in, which two hobbies does you engage in). Hide reuse lets me remove the one they’ve already selected, but how to I get the script to limit it to only 2 options, then move on to the next screen?

Thanks so much in advance!

John

Something like this

*temp hobbiesPicked 0

*label pick_hobbies

Pick hobbies

*fake_choice
*disable_reuse # Basketball
*comment set a variable so you know you picked basketball
*set hobbiesPicked + 1
*goto picked
*disable_reuse # Baseball
*comment set a variable so you know you picked baseball
*set hobbiesPicked + 1
*goto picked
…

*label picked

*if (hobbiesPicked = 2)
*goto advance
*else
*goto pick_hobbies

*label advance

*comment next scene goes here
1 Like

Thanks so much! The hobby is just there to adjust statistics, then instead of setting a variable to track it, I just set the stat change, right?

Thanks!