Templates for dressing games

label dressing_up

NARR
What do you want to wear?? Choice counts.

#You can include that or not if you want it to have a real-life feel I guess…

choice (dressing_game)
“sexy” {

@CHARACTER changes into Sexy_dress

NARR
Do you want this???

choice (you want it)
“Yep.” {
gain sexy_outfit
NARR
Cool!

} “No.” {

goto dressing_up

}
}“Pretty” {

gain pretty

@CHARACTER changes into Pretty dress

#Clothing doesn’t need to have “_”'s in to replace spaces

NARR
Do you want this???

choice (you want it)
“Yep.” {

NARR
Cool!

} “No.” {

goto dressing_up

}}

NARR
What do you want to wear?? Choice counts.

#You can include that or not if you want it to have a real-life feel I guess…

choice (dressing_game)
“sexy” {
gain sexy_outfit

@CHARACTER changes into Sexy_dress
}“Pretty” {

gain pretty

@CHARACTER changes into Pretty dress

#Clothing doesn’t need to have “_”'s in to replace spaces

}

If (dressing_game is “Sexy”) {

CHAR2
You chose to wear THAT??

CHARACTER (talk_nervous)
Well…

} else {

CHAR2 (talk_arms_crossed_ride)
Pretty…

CHARACTER (primp)
Thank you!!

}

#or this

if (sexy_outfit) {
CHAR2
You chose to wear THAT??

CHARACTER (talk_nervous)
Well…

} else {

CHAR2 (talk_arms_crossed_ride)
Pretty…

CHARACTER (primp)
Thank you!!

}

I tried your template (choice doesn’t matter in mine - keeping it simple)
But still getting an error :frowning: help me please??

choice (dressing_game)
“Girly” {

@NOVA changes into Girly1f

    NARRATOR
Do you want this???

“Yep.” {

    NOVA
Cool!

} “No.”

goto dressing_up

choice (dressing_game)
}“Trendy” {

@NOVA changes into Trendy1f

    NARRATOR
Do you want this???

choice (you want it)
“Yep.” {

    NOVA
Cool!

} “No.” {

goto dressing_up

}
choice (dressing_game)
}“Preppy” {

@NOVA changes into Prep1f

    NARRATOR
Do you want this???

“Yep.” {

    NOVA
Cool!

} “No.” {

goto dressing_up

}}

label dressing_up

#In the choices alsayimg yep. And etc. The should be:
NOVA
Huh?

choice (dressing_game)
“Girly” {

@NOVA changes into Girly1f

    NARRATOR
Do you want this???

choice
“Yep.” {

    NOVA
Cool!

} “No.”

goto dressing_up

}“Trendy” {

@NOVA changes into Trendy1f

    NARRATOR
Do you want this???

choice (you want it)
“Yep.” {

    NOVA
Cool!

} “No.” {

goto dressing_up

}

}“Preppy” {

@NOVA changes into Prep1f

    NARRATOR
Do you want this???

choice
“Yep.” {

    NOVA
Cool!

} “No.” {

goto dressing_up

}}

1 Like

[quote=“Trying_To_Help, post:3, topic:49128, full:true”]
label dressing_up

Hey :slight_smile:
I’m not sure what you did but it’s working now. I’m really bad with the brackets. Was I missing one?
NOVA is my story’s character.

#In the choices alsayimg yep. And etc. The should be:
NOVA
Huh?”
don’t know what you meant by alsayimg. Sorry.
Thank you.

Saying*

The choices should have the word “choice” above them, the way you did it was kinda wrong