Characters clothes going into new episodes

Hi, so i am currently writing my first story and in the previous episode, i had an outfit choice, and i want that character to be wearing that same outfit that the person chose, for the next episode, and i am not sure how or if i can do that. Help?

2 Likes

In your choice in the previous episode white:
Choice (first_outfit)
“Dress”{

@CHARACTER changes into CHARACTER_dress

}
“Jeans”

@CHARACTER changes into CHARACTER_jeans

}

Then in your second episode they should have the same outfit if you didn’t change it other wise you can use this:

If (first_outfit is “Dress”){

@CHARACTER changes into CHARACTER_dress

}elif (first_outfit is “Jeans”){

@CHARACTER changes into CHARACTER_jeans

}

This should work. This is just an example. Hope it helps!

Well I mean, if you let the readers decide what outfit the character wears… And the character didn’t change outfits right before the end of the episode, you don’t have to do anything-

characters stay in the same outfit until you change it, so unless you changed their outfit and you want them to change back into one from before, you don’t have to do anything else. if you did change their outfit, and want to go back to a previous one, then just follow what @xosdr wrote.

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