Remembering Clothing Choices

I need help with a template that allows readers to have their character enter into the next scene/episode with the outfit of their choice. Please help!! Any solutions?

1 Like

Did they chose the outfit at the end of the episode? Like has the character changed into another outfit since they have chosen that outfit?

Moved to Directing Helps and Tips since it’s for a script template. Make sure to check out our Forum Tutorial for more info about where to correctly create topics, and feel to ask me if there are any questions. :wink:

label outfit_start
YOU
What should I wear?
choice
“Dress” {
@YOU is dustoff
@YOU changes into DRESS
goto outfit_choose
} “Jeans” {
@YOU is dustoff
@YOU changes into JEANS
goto outfit_choose
} “Skirt” {
@YOU is dustoff
@YOU changes into SKIRT
goto outfit_choose
}
label outfit_choose
YOU (think)
Should I wear this?
choice
“Yes” {
goto end
} “No”
YOU (talk_think)
Maybe something else
goto outfit_start
}
#continue your story here

Until you put
@YOU changes into OUTFIT, the outfit will stay the same all through episodes

They’ll automatically have the outfits on unless you change them however if you want to change back into the outfits they picked cause you changed out, you’ll find useful links such as remembering choices and a dressing game here: https://linktr.ee/dara.amarie.ep

Good luck!

First you can write something like this in your script:

label outfit_pick
YOU (talk_think)
What should I wear?
choice (outfit01)
“Dress” {
@YOU is dustoff_loop
@YOU changes into DRESS
@YOU starts dustoff_loop
} “Jeans” {
@YOU is dustoff_loop
@YOU changes into JEANS
@YOU starts dustoff_loop
} “Skirt” {
@YOU is dustoff_loop
@YOU changes into SKIRT
@YOU starts dustoff_loop
}

@pause for 2

YOU (think)
(Should I wear this?)
choice
“Yes” {
goto continue_story
} “No”{
YOU (talk_think)
Maybe something else.
goto outfit_pick
}

label continue_story
#continue your story here

And then to remember it:

if (outfit01 is “Dress”){

@YOU changes into DRESS

} elif (outfit01 is “Jeans”){

@YOU changes into JEANS

} else {

@YOU changes into SKIRT
}

#continue story here

1 Like