Remembering Outfit choice HELP

i have given readers three outfits to chose from but in a flashback scene its a different outfit i need it to remember the readers choice

heres the dressing game i used

label Start
&speechbubble is 165 276 to 100%
NARRATOR (MIA)
Now what should I wear?

choice
“Oufit1”{
@MIA starts dustoff_neutral_loop
@pause for a beat
@MIA changes into Mia_Outfit1
@pause for a beat
@MIA starts think_rubchin
@pause for 2
goto Start
}
“Outfit2”{
@MIA starts dustoff_neutral_loop
@pause for a beat
@MIA changes into Mia_Outfit2
@pause for a beat
@MIA starts think_rubchin
@pause for 2
goto Start
}
“Outfit3”{
@MIA starts dustoff_neutral_loop
@pause for a beat
@MIA changes into Mia_Outfit3
@pause for a beat
@MIA starts think_rubchin
@pause for 2
goto Start
}
“Done” {
}
@MIA starts idle_happy_loop
&speechbubble is 110 259 to 100% with tail_top_right
MIA
(Perfect.)

You can do

label Start
&speechbubble is 165 276 to 100%
NARRATOR (MIA)
Now what should I wear?

choice (outfit_choice)
“Oufit1”{
@MIA starts dustoff_neutral_loop
@pause for a beat
@MIA changes into Mia_Outfit1
@pause for a beat
@MIA starts think_rubchin
@pause for 2
goto Start
}
“Outfit2”{
@MIA starts dustoff_neutral_loop
@pause for a beat
@MIA changes into Mia_Outfit2
@pause for a beat
@MIA starts think_rubchin
@pause for 2
goto Start
}
“Outfit3”{
@MIA starts dustoff_neutral_loop
@pause for a beat
@MIA changes into Mia_Outfit3
@pause for a beat
@MIA starts think_rubchin
@pause for 2
goto Start
}
“Done” {
}
@MIA starts idle_happy_loop
&speechbubble is 110 259 to 100% with tail_top_right
MIA
(Perfect.)

And then refer to the choice later using

if (outfit_choice is "Outfit1") {
@MIA changes into Mia_Outfit1
} elif (outfit_choice is "Outfit2") {
@MIA changes into Mia_Outfit2
} else {
@MIA changes into Mia_Outfit3
}

Dara Amarie has a similar template using flags here.

You can use the command preview outfit to use the flashback clothes, then unpreview it when you go back to the normal timeline

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