Dress game coding help

Please help. I do not know what I did wrong

label dressing_game_1

    SKYLAR (think_rubchin)
What do I want to wear?

choice
“Black Skirt And Black Boots” {
@SKYLAR changes into sky_work_1
#add your own dialogue and animations

   SKYLAR (think_rubchin)
Is this the one?

choice
“Looking Cute ;)” {
gain Flag_sky_work_1
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces

} “No, Just no D:” {
goto dressing_game_1
}

OUTFIT 2 STARTS HERE

} “Edgy Boho” {
@SKYLAR changes into sky_work_2
#add your own dialogue and animations

    SKYLAR (think_rubchin)
(Is this the one?)

choice
“Looking Cute ;)” {
gain Flag_sky_work_2
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces

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

OUTFIT 3 STARTS HERE

“Floral Collar Dress” {
@SKYLAR changes into sky_work_3
#add your own dialogue and animations

   SKYLAR (think_rubchin)
Is this the one?

choice
“Looking Cute ;)” {
gain Flag_sky_work_3
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces

} “No, Let me see them agian” {
goto dressing_game_1
}

if (Flag_sky_work_1) {
#replace Flag_Name_1 with your flag name
@SKYLAR changes into sky_work_3

} elif (Flag_sky_work_2) {
#replace Flag_Name_2 with your flag name
@SKYLAR changes into sky_work_2

} else {
#This is where the third option goes
@SKYLAR changes into sky_work_1
}

Do you use LL ?

yes

Then Unfortunately I haven’t use LL yet I am writing my first story in ink
All I can do is tell you to go to Joseph Evans’ YouTube channel and see what you have done wrong
Sorry

Thanks!

Np :heavy_heart_exclamation:
Hope this helps :blush:

1 Like

There should be two brackets after all the outfits, since we’re closing off the 1st and the 2nd choice!

1 Like

THANK YOU IT WORKED :smiley:

1 Like