Choice help please?!?!?

If you have a choice in episode 1 and you want to remember what the reader pickt in episode 2 what do you write??

I feel like a idiot I dont get a thing

don’t feel that way we’re all learning :relaxed:

1 Like

There are two ways to do it:
Everything in bold you change to make it relevant to your story.

Naming your choice...
Episode 1

NARRATOR
Would you like to go out?
choice (goOut )
“Yes” {
SCENE
}
"No {
SCENE
}

In the future...

if (goOut is “Yes”) {
SCENE - If they chose yes.
}
else {
SCENE - If they chose no.
}

Using Flags and Gains...
Episode 1

NARRATOR
Would you like to go out?
choice
“Yes” {
gain Yes
SCENE
}
"No {
gain No
SCENE
}

In the future...

if (Yes) {
SCENE - If they chose yes.}
else {
SCENE - If they chose no.
}

when you write the choice you want to remember, put a name for it. for example…

choice (write_name_here)
“option one” {

}
“option two” {

}
“option three” {

}

to remember the choice later on, you have to put this…

if (write_name_here is “option one”){

then write the script for if the reader picked this choice

}
elif (write_name_here is “option two”){

write script for if the reader picked the choice

}
else {

write script for this choice

}

an example of this is…
CHAR1
what’s your favourite colour?

choice (favourite_colour)
“red” {
CHAR2
it’s red!

}
“green” {
CHAR2
it’s green!

}
“blue” {
CHAR2
it’s blue!

}

then you would write a script here…
then if you want to reference that choice later, you would write…

if (favourite_colour is “red”){
CHAR1
i bought you a red necklace!

}
elif (favourite_colour is “green”){
CHAR1
i bought you some green shoes!

}
else {
CHAR1
i bought you a blue dress!

}

you can use this method to reference choices made in other episodes!

i hope this helped! don’t be afraid to ask more questions xo

1 Like

omg thanks finally i understand

wait just a thing should not the choose be in the script if the chooses yes or no if you want those clothes?

YOU (talk_think)
What should I be ?

choice (favourite_costume)
“agent” {
@YOU is dustoff_loop
@YOU changes into agent

}
“sexy teacher” {
@YOU is dustoff_loop
@YOU changes into sexy teacher

}
“devil” {
@YOU is dustoff_loop
@YOU changes into devil

}

if (favourite_costume is “agent”){
@YOU is dustoff_loop
@YOU changes into agent

}
elif (favourite_colour is “sexy teacher”){
@YOU is dustoff_loop
@YOU changes into sexy teacher

}
else {
@YOU is dustoff_loop
@YOU changes into devil
}

perfect! so now, whenever you create a new scene, before your character enters, you would put…

if (favourite_costume is “agent”){
@YOU changes into agent
@YOU enters from left to screen left (or whatever you want)

}
elif (favourite_costume is “sexy teacher”){
@YOU changes into sexy teacher
@YOU enters from left to screen left (or whatever you want)

}
else {
@YOU changes into devil
@YOU enters from left to screen left (or whatever you want)

}

ok so in every new scen I put that

1 Like

yes! it may seem tedious but you’ll soon get the hang of it xo

but if you want the readers to test the clothest before select them what do I write then in episode one then

YOU (talk_think)
What should I be ?

choice (favourite_costume)
“agent” {
@YOU is dustoff_loop
@YOU changes into agent

}
“sexy teacher” {
@YOU is dustoff_loop
@YOU changes into sexy teacher

}
“devil” {
@YOU is dustoff_loop
@YOU changes into devil

}

@YOU exits left

you would write…

label choose_costume
YOU (talk_think)
What should I be?

choice (favourite_costume)
“agent” {
@YOU is dustoff_loop
@YOU changes into agent

YOU (talk_think)
Should I wear this?

choice
“Yes” {
@YOU is primp_neutral
@YOU exits left
}
“No” {
@YOU is eyeroll_subtle
goto choose_costume
}

}
“sexy teacher” {
@YOU is dustoff_loop
@YOU changes into sexy teacher
YOU (talk_think)
Should I wear this?

choice
“Yes” {
@YOU is primp_neutral
@YOU exits left
}
“No” {
@YOU is eyeroll_subtle
goto choose_costume
}

}
“devil” {
@YOU is dustoff_loop
@YOU changes into devil
YOU (talk_think)
Should I wear this?

choice
“Yes” {
@YOU is primp_neutral
@YOU exits left
}
“No” {
@YOU is eyeroll_subtle
goto choose_costume
}

}

Reply

This topic will close a month after the last reply.

Bookmark Share Flag Invite Reply

Tracking

You will see a count of new replies because you posted a reply to this topic.

Suggested Topics

Directing Helps & Tips|699|70.2k|2d|
|There’s an issue with my script. Please help!

Directing Helps & Tips|7|9|2m|
|Question about gains, ifs, and choices

Directing Helps & Tips|2|13|2h|
|Basics of layers and fading character template! slight_smile

Directing Helps & Tips|2|13|2h|
|Directing Story Help!

Directing Helps & Tips|2|18|2h|

There are 10 unread and 102 new topics remaining, or browse other topics in Directing Helps & Tips

Terms of Service Privacy Policy Copyright Community Guidelines Safety Concerns Help Center

© 2013-2018 Episode Interactive, LLC, All Rights Reserved.
Paramount: TM & ©2017 Paramount Pictures. All Rights Reserved.
WB: PRETTY LITTLE LIARS and all related characters and elements © & ™ Warner Bros. Entertainment Inc. (s17)

i’m so sorry, i didn’t mean to do that! sorry! xo

…my character has this clothes in the begining of my story now too?? but my choice is in the end

11

Are you writing it on the website or the app?

i found out why thank you anyway

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.