Eliminating/Disappearing Choices
1- Here is how you can have choices disappear once they have been tapped on, then have the option to tap on more choices or to end the choice.
Expand Coding
label main_choice
NARRATOR
Choose all options.
choice
"Option One" if ( [NOT tapped_1] ) {
gain tapped_1
gain tapped_once
goto option_1
} "Option Two" if ( [NOT tapped_2] ) {
gain tapped_2
gain tapped_once
goto option_2
} "Option Three" if ( [NOT tapped_3] ) {
gain tapped_3
gain tapped_once
goto option_3
} "Option Four" if ( [NOT tapped_4] ) {
gain tapped_4
gain tapped_once
goto option_4
} <GREEN> "I'm done choosing" if (tapped_once) {
goto done_choosing
}
label option_1
#scene goes here
goto main_choice
label option_2
#scene goes here
goto main_choice
label option_3
#scene goes here
goto main_choice
label option_4
#scene goes here
goto main_choice
label done_choosing
#continue on with your story here
2- Here is how you can have choices disappear once they have been tapped on, then continue on with the story once all choices have been tapped on.
Expand Coding
label main_choice
if (tapped_1) {
if (tapped_2) {
if (tapped_3) {
if (tapped_4) {
goto done_choosing
}}}}
NARRATOR
Choose all options.
choice
"Option One" if ( [NOT tapped_1] ) {
gain tapped_1
goto option_1
} "Option Two" if ( [NOT tapped_2] ) {
gain tapped_2
goto option_2
} "Option Three" if ( [NOT tapped_3] ) {
gain tapped_3
goto option_3
} "Option Four" if ( [NOT tapped_4] ) {
gain tapped_4
goto option_4
}
label option_1
#scene goes here
goto main_choice
label option_2
#scene goes here
goto main_choice
label option_3
#scene goes here
goto main_choice
label option_4
#scene goes here
goto main_choice
label done_choosing
#continue on with your story here