My try counter says 0 when it starts why?

in your Reset method you have this *int* MyCurrentTry = 1; that means you’re creating a local (to the function) variable called MyCurrentTry, and aren’t setting the class’ variable MyCurrentTry to 1. Remove the int on that line and it should work.

1 Like