Dara Amarie's Official Help Thread! [closed]

Okay so there’s quite a few errors in there.

1.When you use a “goto” there shouldn’t be a space between go and to, it should be just 1 word. Also, it should just be “goto label_name”. You don’t need to add the word “label” in there. So if you’re label name is choosing_outfit_2, it should looke like this: goto choosing_outfit_2

2.For every starting bracket {, there needs to be a matching end bracket }
So you should add these brackets to your script (add the ones in bold)

label choosing_outfit_2
YOU (think_rubchin)
(What should I wear???)
choice “School Day Fun” {
@YOU spot 1.280 171 83
@YOU walks to spot 1.280 171 83
@YOU changes into YOU_SCHOOL_DAY_FUN
YOU
Do I want to wear this?
choice
“YES” {
gain YOU_SCHOOL_DAY_FUN
} “NO” {
go to label choosing_outfit 2
}
} “School Day Sporty” {
@YOU spot 1.280 171 83
@YOU walks to spot 1.280 171 83
@YOU changes into YOU_SCHOOL_DAY_SPORTY
YOU
Do I want to wear this?
choice
“YES” {
gain YOU_SCHOOL_DAY_SPORTY
} “NO” {
go to label choosing_outfit_2
}
} “School Day Fancy” {
@YOU spot 1.280 171 83
@YOU walks to spot 1.280 171 83
@YOU changes into SCHOOL_DAY_FANCY
YOU
Do I want to wear this?
choice
“YES” {
gain SCHOOL_DAY_FANCY
} “NO” {
go to label choosing_outfit_2
}
} “Making An Entrance” {
@YOU spot 1.280 171 83
@YOU walks to spot 1.280 171 83
@YOU changes into SCHOOL_DAY_ENTRANCE
YOU
Do I want to wear this?
choice
“YES” {
gain SCHOOL_DAY_ENTRANCE
} “NO” {
go to label choosing_outfit_2
}
}

3.The correct format for the if/elif/else method looks like this:

if (gain_name) {
} elif (gain_name) {
} else {
}

You don’t need to add in the word “gain” inside the parentheses. So if you’re gain name is YOU_SCHOOL_DAY_FUN is just needs to look like this: if (YOU_SCHOOL_DAY_FUN) {

Also, the last one else needs to be by itself, there shouldn’t be anything in parentheses next to it. You can learn more about the if/elif/else method HERE