Please help: unexpected block end

Hi, I am having trouble finding what mistake I’ve made. And let’s just say episode is not helping at all. This is what I’ve written:

label check_again

    LIAM (talk_armscrossed_neutral_loop)
Ster, remember. You should always start follow the order punch, duck, punch, punch and duck.

    NARRATOR
Did you get that?

choice “Yes, I want to play the mini game” {

label start_the_mini_game

} “No, I want to see it again” {

label check_again

}

label start_the_mini_game

And it keeps saying the problem is on the “No, I want to see it again” but I can’t seem to find the problem. I don’t know if I’m missing something obvious or if episode decided do go crazy.
Please help me.

Okay, so the problem here is that you need to put “goto label check_again” and “goto label_start_minigame”. For example this is how it should look:

label check_again

LIAM (talk_armscrossed_neutral_loop)
Ster, remember. You should always start follow the order punch, duck, punch, punch and duck.

NARRATOR
Did you get that?
choice “Yes, I want to play the mini game” {

goto label start_the_mini_game

} “No, I want to see it again” {

goto label check_again

}

label start_the_mini_game
{Rest of the code for the minigame}

2 Likes

Thank you sooooo much!!! You’re a lifesaver!!!

1 Like

No problem! :blush:

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