Adding gem choices

So I used made a gem choice for a special piece of clothing, but I don’t know how to use the IF command so that if the reader bought the dress, than it’d give her a different response. If it doesn’t make sense, please feel free to let me know so I can screenshot the script :slight_smile:

if (choice is "option1") {

}elise (choice is "option2") {

}else {

}

1 Like

Where would I put those commands in my script?

can someone please help me? :sweat_smile:

You’d have to use if/elif/else:

Here is the template for it:

if (glam_dress is "Wear the dress and impress Kassidy" {

#WRITE OUT WHAT WOULD HAPPEN IF THEY ARE WEARING THE DRESS

} else {

#WRITE OUT WHAT WOULD HAPPEN IF THEY **AREN'T** WEARING THE DRESS

}

If you still don’t understand, try reading this:

1 Like