My story doesn't remember the outfit choice

The mc chooses what to wear in the morning, then in the afternoon she goes to work and changes into her work outfit, after that I want the MC to chance into the same outfit she chose in the morning but it won’t change into any outfit, it keeps the work outfit on.

Can someone help?

Summary

label dressing_game
YOU
(What do I want to wear today?)
choice “Casual” {
@YOU starts dustoff_loop
@pause for 3
@YOU changes into Mia_casual
@ YONA changes into Yona_outfit2
@ LEO changes into Leo_outfit2
@LYON changes into Guy outfit1
@DAIKI changes into Guy_outfit3
} “Shorts” {
@YOU starts dustoff_loop
@pause for 3
@YOU changes into Mia_warm_weather
@ YONA changes into Yona_outfit2
@ LEO changes into Leo_outfit2
@LYON changes into Guy outfit1
@DAIKI changes into Guy_outfit3

}“Jacket” {
@YOU starts dustoff_loop
@pause for 3
@YOU changes into Mia_badass
@ YONA changes into Yona_outfit2
@ LEO changes into Leo_outfit2
@LYON changes into Guy outfit1
@DAIKI changes into Guy_outfit3

}“Casual2” {
@YOU starts dustoff_loop
@pause for 3
@YOU changes into Mia_casual2
@ YONA changes into Yona_outfit2
@ LEO changes into Leo_outfit2
@LYON changes into Guy outfit1
@DAIKI changes into Guy_outfit3

}“Lazy” {
@YOU starts dustoff_loop
@pause for 3
@YOU changes into Mia_lazy
@ YONA changes into Yona_outfit2
@ LEO changes into Leo_outfit2
@LYON changes into Guy outfit1
@DAIKI changes into Guy_outfit3
}
YOU (blow_kiss)
(Do I want to wear this?)
choice “Yes” {
YOU (primp)
(This looks good!)
} “No” {
YOU (think)
(I guess I’ll try the other ones too.)
goto dressing_game
}

INT. CAFE- DAY
@DAIKI changes into Guy_outfit3

if (dressing_game is “Casual”){
@YOU changes into Mia_casual
}if (dressing_game is “Shorts”){
@YOU changes into Mia_warm_weather
}if (dressing_game is “Jacket”){
@YOU changes into Mia_badass
}if (dressing_game is “Casual2”){
@YOU changes into Mia_casual2
}if (dressing_game is “Lazy”){
@YOU changes into Mia_lazy
}

remembering choices don’t work with outfits

After the word ‘choice’ add something in (), like: choice (whattowear). Then you can use if/elif/else without any problems.

For eg. my code:

label menu
NANA (think_rubchin)
Which uniform should I wear for school?

choice (outfit01)
“RedAndBlack” {
@NANA is dustoff_neutral_loop
@NANA changes into nana_uniform
@NANA is flirt_wink_atcamera_pose

} “Blue” {
@NANA changes into nana_uniform2
@NANA is dustoff_neutral_loop
@NANA is flirt_wink_atcamera_pose

} “Mauve” {
@NANA changes into nana_uniform3
@NANA is dustoff_neutral_loop
@NANA is flirt_wink_atcamera_pose

} “Sporty” {
@NANA changes into nana_school1
@NANA is dustoff_neutral_loop
@NANA is flirt_wink_atcamera_pose
}

    NANA (admire_happy)
Should I wear this?

choice
“Absolutely!”{
continue
}
“No way!”{
goto menu
}


Then the “remembering part”:

if (outfit01 is “BlackAndRed”){
@NANA changes into nana_uniform

} elif (outfit01 is “Blue”){

@NANA changes into nana_uniform2

} elif (outfit01 is “Mauve”){

@NANA changes into nana_uniform3

} else {

@NANA changes into nana_school1
}

1 Like

Thank youu!! It works !

1 Like

You’re welcome. :slight_smile:

1 Like

Marked as solved by thread Op. Closing, thanks all! :smiley: