ERROR Help- Unexpected Garbage

I keep getting unexpected garbage error.
I am new to this! I want to give the option to choose their clothing and I have four choices.

I know the script should go somewhat like this:

label dressing_game
Narrator
(Dialogue)

choice
“Outfit 1”{ input outfit }

I have tried several ways but still end up getting the same error on “Outfit 1”{ input outfit}

Can anyone help!!!

because “Outfit 1” (input outfit} doesn’t work
What are you trying to do there?

label dressing_game
NARR
(Dialoge)

choice [shouldPaginate: YES]
“Outfit one” {
@CHAR changes into outfit_1
goto dressing_game
}“Outfit two”{
@CHAR changes into outfit_2
goto dressing_game
}“Outfit three”{
@CHAR changes into outfit_3
goto dressing_game
}“Outfit four”{
@CHAR changes into outfit_4
goto dressing_game
}“DONE”{
NARR
You look amazing!
}

or you can do this

label dressing_game
NARR
(Dialoge)

choice
“Outfit one” {
@CHAR changes into outfit_1
goto are_you_sure
}“Outfit two”{
@CHAR changes into outfit_2
goto are_you_sure
}“Outfit three”{
@CHAR changes into outfit_3
goto are_you_sure
}“Outfit four”{
@CHAR changes into outfit_4
goto are_you_sure
}

label are_you_sure

NARR
Is this the right option?
choice
“Yes”{
NARR
Alright!
}“No let me change please”{
goto dressing_game
}

1 Like

Exactly!

1 Like

Okay, sorry all new at this.

label dressing_game

    DANIELLE
(What should I wear today?)

choice
“Outfit 1” {
@DANIELLE changes into Danielle_ Graduation Choice 1
goto are_you_sure}

would this be correct?

Yay! I did it :slight_smile: Thanks so much!

1 Like

sorry one more question!!

If I want the character to do the dustoff motion so it looks as if she is changing clothes, how do I code that?

@CHAR is dustoff_loop
@CHAR changes into outfit_1

1 Like

Thanks so much! Worked perfectly.

1 Like

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