Hii I need help! What did I do wrong?

I want to do a Dressing Game with Flags with all the choices in one row but why does mine appear like the image below? Is it supposed to be like that if you want to do remembered choices? This is how I did the coding

    CHLOE (think_rubchin)
(What should I wear?)

choice
“Casual Outfit 1”{

@CHLOE starts dustoff_neutral_loop

@pause for a beat

@CHLOE changes into Casual Outfit 1

}
CHLOE (think_rubchin)
Is this the one?

choice
“I love it!” {
gain Outfit_Casual_1

}
“No, I want to try on the others!” {
goto dressing_game

}
“Casual Outfit 2”{

@CHLOE starts dustoff_neutral_loop

@pause for a beat

@CHLOE changes into Casual Outfit 2

}
CHLOE (think_rubchin)
Is this the one?

choice
“I love it!” {
gain Outfit_Casual_2

}
“No, I want to try on the others!” {
goto dressing_game

}
“Casual Outfit 3”{

@CHLOE starts dustoff_neutral_loop

@pause for a beat

@CHLOE changes into Casual Outfit 3

}


2 Likes

Maybe you need to add an extra ‘}’ at the end of the first choice?

1 Like

You need to put this INSIDE one option.
That is,

Casual Outfit 1”{

@CHLOE starts dustoff_neutral_loop

@pause for a beat

@CHLOE changes into Casual Outfit 1

CHLOE (think_rubchin)
Is this the one?

choice
“I love it!” {
gain Outfit_Casual_1

}
“No, I want to try on the others!” {
goto dressing_game

}

}

And the same for the other options.

1 Like
1 Like