Help with a mini game

I am trying to make a mini-game. but I can’t get the overlays to work. you have to tap on the right sign in time. but instead of wait the 6 second it moves right away. how do I get to move after 6 seconds

my script

INT. SUPERMARKET with TAPHERE1 to 0.212 9 207 in zone 1 with TAPHERE4 to 0.224 200 205 in zone 3 with TAPHERE2 to 0.236 -36 193 in zone 2 with TAPHERE3 to 0.224 253 212 in zone 2 with TAPHERE5 to 0.236 -16 -9 in zone 1
@zoom reset
@cut to zone 2
@JANE enters from right to screen center
JANE
Almost ready to go home just need to do some inventory

&overlay PLUSH create
@overlay 5973885830823936_PLUSH shifts to 42 187 in zone 2
@overlay 5973885830823936_PLUSH scales to 1.056 1.056 in zone 2

label first_game

Are you ready ?

choice
“yes I am” {
@JANE exits left
}
“please repeat that for me” {

goto first_game
}
&overlay CHAMPAGNE create
@overlay 5973885830823936_CHAMPAGNE shifts to 96 -138 in zone 2
@overlay 5973885830823936_CHAMPAGNE scales to 1.680 1.680 in zone 2
@overlay CHAMPAGNE opacity 1 in 0
@overlay 5973885830823936_CHAMPAGNE shifts to 92 52 in zone 2 in 2
&pause for 6
&overlay TAPHERE1 shifts to 9 207 in zone 5 in 0
&overlay TAPHERE5 shifts to 9 207 in 0
tappable [pan:1:3]
“TAPHERE1” {
@overlay PLUSH opacity 1 in 1
@cut to zone 2
@JANE +1
sound correct_ding
NARRATOR
Correct
@overlay PLUSH opacity 0 in 1

}
“TAPHERE2” {
@cut to zone 2
sound wrong_buzz
NARRATOR
Wrong
}
“TAPHERE3” {
@cut to zone 2
sound wrong_buzz
NARRATOR
Wrong

}
“TAPHERE4” {
@cut to zone 2
sound wrong_buzz
NARRATOR
Wrong
}
“TAPHERE5” {
sound incorrect_buzzer
NARRATOR
Too late
@cut to zone 2

}

1 Like

@Apes

1 Like

Use @ for pause instead of &
@pause for 6

But wont that make so you cant tap?

yes it dosent work. it waits 6 second before it goes on to the tappable choice

you mean that you want to make timed tappable?

yes

I don’t think you can use it while it’s pannable or I don’t know the code.

@Dara.Amarie? :thinking:

I know I cant thats why I makeing the overlays moveing.

So you want the overlays to move after 6 seconds? You would need to use the THEN command:

&pause for 6 THEN overlay TAPHERE1 shifts to 9 207 in zone 5 in 0 and overlay TAPHERE5 shifts to 9 207 in 0

1 Like

Thanks You Dara its working now

1 Like

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