Remembering Outfit Choice

First question: I did different choices with different outfits the reader can choose from. Will the outfit they chose still be on the MC in different scenes?

Second question: How do you remember past choices?

(if needed, my code for the outfit choices are below.)

My code

label dressing_game
ERIN (think)
(What should I wear?)

choice
“Dress” {
@ERIN is dustoff_loop
@ERIN changes into Erin Club1
ERIN (primp_brush_hair)
(I’m so cute.)
goto dressing_end
} “Pants” {
@ERIN is dustoff_loop
@ERIN changes into Erin Club2
ERIN (strike_a_pose)
(I could be a model.)
goto dressing_end
} “Skirt” {
@ERIN is dustoff_loop
@ERIN changes into Erin Club3
ERIN (primp)
(The men will be all over me.)
goto dressing_end
}

label dressing_end
ERIN (think)
(Do I want to wear this?)

choice
“Yes.” {
@ERIN is dustoff_loop
@ERIN is blow_kiss
} “No.” {
goto dressing_game
}

Thanks : )

Label the choice.

label dressing_game
ERIN (think)
(What should I wear?)

choice (Outfit)
“Dress” {
@ERIN is dustoff_loop
@ERIN changes into Erin Club1
ERIN (primp_brush_hair)
(I’m so cute.)
goto dressing_end
} “Pants” {
@ERIN is dustoff_loop
@ERIN changes into Erin Club2
ERIN (strike_a_pose)
(I could be a model.)
goto dressing_end
} “Skirt” {
@ERIN is dustoff_loop
@ERIN changes into Erin Club3
ERIN (primp)
(The men will be all over me.)
goto dressing_end
}

label dressing_end
ERIN (think)
(Do I want to wear this?)

choice
“Yes.” {
@ERIN is dustoff_loop
@ERIN is blow_kiss
} “No.” {
goto dressing_game
}

Future Code.

if (outfit is “Dress”) {
@ERIN changes into Erin Club1
}
elif (outfit is “Pants”) {
@ERIN changes into Erin Club2
}
else{
@ERIN changes into Erin Club3
}

2 Likes
  1. yes, the outfit will still be on in different scenes.
  2. here is a helpful thread on remembering past choices
    HOW TO: Remember Past Choices (if/elif/else)
1 Like

@LaurelleE27 @Dona_H Thanks so much : ) You both helped a lot.

1 Like

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