Please Help! my line says that it does not have a matching

so I am writing a story and this error came up–
There is a { on line 222 that does not have a matching
Does anyone know how to fix this issue. I will put the code down below

{ “Bordeaux” {

NARRATOR
Lets see
choice [shouldGiveXP:NO]
“Crimson”{
@QUINN changes mouthColor into Crimson
@QUINN is apply_lipstick
goto mouthMakeupDark4
}“Bordeaux” {
@QUINN changes mouthColor into Bordeaux
@QUINN is apply_lipstick
goto mouthMakeupDark4
}“Plum” {
@QUINN changes mouthColor into Plum
@QUINN is apply_lipstick
goto mouthMakeupDark4
}“Looks good!”{
goto label story_lipstart4
}
label story_lipstart4
QUINN (dustoff_loop)
(Good enough)

What is it meant to say here? :slight_smile:

sorry just fixed that up. to what its meant to say. the error occurs when it says }" Bordeaux" {

Why is this here?

What does this mean?

I am copying a Lip colour template. made by @eppassist and I did not want the whole template. so I kind of half copied it. I will get the template up.
Where all the !!! are is where the bit i copied starts

YOU (talk_think)
Should I put some lipstick on?

label mouthColor_4
NARRATOR
What color lips would you like?
choice [shouldGiveXP:NO]
“Natural”{
goto mouthNatural4
}“Bright Colored”{
goto mouthMakeup4
}“Dark Colored”{
goto mouthMakeupDark4
}“This looks good!”{
goto label story_lipstart4
}
label mouthNatural4
NARRATOR
What natural lip color would you like?
choice [shouldGiveXP:NO]
“Blush” {
@YOU changes mouthColor into Blush
@YOU is primp_condescend
goto mouthNatural4
}“Mocha” {
@YOU changes mouthColor into Mocha
@YOU is primp_condescend
goto mouthNatural4
}“Toffee” {
@YOU changes mouthColor into Toffee
@YOU is primp_condescend
goto mouthNatural4
}“Dark Brown” {
@YOU changes mouthColor into Dusty Rose
@YOU is primp_condescend
goto mouthNatural4
}“Terracotta” {
@YOU changes mouthColor into Terracotta
@YOU is primp_condescend
goto mouthNatural4
}“Dusty Rose”{
@YOU changes mouthColor into Dusty Rose
@YOU is primp_condescend
goto mouthNatural4
}“White”{
@YOU changes mouthColor into White
@YOU is primp_condescend
goto mouthNatural4
}“Try other colors.”{
goto mouthColor_4
}“Looks good!”{
goto label story_lipstart4
}
label mouthMakeup4
NARRATOR
What lip color would you like?
choice [shouldGiveXP:NO]
“Bubblegum Pink” {
@YOU changes mouthColor into Bubblegum Pink
@YOU is primp_condescend
goto mouthMakeup4
}“Olive” {
@YOU changes mouthColor into Olive
@YOU is primp_condescend
goto mouthMakeup4
}“Orange Crush”{
@YOU changes mouthColor into Orange Crush
@YOU is primp_condescend
goto mouthMakeup4
}“Raspberry”{
@YOU changes mouthColor into Raspberry
@YOU is primp_condescend
goto mouthMakeup4
}“Raspberry”{
@YOU changes mouthColor into Raspberry
@YOU is primp_condescend
goto mouthMakeup4
}“Try other colors.”{
goto mouthColor_4
}“Looks good!”{
goto label story_lipstart4
}
label mouthMakeupDark4
!!!
NARRATOR
What lip color would you like?
choice [shouldGiveXP:NO]
“Cherry Red”{
@YOU changes mouthColor into Cherry Red
@YOU is primp_condescend
goto mouthMakeupDark4
}“Dark Red” {
@YOU changes mouthColor into Bordeaux
@YOU is primp_condescend
goto mouthMakeupDark4
}“Wine” {
@YOU changes mouthColor into Wine
@YOU is primp_condescend
goto mouthMakeupDark4
}“Try other colors.”{
goto mouthColor_4
}“Looks good!”{
goto label story_lipstart4
}
label story_lipstart4

Copy and Paste this:

label mouthColor_4

    NARRATOR
What color lips would you like?

choice
“Natural”{
goto mouthNatural4
}“Bright Colored”{
goto mouthMakeup4
}“Dark Colored”{
goto mouthMakeupDark4
}“This looks good!”{
goto label story_lipstart4
}
label mouthNatural4
NARRATOR
What natural lip color would you like?
choice
“Blush” {
@YOU changes mouthColor into Blush
@YOU is primp_condescend
goto mouthNatural4
}“Mocha” {
@YOU changes mouthColor into Mocha
@YOU is primp_condescend
goto mouthNatural4
}“Toffee” {
@YOU changes mouthColor into Toffee
@YOU is primp_condescend
goto mouthNatural4
}“Dark Brown” {
@YOU changes mouthColor into Dusty Rose
@YOU is primp_condescend
goto mouthNatural4
}“Terracotta” {
@YOU changes mouthColor into Terracotta
@YOU is primp_condescend
goto mouthNatural4
}“Dusty Rose”{
@YOU changes mouthColor into Dusty Rose
@YOU is primp_condescend
goto mouthNatural4
}“White”{
@YOU changes mouthColor into White
@YOU is primp_condescend
goto mouthNatural4
}“Try other colors.”{
goto mouthColor_4
}“Looks good!”{
goto label story_lipstart4
}
label mouthMakeup4
NARRATOR
What lip color would you like?
choice
“Bubblegum Pink” {
@YOU changes mouthColor into Bubblegum Pink
@YOU is primp_condescend
goto mouthMakeup4
}“Olive” {
@YOU changes mouthColor into Olive
@YOU is primp_condescend
goto mouthMakeup4
}“Orange Crush”{
@YOU changes mouthColor into Orange Crush
@YOU is primp_condescend
goto mouthMakeup4
}“Raspberry”{
@YOU changes mouthColor into Raspberry
@YOU is primp_condescend
goto mouthMakeup4
}“Raspberry”{
@YOU changes mouthColor into Raspberry
@YOU is primp_condescend
goto mouthMakeup4
}“Try other colors.”{
goto mouthColor_4
}“Looks good!”{
goto label story_lipstart4
}
label mouthMakeupDark4

    NARRATOR
What lip color would you like?

choice
“Cherry Red”{
@YOU changes mouthColor into Cherry Red
@YOU is primp_condescend
goto mouthMakeupDark4
}“Dark Red” {
@YOU changes mouthColor into Bordeaux
@YOU is primp_condescend
goto mouthMakeupDark4
}“Wine” {
@YOU changes mouthColor into Wine
@YOU is primp_condescend
goto mouthMakeupDark4
}“Try other colors.”{
goto mouthColor_4
}“Looks good!”{
goto label story_lipstart4
}
label story_lipstart4

1 Like

THANK YOU SO MUCH!!! that really helped

1 Like

Yeah, you put an unneccessary bracket in front of Bordeaux.

Instead of { “Bordeaux” { it should be } “Bordeaux” {, because { is a start of a new bracket pair, while } is ending the previous one.

Glad to see this has been resolved. Thanks for the assist and closing thread :mage::eight_pointed_black_star::star2::star: