Remembering Outfit Choices Template!

Hey guys-- I just wanted to share a template that I recently created!

This template was created based off of Dara Marie’s clothing template!

Dara’s Template:

choice (clothing_type)
“Casual” {
goto fashion_casual
} “Formal” {
goto fashion_formal
} “Going Out” {
goto fashion_out
} “Business” {
goto fashion_business
}

label fashion_casual

@YOU starts idle_happy_loop
NARRATOR
What do I want to wear?

choice (casualclothes)
“One” {
@YOU changes into Outfit1
@pause for a beat
goto fashion_casual
} “Two” {
@YOU changes into Outfit2
@pause for a beat
goto fashion_casual
} “Three” {
@YOU changes into Outfit3
@pause for a beat
goto fashion_casual
} “Four” {
@YOU changes into Outfit4
@pause for a beat
goto fashion_casual
} “Try a different style!” {
goto open_closet
} “Wear this!” {
goto hair_and_lip
}

label fashion_formal

@YOU starts idle_happy_loop
NARRATOR
What do I want to wear?

choice (formalclothes)
“One” {
@YOU changes into Outfit13
@pause for a beat
goto fashion_formal
} “Two” {
@YOU changes into Outfit14
@pause for a beat
goto fashion_formal
} “Three” {
@YOU changes into Outfit15
@pause for a beat
goto fashion_formal
} “Four” {
@YOU changes into Outfit16
@pause for a beat
goto fashion_formal
} “Try a different style!” {
goto open_closet
} “Wear this!” {
goto hair_and_lip
}

label fashion_out

@YOU starts idle_happy_loop
NARRATOR
What do I want to wear?

choice (outclothes)
“One” {
@YOU changes into Outfit9
@pause for a beat
goto fashion_out
} “Two” {
@YOU changes into Outfit10
@pause for a beat
goto fashion_out
} “Three” {
@YOU changes into Outfit11
@pause for a beat
goto fashion_out
} “Four” {
@YOU changes into Outfit12
@pause for a beat
goto fashion_out
} “Try a different style!” {
goto open_closet
} “Wear this!” {
goto hair_and_lip
}

label fashion_business

@YOU starts idle_happy_loop
NARRATOR
What do I want to wear?

choice (businessclothes)
“One” {
@YOU changes into Outfit5
@pause for a beat
goto fashion_business
} “Two” {
@YOU changes into Outfit6
@pause for a beat
goto fashion_business
} “Three” {
@YOU changes into Outfit7
@pause for a beat
goto fashion_business
} “Four” {
@YOU changes into Outfit8
@pause for a beat
goto fashion_business
} “Try a different style!” {
goto open_closet
} “Wear this!” {
goto hair_and_lip
}

Template to remember those choices:

if (clothing_type is “Casual”){
goto casual_clothing
} elif (clothing_type is “Formal”){
goto formal_clothing
} elif (clothing_type is “Going Out”){
goto out_clothing
} elif (clothing_type is “Business”){
goto business_clothing
}
label casual_clothing
if (casualclothes is “One”){
@YOU changes into Outfit1
goto continueee
} elif (casualclothes is “Two”){
@YOU changes into Outfit2
goto continueee
} elif (casualclothes is “Three”){
@YOU changes into Outfit3
goto continueee
} elif (casualclothes is “Four”){
@YOU changes into Outfit4
goto continueee
}
label formal_clothing
if (formalclothes is “One”){
@YOU changes into Outfit13
goto continueee
} elif (formalclothes is “Two”){
@YOU changes into Outfit14
goto continueee
} elif (formalclothes is “Three”){
@YOU changes into Outfit15
goto continueee
} elif (formalclothes is “Four”){
@YOU changes into Outfit16
goto continueee
}
label out_clothing
if (outclothes is “One”){
@YOU changes into Outfit9
goto continueee
} elif (outclothes is “Two”){
@YOU changes into Outfit10
goto continueee
} elif (outclothes is “Three”){
@YOU changes into Outfit11
goto continueee
} elif (outclothes is “Four”){
@YOU changes into Outfit12
}
label business_clothing
if (businessclothes is “One”){
@YOU changes into Outfit5
goto continueee
} elif (businessclothes is “Two”){
@YOU changes into Outfit6
goto continueee
} elif (businessclothes is “Three”){
@YOU changes into Outfit7
goto continueee
} elif (businessclothes is “Four”){
@YOU changes into Outfit8
goto continueee
}
label continueee
I hope I helped! I’m honestly not sure if she’s already created one, but I just wanted to share this :slight_smile:

1 Like

Thank your for taking your time to do this, but unfortunately that method of remembering choices will not work for my closet template.

2 Likes

Thank you for letting me know!! You’re a sweetheart :revolving_hearts::smiling_face_with_three_hearts:

1 Like

@Sydney_H please close this thread :slight_smile:

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