I need an addition to this script

@Dara.Amarie Hi Dara i was hoping if you could possibly, make this a four option code for me. Please and thank you so much!!
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

}
}

I can do it if you still need it. I have advanced branching experience.

1 Like

Oh thank you but I figured it out!!!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.