Coding help Please

Hi there, need some assistance with my code for this multiplication game. After using the show player choices tile the game just ends without the player being able to enter in the ‘correct’ or ‘incorrect’ option. Any tips on how to fix this? Its not a polished finish just yet but stuck on this part.https://arcade.makecode.com/S87416-62543-15484-79709

2 Likes

looking at ur code you gotta put the show player choices block and the if then else statement before the start countdown or that weird glitch would happen! hope that helped!

1 Like

Okay i fixed it. The problem was that the show player choices blocks was after the wait block.

Also, the countdown does the game over thing by default, so you need to add the empty on countdown end block.

2 Likes

I remade the whole thing to what I think you were going for here it is: https://arcade.makecode.com/S97836-20331-95537-17967

The only problem with this one is that you cannot add a timer to my knowledge

1 Like

you kinda don’t need the pause 3000 that stops the show player choices block from running for 3 seconds but then by that point they kinda lose

1 Like

welcome to the forums @HelpMe1!

The game over is being caused by the countdown, so you should remove that and try to find a different way. this is how you might do it: https://arcade.makecode.com/S12924-31799-37001-81322

1 Like