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
Zeah
July 7, 2019, 10:43am
2
Change “Option 2” into “Option 1”, so you’ll have “Option 1” both times.
I’ve tried that but it still isn’t working
Apes
July 7, 2019, 11:03am
4
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
Apes
July 7, 2019, 11:09am
6
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
Thanks so much and how do I reset story progress?
Apes
July 7, 2019, 11:21am
8
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)
Zeah
July 7, 2019, 1:26pm
9
But it’s not a dressing game.
system
Closed
August 6, 2019, 11:38pm
10
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.