So I put in the template from @Dara.Amarie website that allows the reader to choose their outfit, however when I had previewed it, I choose outfit #1 and when I pressed confirm it changed the outfit to number 3. I tried it again but wih outfit 2 and the same thing happened. Even if I choose option 1 or 2 itt gets changed to option 3. Does anyone know what I am doing wrong?
This is the script if you couldn’t tell
label dressing_game_2
ARIA (talk_think_neutral)
What should I wear to the interview?
choice (OUTFIT_1)
“Outfit 1” { @ARIA changes into ARIA_INTERVIEW_OUTFIT 1 @pause for a beat
} “Outfit 2” { @ARIA changes into ARIA_iNTERVIEW_OUTFIT2 @pause for a beat
} “Outfit 3” { @ARIA changes into ARIA_INTERVIEW_OUTFIT3
} @pause for a beat
ARIA (idle_shiftweight_neutral_loop)
Do I want to wear this one?
choice
“Lookin like a snack!” {
} “No ewww!” {
goto dressing_game_2
}
if (OUTFIT_1 is “Option 1”) { @ARIA changes into ARIA_INTERVIEW_OUTFIT 1
} elif (OUTFIT_1 is “Option 2”) { @ARIA changes into ARIA_iNTERVIEW_OUTFIT2
} else { @ARIA changes into ARIA_INTERVIEW_OUTFIT3
}
Sorry I reread it that’s wrong what I said.[quote=“Writer_SA, post:1, topic:272156”]
choice (OUTFIT_1) choice should just be outfit, or have outfit_1 then option 1, option 2 and option 3 with the outfit changes
“Outfit 1” { @ARIA changes into ARIA_INTERVIEW_OUTFIT 1 @pause for a beat
} “Outfit 2” { @ARIA changes into ARIA_iNTERVIEW_OUTFIT2 @pause for a beat
} “Outfit 3” { @ARIA changes into ARIA_INTERVIEW_OUTFIT3
} @pause for a beat
[/quote]
To make it easier go to Confused with choices pick the style your using, ink or limelight and put your character in the script code then just change want you need to.
Also, you don’t need the if/elif/else coding below it. it’s repetitive. if you character changes into something, they’ll remain in it unless u change them out of it. if/elif/else should be used for remembering choices that happen later on, usually (in your case, it’s not needed right below).
@Katie36 the link worked thanks @JemU776 I am so dumb for all my other dressing games I put the if/elif/else code and I was so confused why I put it now I know that its for alter choices
Thank you @Katie36 and @JemU776