Tappable menu help needed!

label GAME_MENU

tappable
“EOV_START”{
#START THE CHAPTER
goto CHAPTER_IS_STARTING

}
“EOV_SKIP”{
#SKIP THE CHAPTER

    NARR
Are you sure you want to skip the chapter?

choice
“Yes, I’m sure”{ goto CHAPTER_IS_ENDING

}
“No, I don’t want to” {
goto GAME_MENU
}
}
“EOV_CUSTOMISE”{
#START THE CHAPTER
goto EOV_CUSTOMISE

}
THE TAPABBLE MENU DOESN’T WORK…I CAN’T FIGURE OUT WHAT IS WRONG WITH IT

2 Likes

What doesn’t work exactly? What happens when you try it?

1 Like

When i click on Skip and customise …it doesn’t proceed…even hen i click on the options , Start is automatically tapped

1 Like

Make sure your overlays do not overlap with special care on the transparent parts, which count as well. If that were the case, you would be tapping the overlapped overlay with the highest layer instead of the one you want to tap.

3 Likes

The labels aren’t working and when the choice is put to skip , after choosing an option the speech bubble remains there itself

1 Like

Put goto CHAPTER_IS_ENDING in a new line, I hope it works.

Edit: One more possible error:

Send "EOV_CUSTOMISE to the same line on the } on top of it. It’s what I would do under normal circumstances, but it may not be the solution.

1 Like

Try this:

label GAME_MENU

tappable
“EOV_START”{

#START THE CHAPTER

goto CHAPTER_IS_STARTING

}“EOV_SKIP”{

#SKIP THE CHAPTER

NARR

Are you sure you want to skip the chapter?

choice
“Yes, I’m sure”{

goto CHAPTER_IS_ENDING

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

goto GAME_MENU
}}

}“EOV_CUSTOMISE” {

#START THE CHAPTER

goto EOV_CUSTOMISE

}

2 Likes

THANK U FOR HELPING. I USED IT BUT I GET THIS ERROR

Web capture_26-8-2021_22618_www.episodeinteractive.com

1 Like

Make sure the coding inside is all alright, Episode sometimes highlight an error with different name. If that’s not the case, let’s see what it could be.

1 Like

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