Remembering Choice Problem

I want her to remeber what outfit she wears for the next episode but, it isn’t working for some reason. Feel free to ask me questions!

Capture
Capture%20pt%202
capture%20pt%203
SHE isn’t wearing the outfit

So… Because you’ve put the gains in each choice bracket, if a reader wants to try another outfit, they will then have both gains. If they want to try the third choice, then they’ll have all three gains. So if you try to remember it later, the reader will have gained all three.

If you want to do it using gains, you’ll have to do something like this:

label costumegame
choice “Adventure Girl” {
@ ALESSIA exits right
@ ALESSIA changes into ALESSIA_COSTUME_TWO
@ ALESSIA spot 1.280
NARRATOR
Are you sure?
choice “Try something else” {
goto costumegame
} “Buy it” {
gain Adventure_Girl
goto end
}
} “Neon Girl” {
@ ALESSIA exits right
@ ALESSIA changes into ALESSIA_COSTUME_ONE
@ ALESSIA spot 1.280
NARRATOR
Are you sure?
choice “Try something else” {
goto costumegame
} “Buy it” {
gain Neon_Girl
goto end }
}“Genie Girl” {
@ ALESSIA exits right
@ ALESSIA changes into ALESSIA_COSTUME_THREE
@ ALESSIA spot 1.280
NARRATOR
Are you sure?
choice “Try something else” {
goto costumegame
} “Buy it” {
gain Genie_Girl
goto end
}
}

label end

but, then it says “your label can not contain a space”

Uhh which line? I’m thinking it’s because I put the “}” after goto end but there’s a space before the bracket

489, but then now it says
Help

Add a “}” on the line directly under goto costumegame

Isn’t already under it next to genie girl?

Yeah, but I think there should be two

ok let me try that and respond back to you

1 Like