Dressing game and label errors

Hi everyone,

I am creating my very first story and I’m stuck at dressing game and labels.

I followed Joseph Evan’s tutorial and I keep getting errors: “You cannot have a label inside if/then statements or {}” and “the label… doesn’t exist”

Can you take a look at my script and see what I might be doing wrong?

Thank you

B.

Did you put this dressing game inside of a choice or if/elif/else? If so then that’s what the error message is telling you. Labels cannot be inside of brackets.

@Dara.Amarie I think I might have. I’ve been going over different tutorials on labels, and my choices turn out to be very complex and all over the place.

Thank you for the explanation, it’s still confusing but I’ll try placing the labels to organize my story…

B.

    NARRATOR
Face shapes.

choice [shouldPaginate: YES]
“Defined Heart” {
@ANGELICA GELLER changes face into Defined Heart
goto femlcc_face12
} “Defined Round” {
@ANGELICA GELLER changes face into Defined Round
goto femlcc_face12
} “Diamond” {
@ANGELICA GELLER changes face into Diamond
goto femlcc_face12
} “Oval” {
@ANGELICA GELLER changes face into Oval
goto femlcc_face12
} “Round” {
@ANGELICA GELLER changes face into Round
goto femlcc_face12
} “Done”{
goto femlcc_custom12
}
“Soft Heart” {
@ANGELICA GELLER changes face into Soft Heart
goto femlcc_face12
} “Square” {
@ANGELICA GELLER changes face into Square
goto femlcc_face12
} “Defined Oblong” {
@ANGELICA GELLER changes face into Defined Oblong
goto femlcc_face12
} “Done”{
goto femlcc_custom12
}

IT SAYS I HAVE A MISTAKE AT LINE 172, PLAESE HELP ME.

LINE 172 BEING:@ANGELICA GELLER changes face into Defined Round
goto femlcc_face12

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.