To remember the outfit choice

Somebody, help me :tired_face:
I don’t understand how to remember previous choice of outfit and basing on this choice change future outfit. I mean choosing an outfit later will depend on which swimsuit will wear my MC.
I did it like this
dressing%20game
Then
swimsuit

But it didn’t work…
And my MC always change into third outfit.

1 Like

if (OUTFIT_1 is “Outfit 1”) {

} elif (OUTFIT_1 is “Outfit 2”) {

} else {

}

Can read more here: Using if/elif/else to Remember Past Choices

Example using the choice name and option method:

P.S feel free to check out: HOW TO: Reset Story Progress + Bonus Stuff :blob_sun: so you can test other paths.

1 Like

Try this

KATE
(Shall I wear this or try something else?)
choice
“Wear this” {

gain spot1

KATE
This is perfect.

}“Try something else.” {

goto xx

}

And so on for every outfit option, of course your gains have to have different names.

Then just put the gained names in your “if” just like you did.

1 Like

Looks like your method worked :partying_face: Thank u so much!
I don’t know what I would do without you :kissing_heart:

1 Like

I’m happy it worked :grin: Good luck with your story!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.