Scene Help Needed ASP (LL) Clothing Choices

basically i need help

i want to make it so when the readers choose what cheerleading outfit the mc wears the rest of the cheerleaders wear the same

1 Like

When MC changes into the outfit during the dressing game, have the other cheerleaders change in the branch at the same time :slight_smile:

how do i do that?

Can you show me your dressing game?

Basically, though, to sum it up it’d be something like…

MC (think_rubchin)
What cheerleading uniform should we wear?
choice
“Uniform one”{
@MC changes into uniform1
@CHEERLEADER1 changes into uniform1
@CHEERLEADER2 changes into uniform1
@CHEERLEADER3 changes into uniform1
@CHEERLEADER4 changes into uniform1
@CHEERLEADER5 changes into uniform1
}“Uniform two”{
@MC changes into uniform2
@CHEERLEADER1 changes into uniform2
@CHEERLEADER2 changes into uniform2
@CHEERLEADER3 changes into uniform2
@CHEERLEADER4 changes into uniform2
@CHEERLEADER5 changes into uniform2
}“Uniform three”{
@MC changes into uniform3
@CHEERLEADER1 changes into uniform3
@CHEERLEADER2 changes into uniform3
@CHEERLEADER3 changes into uniform3
@CHEERLEADER4 changes into uniform3
@CHEERLEADER5 changes into uniform3
}

this is the one i’ll be using
label dressing_game_1

    CHARACTER (animation)
What do I want to wear?

choice (OUTFIT_1)
“Outfit 1” {
@CHARACTER changes into Outfit1
#add your own dialogue and animations

} “Outfit 2” {
@CHARACTER changes into Outfit2
#add your own dialogue and animations

} “Outfit 3” {
@CHARACTER changes into Outfit3
#add your own dialogue and animations
}

    CHARACTER (animation)
Do I want to wear this one?

choice
“It’s perfect!” {
#add your own dialogue and animations

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

1 Like

label dressing_game_1

CHARACTER (animation)

What cheerleading uniform should we wear?

choice
“Uniform one”{
@MC changes into uniform1
@CHEERLEADER1 changes into uniform1
@CHEERLEADER2 changes into uniform1
@CHEERLEADER3 changes into uniform1
@CHEERLEADER4 changes into uniform1
@CHEERLEADER5 changes into uniform1
}“Uniform two”{
@MC changes into uniform2
@CHEERLEADER1 changes into uniform2
@CHEERLEADER2 changes into uniform2
@CHEERLEADER3 changes into uniform2
@CHEERLEADER4 changes into uniform2
@CHEERLEADER5 changes into uniform2
}“Uniform three”{
@MC changes into uniform3
@CHEERLEADER1 changes into uniform3
@CHEERLEADER2 changes into uniform3
@CHEERLEADER3 changes into uniform3
@CHEERLEADER4 changes into uniform3
@CHEERLEADER5 changes into uniform3
}

CHARACTER (animation)

Do I want to wear this one?

choice
“It’s perfect!” {
#add your own dialogue and animations

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

Making sure that you change MC, CHEERLEADER1, 2, etc, and outfit names into your own :slight_smile:

thank you <33 you’re a lifesaver

1 Like

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