Hii there! So I’m trying to create a mini game in which the Character has to follow a set of instructions like, left, right, left, right.
I want to give only 3 chances to reader. If they win the game in first chance, they earn some points. I know how to use label but I cannot figure how to give only 3 chances.
Can anyone help me with it? I’ll credit you too!
I woul use point system maybe even 2 point systems
the one for couning the chances
@CHANCE =0
label minigame
if (CHANCE =3){
goto endminigame
}else {
@CHANCE +1
#here put the minigame
}
label endminigame
1 Like
Thank you so much for the help!