Clothing Choice Error

So I was doing a clothing choice and it was working but then I got an error.

Coding

label MENU

choice
“Outfit 1”{
@STELLA changes into STELLA CASUAL 2
@STELLA is idle_handsonhip_neutral_loop
goto DECIDE
}
“Outfit 2”{
@STELLA changes into STELLA DATE OUTFIT
@STELLA is idle_handsonhip_neutral_loop
goto DECIDE
}
“Outfit 3”{
@STELLA changes into STELLA RED OUTFIT
@STELLA is idle_handsonhip_neutral_loop
goto DECIDE
}
“Outfit 4”{
@STELLA changes into PARTY OUTFIT 1
@STELLA is idle_handsonhip_neutral_loop
goto DECIDE
}
“Outfit 5”{
@STELLA changes into PARTY OUTFIT 2
@STELLA is idle_handsonhip_neutral_loop
goto DECIDE
}

label DECIDE
STELLA (admire_happy)
Should I wear this?

choice
“Yes!”{
continue
}
“Go back”{
goto MENU
}

If anyone can help, I would be really greatful!

There must be a dialog before the choice.

2 Likes

Oh! Thank you so much! I completely forgot about that :sweat_smile:

And is this a goto? If so, you accidentally missed out the word goto continue

1 Like

It wasn’t. I got it to work. :slight_smile:

You can use continue in a coding branch. You can either use continue or leave the bracket empty and the script will continue on as normal.

3 Likes

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