How to ue if,elif else in choices

hey guys can someone tell me how to use if,else,elif in my choice like the reader chooses the outfit she wanna wear to club blah blah blah outside outside the club the dude put’s his jacket on her how to know what outfit she is gonna wear so i can make the same outfit but this time with a jacket sorry if i’m confusing

Hi, I highly encourage you to go over these guides :blob_sun:

Outfit games:

&

Can test on the app :nerd_face: If you’re using gains, remember to reset your gains (also called flags) so you can test out other options: HOW TO: Reset Story Progress + Bonus Stuff :blob_sun:

#Example:

label WEAR

NARR
Which outfit do you wanna wear?

choice (DESIGN)
“Red dress”{

}“Blue dress with jacket”{

}

NARR
Are you sure?

choice
“Yes”{

}“No”{

goto WEAR

}

#then to remember it:

if (DESIGN is “Red dress”) {
#scene here for remembering this choice; guy gives her the jacket.
}else{
#scene here for remembering the blue dress with jacket choice.
}

#Just remember, if for the first option, elif for all in between, and else always for the last (else would need to be by itself). Also this thread would go in the Directing category on the forums instead of Art Resources.

is it still gonna be the same if i have 4 clothing options

#Example:

label WEAR

NARR
Which outfit do you wanna wear?

choice (DESIGN)
“Red dress”{

}“Blue dress”{

}“Green dress”{

}“Orange dress”{

}

NARR
Are you sure?

choice
“Yes”{

}“No”{

goto WEAR

}

#continue story

#then to remember it:

if (DESIGN is “Red dress”) {

#scene for remembering the red dress choice.

} elif (DESIGN is “Blue dress”) {

#scene for remembering the blue dress choice.

} elif (DESIGN is “Green dress”) {

#scene for remembering the green dress choice.

}else{

#scene for remembering the orange dress choice.

}

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