Three I’m having some problems with remembering outfits.
Here is the dressing game from the script:
label choosing_outfit_episode_10
&LILLIAN is think
NARRATOR
What should I wear?
choice
“Typical Lillian.”{
@LILLIAN is dustoff_loop
@pause for a beat
@LILLIAN changes into LILLIAN_episode_10_3
@pause for a beat
gain chose_Typical_Lillian
}
“Lace.”{
@LILLIAN is dustoff_loop
@pause for a beat
@LILLIAN changes into LILLIAN_episode_10
@pause for a beat
gain chose_Lace
}
“Camo.”{
@LILLIAN is dustoff_loop
@pause for a beat
@LILLIAN changes into LILLIAN_episode_10_2
@pause for a beat
gain chose_Camo
}
&LILLIAN is think
NARRATOR
Is this good?
choice
“Heck yeah.”{
}
“No let me go back.”{
goto choosing_outfit_episode_10
}
Now here’s what is later in the script:
if (chose_Typical_Lillian){
@LILLIAN changes into LILLIAN_episode_10_3
}elif (chose_Lace){
@LILLIAN changes into LILLIAN_episode_10
}else (chose_Camo)
@LILLIAN changes into LILLIAN_episode_10_2
}