I need help with outfit choices!

Okay, I have been trying to put together some outfit choices to choose from and I am almost there. However, I don’t know how to code to where it keeps letting you choose to see any outfit you want until you finally choose that you are happy with it. I have it to where it asks you a few times, but even if you pick that you aren’t happy with the outfit after like the third try, it stops giving you the option to try and look at the outfits again. Not sure how I can code it to do that. Any help is greatly appreciated! Here’s what I have so far.

NARRATOR
What would you like to wear?
choice “I like the outfit I have on.” {
@MILLER starts dance_drop_it

} “Edgy and Easy-going” {@MILLER changes into EDGY
@MILLER starts admire_happy

} “Cute and Comfy” {@MILLER changes into SWEATSHIRT
@MILLER starts admire_happy
}
NARRATOR
Is this what you want to wear?
choice “Yes, I look good!” {
gain YES_I_LOOK_GOOD
@MILLER starts dance_drop_it
} “No, I want to try something else.” {
gain NO_I_DONT_LIKE_IT
}
if (NO_I_DONT_LIKE_IT){
NARRATOR
What would you like to wear?
choice “The outfit I started with.” {@MILLER changes into Turtleneck
@MILLER starts admire_happy

} “Edgy and Easy-going” {@MILLER changes into EDGY
@MILLER starts admire_happy

} “Cute and Comfy” {@MILLER changes into SWEATSHIRT
@MILLER starts admire_happy

}} else {

}

    NARRATOR
Is this what you want to wear?

choice “Yes, I look good!” {
gain YES_I_LOOK_GOOD
@MILLER starts dance_drop_it
} “No, I want to try something else.” {
gain NO_I_DONT_LIKE_IT
}
if (NO_I_DONT_LIKE_IT) {
NARRATOR
What would you like to wear?
choice “The outfit I started with.” {@MILLER changes into Turtleneck
@MILLER starts admire_happy

} “Edgy and Easy-going” {@MILLER changes into EDGY
@MILLER starts admire_happy

} “Cute and Comfy” {@MILLER changes into SWEATSHIRT
@MILLER starts admire_happy

}} else {

}

uhm I don’t want to sound mean so don’t get me wrong.
You’ve written that pretty complicated.
You can put a label above your dressing game (for example:
label dressing_game_1
NARRATOR
What would you like to wear

Then your choices etc

After your different choices you could write:

NARRATOR
Is this what you want to wear?
choice
“Yes,…”{

}
“No…”{
goto dressing_game_1
}
That means you go to that position again

1 Like

Hahaha I knew there was probably a better way to do that that I wasn’t aware of! Thanks so much that definitely looks a lot more simple. :slight_smile:

1 Like

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