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
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
When MC changes into the outfit during the dressing game, have the other cheerleaders change in the branch at the same time 
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
}
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 
thank you <33 you’re a lifesaver
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.