Hi!
In a chapter I have a dressing game. I want to do a flashback, so there the MC wears other clothes.
How can I let the script remember what the reader has chosen?
Thanks!
Hi!
In a chapter I have a dressing game. I want to do a flashback, so there the MC wears other clothes.
How can I let the script remember what the reader has chosen?
Thanks!
INK:
INT. TEEN SISTER’S BEDROOM - DAY
#You can change the background above to any background you like!
@cut to zone 2
@CHARACTER1 stands screen center AND CHARACTER1 faces right
@CHARACTER1 starts idle_happy
@pause for 3
label dressing_game
CHARACTER1
(What should I wear today?)
choice
“Outfit 1”{
@CHARACTER1 walks to upscreen left in zone 3
@CHARACTER1 changes into MC_outfit1
#Change the word MC_outfit1 to whatever your first outfit’s filename is - e.g. RACHEL_smart_casual
}
“Outfit 2”{
@CHARACTER1 walks to upscreen left in zone 3
@CHARACTER1 changes into MC_outfit2
#Change the word MC_outfit2 to whatever your second outfit’s filename is - e.g. RACHEL_winter_clothes
}
“Outfit 3”{
@CHARACTER1 walks to upscreen left in zone 3
@CHARACTER1 changes into MC_outfit3
#Change the word MC_outfit3 to whatever your third outfit’s filename is - e.g. RACHEL_workout_gear
}
@CHARACTER1 walks to screen center in zone 2
@pause for a beat
CHARACTER1 (think)
(Shall I wear this or try something else?)
choice
“Wear this outfit.”{
CHARACTER1 (head_bob)
(This is perfect!)
}
“Try something else.”{
goto dressing_game
}
@CHARACTER1 exits left
LIMELIGHT
INT. TEEN SISTER’S BEDROOM - DAY
#You can change the background above to any background you like!
@cut to zone 2
@CHARACTER1 stands screen center AND CHARACTER1 faces right
@CHARACTER1 starts idle_happy_loop
@pause for 3
label dressing_game
CHARACTER1
(What should I wear today?)
choice
“Outfit 1”{
@CHARACTER1 walks to upscreen left in zone 3
@CHARACTER1 changes into MC_outfit1
#Change the word MC_outfit1 to whatever your first outfit’s filename is - e.g. RACHEL_smart_casual
}
“Outfit 2”{
@CHARACTER1 walks to upscreen left in zone 3
@CHARACTER1 changes into MC_outfit2
#Change the word MC_outfit2 to whatever your second outfit’s filename is - e.g. RACHEL_winter_clothes
}
“Outfit 3”{
@CHARACTER1 walks to upscreen left in zone 3
@CHARACTER1 changes into MC_outfit3
#Change the word MC_outfit3 to whatever your third outfit’s filename is - e.g. RACHEL_workout_gear
}
@CHARACTER1 walks to screen center in zone 2
@pause for a beat
CHARACTER1 (think_rubchin)
(Shall I wear this or try something else?)
choice
“Wear this outfit.”{
CHARACTER1 (idle_headbob_neutral_loop)
(This is perfect!)
}
“Try something else.”{
goto dressing_game
}
@CHARACTER1 exits left
Moved to Directing Helps and Tips since this is about coding. Make sure to check out our Forum Tutorial for more info about where to correctly create topics, and feel to PM me if there are any questions.
You will need to name your choice. Example below-
NARRATOR
What shall I wear?
choice (outfit)
“Option1”{
@CHAR changes into outfit_name1
}
“Option2”{
@CHAR changes into outfit_name2
}
“Option3”{
@CHAR changes into outfit_name3
}
to remember the choice
if(outfit is “Option1”){
@CHAR changes into outfit_name1
}elif(outfit is “Option2”){
@CHAR changes into outfit_name2
}else{
@CHAR changes into outfit_name3
}
hmm… it looks so easy, but it keeps giving me an error.
Maybe I will skip the dressing game. it gives me nerves
LOL Don’t skip it! PM me your script and I’ll fix it later
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.