When choosing a choice and it goes to the next episode?

How do i code that and how will be to put that in my story.

I need this for when the character wants to stay or go somewhere and how it will effect the next chapter

Use gains and the if/elif/else method.
You can read more about it here:

Thanks

So I would have to use both of these when I’m going to write it in the story

For example your main choice is:

NARR
Text.
choice
“Go”{

gain go

}“Stay”{

gain stay

}

later in the next episode

if (go) {
#scene for go

}else{
#scene for stay
}

Thanks

So can I use one part for one episode and other one for the next episode

yes, that’s the way you explained that you want it :smile:

@Apes is this right ? I’m asking because I keep getting an error about the if

    NARR
Mason its your choice

choice
“Go Home”{
gain go_home
}“Stay on Island”{
gain stay_island
}
later in the next episode

if (go) {
#scene for go
EXT. WEDDING AISLE - DAY
@ MASON changes into KING JOHN_default
@ PRINCESS changes into PRINCESS_default

@ PRINCESS stands screen left AND PRINCESS faces right AND PRINCESS is idle_happy_pose
@ MASON stands screen right AND MASON faces left AND MASON is idle_awkward_uneasy_loop

NARR (KING JOHN)
I know pronounce you husband and wife.

}else{
#scene for stay
EXT. SHIPISLAND - DAY
@ MASON stands screen center AND MASON faces left
@ ISABELLA stands screen right AND ISABELLA faces left
@ ETHAN stands back right AND ETHAN faces left
@ WILLIAM stands screen left AND WILLIAM faces right
MASON (talk_armscrossed_neutral_loop)
I’m going to stay here on the island.

WILLIAM (talk_shrug_neutral)
Okay.

ISABELLA
}

Should be
if (go_home){
As that is the name of your gain/flag :blush:

Thanks

1 Like

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