Help with if elif else dressing game - script doesn't remember choice

Hi!
If someone could please look at my script and tell me what I’m doing worng x_x
I want my character to choose an outfit and then wear it later on in the next episode.
I’m writing in Limelight if that makes a difference…
My script looks like this:

-In the first episode:-

label dressing_game_1

    RAVEN (talk_handsonhips_neutral)
What do I want to wear for my date with Lucas?

choice (OUTFIT_1)
“Give him the blues” {
@RAVEN changes into Give him the blues
@RAVEN is idle_handsonhips_neutral_loop

} “Knock his socks off” {
@RAVEN changes into Knock his socks off
@RAVEN is idle_handsonhips_neutral_loop

} “Like putty in your hands” {
@RAVEN changes into Like putty in your hands
@RAVEN is idle_handsonhips_neutral_loop

}

    RAVEN (talk_primp_neutral)
Do I want to wear this one?

choice
“It’s perfect!” {
@RAVEN is talk_exclaim_yes_happy
@RAVEN is idle_handsonhips_neutral_loop
@RAVEN walks to spot 0.947 236 167 in 1 AND RAVEN faces left
@STACEY spot 0.920 124 184 in zone 3 AND STACEY faces right THEN STACEY is flirt_fingerbite_sexy
@JULIE spot 0.947 54 179 in zone 3 AND JULIE faces right THEN JULIE is react_holdface_happy
JULIE (talk_exclaim_yes_happy)
Omg yes Raven!
&STACEY is react_claphands_happy
@RAVEN is flirt_wink_happy
@transition fade out white 2
} “No, I want to try on the others!” {
goto dressing_game_1
}

-LATER ON IN THE NEXT EPISODE-

if (OUTFIT_1 is “Give him the blues”) {
@RAVEN changes into Give him the blues

} elif (OUTFIT_1 is “Knock his socks off”) {
@RAVEN changes into Knock his socks off

} else {
@RAVEN changes into Like putty in your hands
}

When I preview it, the choice is not remembered and the character automatically changes into else (Like putty in your hands)

Please please help
:smiley:

Maybe use gains?

-In the first episode:-

label dressing_game_1

    RAVEN (talk_handsonhips_neutral)
What do I want to wear for my date with Lucas?

choice (OUTFIT_1)
“Give him the blues” {
gain blues
@RAVEN changes into Give him the blues
@RAVEN is idle_handsonhips_neutral_loop

} “Knock his socks off” {
gain socks
@RAVEN changes into Knock his socks off
@RAVEN is idle_handsonhips_neutral_loop

} “Like putty in your hands” {
gain hands
@RAVEN changes into Like putty in your hands
@RAVEN is idle_handsonhips_neutral_loop

}

    RAVEN (talk_primp_neutral)
Do I want to wear this one?

choice
“It’s perfect!” {
@RAVEN is talk_exclaim_yes_happy
@RAVEN is idle_handsonhips_neutral_loop
@RAVEN walks to spot 0.947 236 167 in 1 AND RAVEN faces left
@STACEY spot 0.920 124 184 in zone 3 AND STACEY faces right THEN STACEY is flirt_fingerbite_sexy
@JULIE spot 0.947 54 179 in zone 3 AND JULIE faces right THEN JULIE is react_holdface_happy
JULIE (talk_exclaim_yes_happy)
Omg yes Raven!
&STACEY is react_claphands_happy
@RAVEN is flirt_wink_happy
@transition fade out white 2
} “No, I want to try on the others!” {
goto dressing_game_1
}

-LATER ON IN THE NEXT EPISODE-

if (blues”) {
@RAVEN changes into Give him the blues

} elif (socks) {
@RAVEN changes into Knock his socks off

} else {
@RAVEN changes into Like putty in your hands
}

Thanks! Will def try it!

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