This is for the programmers out there.
I'm trying to figure out how to write this loop.
Psuedocode :
If your Health is between 70% to 100%, you are strong.
If your Health is between 40% to 69%, you are weak.
If you Health is between 1% to 39%, you are dying.
What's the best way to write this?
More info : If say, your health's maximum value changes? Maybe at level 1, you have 100 health. But at level 2, you have 112 health. Right now I'm using hard numbers, but I'd prefer to be more like a programmer. :)