So I'm trying to do a branch choice but I don't know how I would put this

Can I have some help please with this
I’m trying to branch these choice along with the character remembering choices

choice “Stay and see what he hiding” {

} “Head to the party” {

}

your orginal choice should look like this

choice (something_something)
“1” {

}
“2” {

}
“3” {

}

then when you need to use it

if (something_something is “1”) {

}
if (something_something is “2”) {

}
else {

}

I’m trying see what it means but I can’t really picture what your meaning

Sorry if I’m being complicated, I’m still learning different things with the choices

choice “Stay and see what he hiding” {

gain stay
} “Head to the party” {

gain go
}

if you want to bring the choice up

if (stay) {
#scene for the first choice
}else{
#scene for the second choice
}

more about remembering choices here:

FAITH

choice “Stay and see what he hiding” {
FAITH
(What are you hiding)
gain stay
} “Head to the party” {
FAITH
(None of my business)
gain go
}

if (stay) {
INT. LAVISH DINING HALL - NIGHT
}else (go){
INT. DELTA PARTY - NIGHT

}

I got this part, but do I just do the scenes then end it on the the same setting ?

when you’re testing different outcomes you need to reset your story progress

I got the second part is not working

choice
“Stay and see what he hiding” {
FAITH
(What are you hiding)
gain choose_stay

} “Head to the party” {
FAITH
(None of my business)
@FAITH exits left
gain choose_leave
}

if (choose_stay) {
INT. LAVISH DINING HALL - NIGHT

    FAITH (talk_neutral)
Why aren't you at the party

@pause for a beat

    JAYDEN (talk_armscrossed_shrug_neutral)
Not really my thing

    FAITH (talk_shrug_neutral)
I don't believe you

    JAYDEN (talk_explain_neutral)
Don't need you too

    FAITH (talk_neutral)
So you're just waltzing around

    JAYDEN (talk_think_neutral)
You're not here for the party are you

    FAITH (talk_apathetic)
I'm am just don't know where it is

    JAYDEN (talk_read_phone_neutral)
Well go find it

    FAITH (talk_think_neutral)
So are you like Maddie brother or cousin

&JAYDEN is idle_armscrossed_angry_loop
@pause for a beat
&FAITH is laugh_giggle

@pause for a beat
FAITH (talk_apathetic)
I see I got you’re attention now

} elif (choose_leave){
INT. DELTA PARTY - NIGHT

@MADDIE changes into MADDIE_PARTY1

@cut to zone 1

&FAITH enters from left to screen left AND FAITH faces right

    FAITH
(Why am I'm even here)

@MADDIE enters from right to screen center AND MADDIE faces left

    FAITH (idle_armscrossed_neutral_loop)
(What could she possibly want)

    MADDIE (talk_doubtful)
What are you doing here

    FAITH (talk_neutral)
Just to be here pretty much

    FAITH (talk_airquotes)
What are you doing here

&FAITH is idle_shiftweight_neutral_loop

    MADDIE (talk_argue_angry)
If you haven't notice you're at my party

    MADDIE (talk_gossip)
And you shall play by my rules

    MADDIE (talk_think_neutral)
You coming to the after party right

&FAITH is think_rubchin

    MADDIE (talk_apathetic)
Oh wait you can't because mommy have a curffew for you

    NARRATOR (FAITH)
I don't know what came over me but

    FAITH (talk_handsonhips_neutral)
I'll be there

&MADDIE is kiss_blow_happy

    MADDIE
Tootles

}

change that to:

} else {
#scene here
}

do i need the # or no

no, it was just to show you where scene should go

do i change elif to else

and take off } elif (choose_leave){
then do i place it between the } else{

choice
“Stay and see what he hiding” {
FAITH
(What are you hiding)
gain choose_stay

} “Head to the party” {
FAITH
(None of my business)
@FAITH exits left
gain choose_leave
}

if (choose_stay) {
INT. LAVISH DINING HALL - NIGHT

    FAITH (talk_neutral)
Why aren't you at the party

@pause for a beat

    JAYDEN (talk_armscrossed_shrug_neutral)
Not really my thing

    FAITH (talk_shrug_neutral)
I don't believe you

    JAYDEN (talk_explain_neutral)
Don't need you too

    FAITH (talk_neutral)
So you're just waltzing around

    JAYDEN (talk_think_neutral)
You're not here for the party are you

    FAITH (talk_apathetic)
I'm am just don't know where it is

    JAYDEN (talk_read_phone_neutral)
Well go find it

    FAITH (talk_think_neutral)
So are you like Maddie brother or cousin

&JAYDEN is idle_armscrossed_angry_loop
@pause for a beat
&FAITH is laugh_giggle

@pause for a beat
FAITH (talk_apathetic)
I see I got you’re attention now

} else {
INT. DELTA PARTY - NIGHT

@MADDIE changes into MADDIE_PARTY1

@cut to zone 1

&FAITH enters from left to screen left AND FAITH faces right

    FAITH
(Why am I'm even here)

@MADDIE enters from right to screen center AND MADDIE faces left

    FAITH (idle_armscrossed_neutral_loop)
(What could she possibly want)

    MADDIE (talk_doubtful)
What are you doing here

    FAITH (talk_neutral)
Just to be here pretty much

    FAITH (talk_airquotes)
What are you doing here

&FAITH is idle_shiftweight_neutral_loop

    MADDIE (talk_argue_angry)
If you haven't notice you're at my party

    MADDIE (talk_gossip)
And you shall play by my rules

    MADDIE (talk_think_neutral)
You coming to the after party right

&FAITH is think_rubchin

    MADDIE (talk_apathetic)
Oh wait you can't because mommy have a curffew for you

    NARRATOR (FAITH)
I don't know what came over me but

    FAITH (talk_handsonhips_neutral)
I'll be there

&MADDIE is kiss_blow_happy

    MADDIE
Tootles

}

Your amazing

Thank you so much :smiley:

1 Like

no problem :smiley:

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