Help? (Again) Errors? 😨

I need help. It says it doesn’t have a match but I do. Why?

image

Maybe it’s the “!”

It means there must be an issue inside the brackets. Can you post those lines of the script please? :slight_smile:

1 Like

Put it like,
choice " outfit1 " {
stuffhere
} “outfit2” {
stuffhere
}“outfit3” {
stuffhere
}
HOPE YOU’RE CLEAR NOW :slight_smile:

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.

1 Like

??? don’t understnad

Here is a guide by @Dara.Amarie This should explain everything. :slight_smile:

1 Like

Still don’t really get it but thanks

PM me if you need more help! :wink:

1 Like

And yes. :slight_smile:

Thanks for coming out of your corner, I have no idea how to explain it, lol. :heart:

1 Like

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.

2 Likes