Little help here 😁

So a long long time ago I saw a post on the old forum about cool tricks you could do for your story like disappearing choices but I can’t find that forum anymore so I was wondering if anyone knows how to do that and if they can show me an example on how to do it. Thanks! :grin:

Here is an example/template I made a while back:

NARRATOR
FIRST TIME.

choice
"Option 1" {
# OPTION 1 goes here
gain PICKED_OPTION_1

} "Option 2" {
# OPTION 2 goes here
gain PICKED_OPTION_2

} "Option 3" {
# OPTION 3 goes here
gain PICKED_OPTION_3
}


# Anything between the first and second choices goes here (optional)


if (PICKED_OPTION_1) {

NARRATOR
SECOND TIME.
choice
"Option 2" {
# OPTION 2 goes here
gain PICKED_OPTION_2
} "Option 3" {
# OPTION 3 goes here
gain PICKED_OPTION_3
}

} elif (PICKED_OPTION_2) {

NARRATOR
SECOND TIME.
choice
"Option 1" {
# OPTION 1 goes here
gain PICKED_OPTION_1
} "Option 3" {
# OPTION 3 goes here
gain PICKED_OPTION_3
}

} else {

NARRATOR
SECOND TIME.
choice
"Option 1" {
# OPTION 1 goes here
gain PICKED_OPTION_1
} "Option 2" {
# OPTION 2 goes here
gain PICKED_OPTION_2
}
}


# Anything between the second and third choices goes here (optional)


if (PICKED_OPTION_1 and PICKED_OPTION_2) {

NARRATOR
THIRD AND LAST TIME.
choice
"Option 3" {
# OPTION 3 goes here
}

} elif (PICKED_OPTION_1 and PICKED_OPTION_3) {

NARRATOR
THIRD AND LAST TIME.
choice
"Option 2" {
# OPTION 2 goes here
}

} elif (PICKED_OPTION_2 and PICKED_OPTION_3) {

NARRATOR
THIRD AND LAST TIME.
choice
"Option 1" {
# OPTION 1 goes here
}
}
7 Likes

Omg thank you so much!

Closing due to one month of inactivity :slight_smile: