So I made my character pick a choice whether she wanted to wear a dress or causal, but if for example she picked casual how do I allow her to wear the outfit throughout the whole episode?
1 Like
itāll stay as the outfit the reader picked unless you change it again.
Oh. I meant for example they picked an outfit for the next day, how would it be the same?
name the choice.
NARRATOR (CHAR)
What should I wear tomorrow?
choice (nextday_outfit)
"Something casual."{
# whatever code you want goes here
}
"A dress."{
# code
}
# The next day
if (nextday_outfit) is "Something casual."{
@CHAR changes into casualoutfitname
}
else {
@CHAR changes into dressoutfitname
}
Ok Iāll try that