Labels? i need help

okay so i’m really new at this, so i’m just wondering what i’m doing wrong here. its not letting me label my choice and im getting frusterated. could someone please help? tysm in advance! image

2 Likes

Change L into l in label

There must be a dialogue before a choice. So, put the label before the dialogue.

label stylish_jacket

NARRATOR
Choose an outfit and hairstyle!
choice “Stylish Jacket”{
}
.
.


Also, in line 139, you do not have to include the word “label” in goto.

goto stylish_jacket

1 Like

Hey @MayatheTwizzler , I’ve noticed two things:

  1. the word label is uppercase – try changing it to lowercase.
  2. The choice option “stylish jacket”'s brackets were closed before your supposed choice within that choice branch.
  3. after your “goto” code, there was the word “label”, which is uneccesary.

Here’s what you can do

label stylish_jacket

NARRATOR
Choose an outfit and hairstyle!

choice “Stylish jacket.” {

@MAYA changes into MAYA_1

NARRATOR
Would you like Maya to wear this?

choice “No, go back.”{

goto stylish_jacket

}
“Yes, this is perfect!”{

NARRATOR
Okay, perfect!

}}

Hope this helps! Don’t hesitate if you have more questions. <3

1 Like

thank you!

1 Like

omg that worked, thank you so much for your help! <3

1 Like

thank you so much!

no problem, glad I could help!

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