I need help. It says it doesnât have a match but I do. Why?
Maybe itâs the â!â
It means there must be an issue inside the brackets. Can you post those lines of the script please?
Put it like,
choice " outfit1 " {
stuffhere
} âoutfit2â {
stuffhere
}âoutfit3â {
stuffhere
}
HOPE YOUâRE CLEAR NOW
Do you mean these?
label dressing_game
YOU
(What should I wear today?)
choice
âForest Girl!â{
@YOU walks to upscreen left in zone 3
@YOU changes into FORESTGIRL_1
gain Forest Girl
}âFancy Long Dress!â{
@YOU walks to upscreen left in zone 3
@YOU changes into FANCYWITHFLOWERS_1
gain Fancy Long Dress
}âPink and Party Girl!â{
@YOU walks to upscreen left in zone 3
@YOU changes into PARTYGIRL_1
gain Party Girl
}
@YOU walks to screen center in zone 3
@pause for a beat
YOU (think_rubchin)
(Do I like this or what?)
choice
âWear this outfit.â{
YOU (idle_headbob_neutral_loop)
(This is perfect!)
}
âTry something else.â{
goto dressing_game
}
@YOU exits left
@cut to zone 2
@YOU enters from right to screen left AND YOU faces right
@AALIA is admire_happy
if (Fancy Long Dress){
AALIA (talk_excited_happy)
I love the Fancy dress!
AALIA (talk_exclaim_yes_happy)
It's so long!
AALIA (talk_excited_happy)
It is so your style!
}
if (Forest Girl){
AALIA (talk_excited_happy)
I love the Forest dress!
AALIA (talk_exclaim_yes_happy)
It's so wild and awesome!
AALIA (talk_excited_happy)
It is so your style!
}
if (Party Girl){
AALIA (talk_excited_happy)
I love the Go Party!
AALIA (talk_exclaim_yes_happy)
It's so party fun and amazing!
AALIA (talk_excited_happy)
It is so your style!
}
Your gains have to be one word.
Like âgain Party_Girlâ or something like that. No space between
Nope, doensât work
Oh you have 3 times âifâ
It has to be if elif and else.
??? donât understnad
Still donât really get it but thanks
PM me if you need more help!
And yes.
Thanks for coming out of your corner, I have no idea how to explain it, lol.
Youâre using 3 ifâs and that is the problem. If you take a look at the guide @Alexa_x3 provided the link to, the very first thing it talks about is how to use the if/elif/else method. Iâm not sure how youâre not understanding that? There really is no better and simpler explanation than that guide.
if is ONLY FIRST. Then after if, should be the word elif, then the last word should always be else
Also in that guide, it tells you how to remember choices using either gains or choice names. Youâre using the choice name method but in the format for gains. You should read through that guide very carefully.