How to do choices (Help)

I was wondering if you put clothing choices like this:

if (dressing_game1 is “Black and Beige”) {

@CHAR changes into Black and Beige

} elif (dressing_game1 is “Blue and Blue and Black”) {

@CHAR changes into Blue and Black

} else {

}

There are choices before that aswell it’s not just this…
But does it come showing on your phone changing or when people read the story, thats when it comes?

Moved to Directing Help & Tips as that’s where scripting questions live! Feel free to review this tutorial, it has a lot of info about where to organize posts on the forums :slight_smile:

1 Like

The if/elif/else is for remembering choices only.

A simple choice looks like this:

CHARACTER
Dialogue.

choice
"Option 1" {

} "Option 2" {

} "Option 3" {

}

If you click on the link in my bio, I have a Simple Dressing Game template that you can use (not the closet one)

When i try to see if the character changes in the outfit i chose it doesn’t come or is that normal?

What are you trying to do? Are you trying to make a choice to choose an outfit, or are you trying to remember the choice?

I gave them choices and them i changed into something else after a bit. Now i want them to remember what they chose in the outfit before

What does your dressing game choice look like?

choice (dressing_game1)
“Black and Beige” {
@MADISON changes into Black and Beige
} “Blue and Black” {
@MADISON changes into Blue and Black
}

Then after some scenes i changed into something else and now i wanted it to change it in the outfit they chose

if (dressing_game1 is “Black and Beige”) {

@MADISON changes into Black and Beige

} elif (dressing_game1 is “Blue and Blue and Black”) {

@MADISON changes into Blue and Black

} else {

}

Since you only have 2 choices, just use if and an else

if (dressing_game1 is "Black and Beige") {
@/MADISON changes into Black and Beige

} else {
@/MADISON changes into Blue and Black
}

There is written this is not a valid directing command

You need to remove the slash between @ and MADISON. I just put it there so it wouldn’t tag the user.

Omg, thank you so much x :slight_smile:

1 Like