It’s the label template by Dara Amarie.
I haven’t put any of my outfits in there yet. Thanks for your help.
label open_closet
@CHARACTER starts idle
CHARACTER
What do I want to wear?
choice
“Casual” {
goto fashion_casual
} “Formal” {
goto fashion_formal
} “Going Out” {
goto fashion_out
} “Business” {
goto fashion_business
} “Leave Closet” {
goto end_closet
}
####### CASUAL CLOTHES SECTION #######
label fashion_casual
CHARACTER
What casual outfit do I want to wear?
choice [shouldPaginate: YES]
“One” {
@CHARACTER changes into Outfit_Name
goto fashion_casual
} “Two” {
@CHARACTER changes into Outfit_Name
goto fashion_casual
} “Three” {
@CHARACTER changes into Outfit_Name
goto fashion_casual
} “Four” {
@CHARACTER changes into Outfit_Name
goto fashion_casual
} “Try a different style!” {
goto open_closet
} “Wear this!” {
goto end_closet
}
####### FORMAL CLOTHES SECTION #######
label fashion_formal
CHARACTER
What formal outfit do I want to wear?
choice [shouldPaginate: YES]
“One” {
@CHARACTER changes into Outfit_Name
goto fashion_formal
} “Two” {
@CHARACTER changes into Outfit_Name
goto fashion_formal
} “Three” {
@CHARACTER changes into Outfit_Name
goto fashion_formal
} “Four” {
@CHARACTER changes into Outfit_Name
goto fashion_formal
} “Try a different style!” {
goto open_closet
} “Wear this!” {
goto end_closet
}
####### GOING OUT CLOTHES SECTION #######
label fashion_out
CHARACTER
What going out outfit do I want to wear?
choice [shouldPaginate: YES]
“One” {
@CHARACTER changes into Outfit_Name
goto fashion_out
} “Two” {
@CHARACTER changes into Outfit_Name
goto fashion_out
} “Three” {
@CHARACTER changes into Outfit_Name
goto fashion_out
} “Four” {
@CHARACTER changes into Outfit_Name
goto fashion_out
} “Try a different style!” {
goto open_closet
} “Wear this!” {
goto end_closet
}
####### BUSINESS CLOTHES SECTION #######
label fashion_business
@CHARACTER starts idle_happy
NARRATOR
What business outfit do I want to wear?
choice [shouldPaginate: YES]
“One” {
@CHARACTER changes into Outfit_Name
goto fashion_business
} “Two” {
@CHARACTER changes into Outfit_Name
goto fashion_business
} “Three” {
@CHARACTER changes into Outfit_Name
goto fashion_business
} “Four” {
@CHARACTER changes into Outfit_Name
goto fashion_business
} “Try a different style!” {
goto open_closet
} “Wear this!” {
goto end_closet
}
####### END OF CLOSET SECTION #######
label end_closet
CHARACTER
Is this the look I’m going for?
choice
“Absolutely!” {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Closet Template Credit
@CHARACTER is dustoff_neutral_loop
@CHARACTER is primp_neutral
} “No, I want to try something else!” {
goto open_closet
}