Remembering Choices (coding problem3)

So what am I doing wrong now…🤦

Doesn’t matter what Choice I make, it’ll go straight to the second remembered choice I have like it’ll just jump to the else choice.

@speechbubble is 183 268 to 92% with tail_top_right
GABY (talk_excited_happy)
So you coming tonight to the party,

    GABY (talk_neutral_loop)
It's gonna be on the beach tonight.
You in still?

choice
“Yes” {

@GABY is idle_armscrossed_neutral_loop

@speechbubble is 219 270 to 91% with tail_top_left
SYBIL (talk_exhausted)
Yeah I’ll be there.

@speechbubble is 183 268 to 92% with tail_top_right
GABY (talk_excited_happy)
Yay Sybil!!

} “I cant” {

@speechbubble is 219 270 to 91% with tail_top_left
SYBIL (talk_exhausted)
I can’t Ive got work to do.

@speechbubble is 183 268 to 92% with tail_top_right
GABY (talk_armscrossed_shrug_neutral)
Okay then party pooper.

&GABY is laugh_crackup

@speechbubble is 219 270 to 91% with tail_top_left
SYBIL (talk_shrug_concerned)
Heyy

@GABY is laugh_crackup AND SYBIL is laugh_crackup

}

@transition fade out black 5

INT. ICE BATH GRANDMAS BATHROOM - NIGHT
@cut to zone 1
@zoom reset
@SYBIL stands screen center in zone 2 AND SYBIL is idle_exhausted_loop

    NARRATOR (SYBIL)
Back at my place

@pan to zone 2

if (chose_yes) {

    SYBIL (talk_exhausted)
Time to get ready for the party

label dressing_game_1

    SYBIL (talk_shrug_neutral)
What do I want to wear?

choice
“Swimsuit 1” {
@SYBIL changes into SYBIL_Swimsuit
#add your own dialogue and animations

    SYBIL (talk_armscrossed_shrug_neutral)
Is this the one?

choice
“It’s perfect!” {
gain Swimsuit_1
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces

} “No, I want to try on the others!” {
goto dressing_game_1
}

OUTFIT 2 STARTS HERE

} “Swimsuit 2” {
@SYBIL changes into SYBIL_Swimsuit_2
#add your own dialogue and animations

    SYBIL (talk_armscrossed_shrug_neutral)
Is this the one?

choice
“It’s perfect!” {
gain Swimsuit_2
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces

} “No, I want to try on the others!” {
goto dressing_game_1
}

OUTFIT 3 STARTS HERE

} “Swimsuit 3” {
@SYBIL changes into SYBIL_Swimsuit_3
#add your own dialogue and animations

    SYBIL (talk_armscrossed_shrug_neutral)
Is this the one?

choice
“It’s perfect!” {
gain Swimsuit_3
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces

} “No, I want to try on the others!” {
goto dressing_game_1
}
}

} else {

    SYBIL (talk_exhausted)
Time for bed...

label dressing_pj_2

    SYBIL (talk_shrug_neutral)
What do I want to wear?

choice
“PJ 1” {
@SYBIL changes into SYBIL_Pjs
#add your own dialogue and animations

    SYBIL (talk_armscrossed_shrug_neutral)
Is this the one?

choice
“It’s perfect!” {
gain PJ_1
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces

} “No, I want to try on the others!” {
goto dressing_pj_2
}

OUTFIT 2 STARTS HERE

} “PJ 2” {
@SYBIL changes into SYBIL_Pjs_2
#add your own dialogue and animations

    SYBIL (talk_armscrossed_shrug_neutral)
Is this the one?

choice
“It’s perfect!” {
gain PJ_2
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces

} “No, I want to try on the others!” {
goto dressing_pj_2
}

OUTFIT 3 STARTS HERE

} “PJ 3” {
@SYBIL changes into SYBIL_Pjs_3
#add your own dialogue and animations

    SYBIL (talk_armscrossed_shrug_neutral)
Is this the one?

choice
“It’s perfect!” {
gain PJ_3
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces

} “No, I want to try on the others!” {
goto dressing_pj_2
}
}

}

It’s because you didn’t put a gain in the first choice

1 Like

Oooh lol okay thank you! :blob_hearts:

1 Like