Struggling to remember outfits

Hello!

I am currently editing my first story and I am struggling to get the script to remember an outfit choice. I have my MC pick her outfit at the beginning of the chapter, halfway through the chapter is a flash back scene (where MC wears different clothes) and come back to the present day and the MC is wearing a completely different outfit.

Any and all help is greatly appreciated!
Scranton Place

1 Like

I tried the if/elif/else and it didn’t seem to work. But that could be because I may have entered it wrong. I will go ahead and take a look at the link. thank you so much!

If you’re using the web preview it doesn’t remember choices. Check these on the app and reset story progress. It should work. If it isn’t, there may be a problem with your coding. Feel free to DM me any time if you need help :blush:

2 Likes

still having issues with remembering outfits. Would anyone be willing to look at the script to see where the issue is?

Can you post the outfit choice and then post the if/elif/else you used.

1 Like

CHARLOTTE (think_rubchin)
Alright. Time to change into my costume.

label choose_outfit

    CHARLOTTE (think_rubchin)
(Which outfit should I wear?)

choice (halloween_outfit)
“Angel” {

@CHARLOTTE is dustoff_neutral_loop
@CHARLOTTE changes into CHARLOTTE_angel
@pause for a beat
@pause for a beat

gain chose_angel

} “Sexy Cat” {
@CHARLOTTE is dustoff_neutral_loop
@CHARLOTTE changes into CHARLOTTE_cat
@pause for a beat
@pause for a beat

gain chose_sexycat

} “Devil” {

@CHARLOTTE is dustoff_neutral_loop
@CHARLOTTE changes into CHARLOTTE_devil
@pause for a beat
@pause for a beat

gain chose_devil

}
CHARLOTTE (think_rubchin)
(Hmm.)
CHARLOTTE (flirt_wink_atcamera)
I look hot!

choice
“Of course!”{

    CHARLOTTE (idle_happy_pose)
I look hot!

}
“Ugh, no…”{
@CHARLOTTE is dustoff_neutral_loop

goto choose_outfit
}

and to remember it I wrote:

EXT. POOL HOUSE - NIGHT
sound ambient_crickets
@DUKE changes into DUKE_halloween
@DUKE stands screen center
@DUKE faces left
@CHARLOTTE stands screen left
if (chose_angel) {
@CHARLOTTE changes into CHARLOTTE_angel

} elif (chose_sexycat) {
@CHARLOTTE changes into CHARLOTTE_cat

} elif (chose_devil) {
@CHARLOTTE changes into CHARLOTTE_devil

}

I’m going from a party scene to a flashback and then back to the party scene.

You put the flags in each option which means all those flags will be gained if you try on all the outfits, which is why your if/elif/else is not working properly.

1 Like

Thank you so much! I will give this a try and see if I can get it to work. :smiley:

I am about to pull my hair out lol I filled in everything correctly (at least I think I did)
And now all I am getting is an error code at else saying "unexpected expression: Did you leave out the word choice or forget to put a character name in ALL CAPS

if (halloween_cat) {
@CHARLOTTE changes into CHARLOTTE_cat

} elif (halloween_devil) {
@CHARLOTTE changes into CHARLOTTE_devil

} elif (halloween_fairy){
@CHARLOTTE changes into CHARLOTTE_fairy

} elif (halloween_mikasa){
@CHARLOTTE changes into Charlotte_mikasa

} else (halloween_witch) {
@CHARLOTTE changes into CHARLOTTE_witch
}

else needs to be by itself.

so:

}else{

1 Like

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