Dressing Game Question

So I’m trying to create a dressing game where I show all three outfits and then the reader can choose from the three, rather than the reader choosing to see all three before picking one. I’ve seen it used in stories before, I just don’t know how to code it. Thanks!

2 Likes

You could take a look at Dara Amarie’s arrow dressing game. That might be similar to what you are looking for. If not, let me know. :blob_turtle:

Video of how the dressing game works:

2 Likes

That’s kind of what I mean! I’ve seen it coded in Under You by E Gurney. This is what my script looks like (I’m getting errors so I know it isn’t coded right)

What does the error message say? You might have to be on your computer to see the error message.

I think it might be because you put the brackets in the wrong places. Try using this code:

choice (EM_wears)
“Outfit 1” {
@EM changes into EM1

} “Outfit 2” {
@EM changes into EM2

} “Outfit 3” {
@EM changes into EM3
}

Let me know if this works!

Nope, it still has the same error. :confused:

I’m not sure. @Dara.Amarie @JemU776 can either of you help?

1 Like

EM 1 isn’t glowing pink. Did you mean EM1 together for the clothing?

For dressing game, you should watch your curly brackets. Do it this way:

#at the end, add:

NARR
Are you sure?

choice
“Yep”{

}“Nope”{

goto start_dressing

}

2 Likes

It’s still giving me the same error. :confused:

Could you show a screenshot of your script, what you have now?

1 Like

It actually worked! I left out a bracket and somehow looked past it. Thank you so much! Both of you guys! :black_heart:

Closed: Marked as solved by thread op :v: