Outfit choice issue

Okay so I’m doing an outfit choice and I want my script to remember it.
my code works I have no errors as far as the error box says but the problem I’m having is I click on “Pirate costume”{ choice but yet it only remembers the second choice “Grass Nymph costume”{ it completly ignores the first choice “Dragonfly costume”{ and dosen’t go straight to the one I chose which is “Pirate costume”{

My script is below, if anyone could help me out on finding out why it’s doing this?
Picture examples below as well

Picture examples (scroll down more for the coding script)



CODING SCRIPT

INT. TRENDY BOHO FLAT BEDROOM - DAY
&zoom on 0 0 to 100% in 0
&MAIN CHARACTER stands screen center in zone 1 AND MAIN CHARACTER faces right AND MAIN CHARACTER is think_rubchin
@MAIN CHARACTER changes into MAIN CHARACTER_default
@speechbubble is 155 270 to 91%

label dressing_game_1

NARR (MAIN CHARACTER)
What costume should I wear?

choice
“Dragonfly costume”{

@MAIN CHARACTER changes into STUDENT06_Halloween

gain dragonfly

}
“Grass Nymph costume”{

@MAIN CHARACTER changes into BFF 01_Halloween

gain nymph

}
“Pirate costume”{

@MAIN CHARACTER changes into STUDENT02_Halloween

gain pirate

}

&MAIN CHARACTER is think_rubchin

    NARR (MAIN CHARACTER)
    Do I want to wear this one?

choice
“It’s perfect!” {

@speechbubble is 222 287 to 70% with tail_top_left

    MAIN CHARACTER (talk_excited_happy)
    It's perfect!

} “No, I want to try on the others!” {
goto dressing_game_1
}

INT. BLACK - NIGHT

NARR
Later that night

INT. COLLEGE BATHROOM - DAY
&zoom on 0 0 to 100% in 0
&cut to zone 2
&MAIN CHARACTER stands screen center in zone 1 AND MAIN CHARACTER faces right AND MAIN CHARACTER is think_rubchin

if (dragonfly){

@MAIN CHARACTER changes into STUDENT06_Halloween

}elif (nymph){

@MAIN CHARACTER changes into BFF 01_Halloween

}
elif (pirate){

@MAIN CHARACTER changes into STUDENT02_Halloween

}

@MAIN CHARACTER walks to screen center in zone 1 AND MAIN CHARACTER is walk_neutral_loop
@MAIN CHARACTER is deepbreath

MAIN CHARACTER 
(I'm so tierd)

Since you have gains each time you click a choice with gains you have to restart the progress as the previewer still remembers your previous gain.

1 Like

So refresh the page?

1 Like

Press navigation and try restart episode. Try it with each choice you pick.

1 Like

Okay I will remember to do that and yes it worked thank you for letting me know hun :heart: :heart:

1 Like

You’re welcome! :upside_down_face:

1 Like

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