Adding a necklace

Hiya!
So in my story, the reader has just chosen an outfit for the character (limelight) and her friend has given her a necklace.
I have tried to use the If/elif/else:
if (OUTFIT_1 is “Option 1”) {
@SOPHIA changes into Sophia Party E1 1 necklace

} elif (OUTFIT_2 is “Option 2”) {
@SOPHIA changes into Sophia Party E1 2 necklace

} else {
@SOPHIA changes into Sophia Party E1 3 necklace
}
however she seems to change into one of the other outfit not the one I want her to.
Any advice?

1 Like

Change “Option 2” into “Option 1”, so you’ll have “Option 1” both times.

I’ve tried that but it still isn’t working :frowning:

can you show your dressing game code?

Did you reset story progress before testing different outcomes?

label dressing_game_1

    SOPHIA (idle_happy_pose)
What do I want to wear for school?

choice (OUTFIT_1)
“Outfit 1” {
@SOPHIA starts dustoff_neutral_loop
@SOPHIA changes into SOPHIA_default
@SOPHIA starts idle_happy_pose

} “Outfit 2” {
@SOPHIA starts dustoff_neutral_loop
@SOPHIA changes into Sophia Option 2 E1
@SOPHIA starts idle_happy_pose

} “Outfit 3” {
@SOPHIA starts dustoff_neutral_loop
@SOPHIA changes into Sophia Option 3 E1
@SOPHIA starts idle_happy_pose
}

    SOPHIA (idle_happy_pose)
Do I want to wear this one?

choice
“It’s perfect!” {
@SOPHIA starts flirt_wink_atcamera_pose

} “No, I want to try on the others!” {
goto dressing_game_1
}

its just a simple one

if (OUTFIT_1 is “Option 1”) {
@SOPHIA changes into Sophia Party E1 1 necklace

} elif (OUTFIT_1 is “Option 2”) {
@SOPHIA changes into Sophia Party E1 2 necklace

} else {
@SOPHIA changes into Sophia Party E1 3 necklace
}

Just change this and make sure you reset story progress :slight_smile:

Thanks so much and how do I reset story progress? :slight_smile:

To reset story progress, click on Navigation then Reset Story Progress

You can also click on Story Modifiers and then Flags (you can ungain flags, or gain them to check different outcomes)

But it’s not a dressing game.

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