Help! When i press other buttons it keeps asking me if i want to start

I’m trying to get it to ask me if i want to customize or skip but it keeps asking if i want to start the chapter. How do i fix this i have been fighting with it for hours!

Here’s my script

label menu

@overlay START create
@overlay 4628770297413632_START shifts to 38 300 in zone 2
@overlay 4628770297413632_START scales to 1.019 1.019
@overlay START opacity 1 in 1

@overlay SKIP create
@overlay 4628770297413632_SKIP shifts to 38 237 in zone 2
@overlay 4628770297413632_SKIP scales to 1.019 1.019
@overlay SKIP opacity 1 in 1

@overlay CUSTOMISE create
@overlay 4628770297413632_CUSTOMISE shifts to 38 155 in zone 2
@overlay 4628770297413632_CUSTOMISE scales to 1.019 1.019
@overlay CUSTOMISE opacity 1 in 1

tappable
“START” {

@overlay START clear
@overlay SKIP clear
@overlay CUSTOMISE clear

    NARRATOR
Are you sure you want to start this chapter?

choice
“Yes, I want to start.” {

goto start

}
“No, I don’t want to start…” {

goto menu

}
}

tappable
“SKIP” {

@overlay START clear
@overlay SKIP clear
@overlay CUSTOMISE clear

    NARRATOR
Are you sure you want to skip this chapter?

choice
“Yes, I want to skip.” {

goto skip

}
“No, I don’t want to skip…” {

goto menu

}
}

tappable
“CUSTOMISE” {

@overlay START clear
@overlay SKIP clear
@overlay CUSTOMISE clear

    NARRATOR
Do you want to customise

choice “Yes” {

goto customise

} “No” {

goto menu

}

label customise

INT. SIFI BAG

    NARRATOR
You have the chance to customize the characters now.

@ELLIOT enters from left to screen center

    ELLIOT (talk_accuse_angry)
Lets custmis.

goto menu
}

label start

@SHILOH enters from left to screen center

@SHILOH is lay_cpr_receive_loop

label skip

INT. TO BE CONTINUED

@SHILOH enters from left to screen center

    SHILOH (take_object_neutral)
Thanks for reading!

how big is the overlay, how much empty space is aroung it, if it goes over the other overlays it can entefire

Example this overlay, you can see all the empty space I put a ring around, thats still the overlay thats still gonna be part of it when you tap
image

There is open space but it doesn’t look like that. Its in the middle

if it has that space it will be tappable. the entire thing is the overlay

Ok thank you. When i press it, it works but it doesn’t take me to customization it takes me to start the chapter when that’s not what i’m tying it to do

1 Like

You only need to put tappable once and you had your last } in the wrong place.

tappable
“START” {
@overlay START clear
@overlay SKIP clear
@overlay CUSTOMISE clear

    NARRATOR
Are you sure you want to start this chapter?
choice
“Yes, I want to start.” {
goto start
}
“No, I don’t want to start…” {
goto menu
}
}
“SKIP” {
@overlay START clear
@overlay SKIP clear
@overlay CUSTOMISE clear

    NARRATOR
Are you sure you want to skip this chapter?
choice
“Yes, I want to skip.” {
goto skip
}
“No, I don’t want to skip…” {
goto menu
}
}
“CUSTOMISE” {
@overlay START clear
@overlay SKIP clear
@overlay CUSTOMISE clear

    NARRATOR
Do you want to customise
choice “Yes” {
goto customise
}
“No” {
goto menu
}
}
1 Like

Ohh really? Thank you! Where is the last } supposed to go?

They moved it for you. Here’s a condensed version of what Jar did, but they did everything right to fix it:

Condensed version
label menu

@overlay START create and overlay START shifts to 38 300 in zone 2 and overlay START scales to 1.019 1.019 and overlay START opacity 1 in 1
@overlay SKIP create and overlay SKIP shifts to 38 237 in zone 2 and overlay SKIP scales to 1.019 1.019 and overlay SKIP opacity 1 in 1
@overlay CUSTOMISE create and overlay CUSTOMISE shifts to 38 155 in zone 2 and overlay CUSTOMISE scales to 1.019 1.019 and overlay CUSTOMISE opacity 1 in 1

tappable
"START" {
@overlay START clear
@overlay SKIP clear
@overlay CUSTOMISE clear
        NARRATOR
    Are you sure you want to start this chapter?
choice
"Yes, I want to start." {
goto start
}"No, I don’t want to start…" {
goto menu
}}"SKIP" {
@overlay START clear
@overlay SKIP clear
@overlay CUSTOMISE clear
        NARRATOR
    Are you sure you want to skip this chapter?
choice
"Yes, I want to skip." {
goto skip
}"No, I don’t want to skip…" {
goto menu
}}"CUSTOMISE"{
@overlay START clear
@overlay SKIP clear
@overlay CUSTOMISE clear
        NARRATOR
    Do you want to customise?
choice
"Yes" {
goto customise
} "No" {
goto menu
}}

label customise

INT. SIFI BAG

        NARRATOR
    You have the chance to customise the characters now.
@ELLIOT enters from left to screen center

        ELLIOT (talk_accuse_angry)
    Let's customise.
goto menu

label start

@SHILOH enters from left to screen center

@SHILOH is lay_cpr_receive_loop

label skip

INT. TO BE CONTINUED

@SHILOH enters from left to screen center

        SHILOH (take_object_neutral)
    Thanks for reading!

It was this bracket (bolded) that was originally misplaced. It should be placed right after the first bracket for the customize choice:

    NARRATOR
Do you want to customise?

choice
“Yes” {
goto customise
} “No” {
goto menu
}}

1 Like

Thank you so very much!

1 Like

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