Changing lipstick with outfits

I want to change lipstick colors depending on the outfit a character is wearing. So lets say my character starts with a natural lip color. They put on a party dress and their lipstick color is like bright pink. They put on another party dress and their lipstick color changes to deep red. Is there anyway I can do that?? The reader won’t be able to choose the color it’s just the color I set for every outfit.

1 Like

Yeah, of course! When you do choices they use these curly bracket things “{…}” which have the action in the middle which you want to happen if the character clicks it. You just need to have the “@CHARACTER changes mouthColor into Cherry Red” for example.

1 Like

Oh ok thank you! If it isn’t too much to ask would you mind giving me an example? I’m new to this whole coding thing

1 Like

Sure!

Example

label choosing_outfit

    CHARACTER (think)
(What should I wear for my first day?)

choice
“Option 1”{

@CHARACTER is dustoff_loop
@pause for a beat
@CHARACTER changes into CHARACTER_OUTFIT1
@CHARACTER changes mouthColor into Cherry Red

}
“Option 2”{

@CHARACTER is dustoff_loop
@pause for a beat
@CHARACTER changes into CHARACTER_OUTFIT2
@CHARACTER changes mouthColor into Ruby Red

}
“Option 3”{

@CHARACTER is dustoff_loop
@pause for a beat
@CHARACTER changes into CHARACTER_OUTFIT3
@CHARACTER changes mouthColor into Scarlet

}

@pause for a beat

    CHARACTER (talk_think)
(Should I wear this?)

choice
“Yes”{
CHARACTER (talk_exclaim_yes)
Love it!

}
“No”{

goto choosing_outfit

}

1 Like

Also while you’re here, if you have time I’d greatly appreciate if you read my new story!

Title: My Sunflower
Author: Holly Faith
Genre: Romance
Description: After a traumatising past, April moves to L.A for a fresh start. But what happens when she catches the eyes of the gorgeous twins, Isaac and Noah?!
Link: http://episodeinteractive.com/s/5787730465325056
Instagram: hollyfaithepi

Thanks!!

1 Like

Thank you!! And yes, I’ll check out your story right now :slight_smile:

1 Like

Thanks so much!:heartpulse::heartpulse:

1 Like

Of course! I love supporting small writers considering I am one myself

1 Like

:smiling_face_with_three_hearts::heartpulse:

1 Like

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