Re: [Tutor] True to False and Other things!

2013-06-27 Thread Dave Angel
On 06/27/2013 09:27 AM, Jack Little wrote: In my game, I am trying to make it so when the enemy's health equals 0, the player advances. I used a while statement and a true or false variable. When the enemy health is less than or equal to 0, the program exits the while statement. It does not wo

[Tutor] True to False and Other things!

2013-06-27 Thread Jack Little
In my game, I am trying to make it so when the enemy's health equals 0, the player advances. I used a while statement and a true or false variable. When the enemy health is less than or equal to 0, the program exits the while statement. It does not work. It keeps going. How could I fix this? ___