Making Clothing Choices

Hi!

I’m having trouble with the algorithm for choices in regards to choosing clothes (what to wear). Does anyone know of a good tutorial or template for it?
Also, how can I continue a choice between chapters for outfits?

Thank you,
Ace

1 Like

what does your script look like

label_outfit_game1
choice
“Outfit 1”{
@CHAR changes into Outfit1
goto outfit_game_1
}
“Outfit 2”{
@CHAR changes into Outfit2
goto outfit_game_1
}
“Outfit 3”{
@CHAR changes into Outfit3
goto outfit_game_1
}
“This is it!”{
continue
}

1 Like

Thank you! but I’m also wondering, how do I make a label? It’s showing up as a warning in my script

2 Likes

All you need to do is
choice
outfit name
and so on so on
Also Dara Amarie has some templates that you can use for those types of things

Can you send me your script

Just do label_whatever you want
But you have to use it again if that makes sense. try copying what I gave you in my script, see if that works

1 Like

:slight_smile:

I got it to work thank you!

1 Like