#OK @Absinte i have to go now, you said you had 6 overlays so im going to use KEY_3 in this coding:
#So assuming circle-blackb has key-1, circle-blackb2 has key-2 and circle-blackb3 has key-3 (2 and 3 wrong, 1 right) can also try (borrowed a portion from @/dishsoap ’ s coding):
label circle_menu
tappable
“CIRCLE-BLACKB” {
NARR
You chose this key. Is that correct?
choice
“Yes, I chose correctly.” {
readerMessage You’ve chosen the right key, Witch! with messageTitle +1 Witch point!
} “No, I made a mistake!” {
goto circle_menu
}
} “KEY-1” {
NARR
You chose this key. Is that correct?
choice
“Yes, I chose correctly.” {
readerMessage You’ve chosen the right key, Witch! with messageTitle +1 Witch point!
} “No, I made a mistake!” {
goto circle_menu
}
} “CIRCLE-BLACKB2” {
NARR
You chose this key. Is that correct?
choice
“Yes, I chose correctly.” {
sound wrong_buzz
readerMessage Your answer is wrong. Please try again.
goto circle_menu
} “No, I made a mistake!” {
goto circle_menu
}
} “KEY-2” {
NARR
You chose this key. Is that correct?
choice
“Yes, I chose correctly.” {
sound wrong_buzz
readerMessage Your answer is wrong. Please try again.
goto circle_menu
} “No, I made a mistake!” {
goto circle_menu
}
} “CIRCLE-BLACKB3” {
NARR
You chose this key. Is that correct?
choice
“Yes, I chose correctly.” {
sound wrong_buzz
readerMessage Your answer is wrong. Please try again.
goto circle_menu
} “No, I made a mistake!” {
goto circle_menu
}
} “KEY-3” {
NARR
You chose this key. Is that correct?
choice
“Yes, I chose correctly.” {
sound wrong_buzz
readerMessage Your answer is wrong. Please try again.
goto circle_menu
} “No, I made a mistake!” {
goto circle_menu
}
}
#continue