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
}