Unexpected STRING help

Can someone tell me what im doing wrong with remembering outfits with the point system?

EXT. TROPICAL BEACH - DAY
################################## SCENE 11 ##################################
@cut to zone 2
@LIZZIE changes into LIZZIE_swimsuit1

if “One piece Swimsuits” {
if (MC2 = 1) {
@MC changes into MC_swimsuittwopiece1
} elif (MC2 = 2) {
@MC changes into MC_swimsuittwopiece2
} elif (MC2 = 3) {
@MC changes into MC_swimsuittwopiece3
}
} else { “Two Piece Swimsuits”
if (MC = 1) {
@MC changes into MC_swimsuitonepiece1
} elif (MC = 2) {
@MC changes into MC_swimsuitonepiece2
} elif (MC = 3) {
@MC changes into MC_swimsuitonepiece3
}
}

1 Like

If you’re trying to remember a choice, the correct format is this:

So the choice that you’re remembering should have a choice name.

Also, the “else” should be by itself with nothing in brackets next to it like this

} else {

3 Likes