The text I'm talking about is the "ship health" text in the "The1000thProcedure" procedure. For some reason, it won't print the text, but will print the "Score: [get score]" text.
Image:
Have a look at your if statements, none of them will ever be true. For example:
if HP is greater than 121 AND HP is less than 90
If you are intending that HP is between 90 and 121 then
if HP is greater than 90 AND HP is less than 121 if HP > 90 AND HP < 121
if HP is greater than 90 AND HP is less than 121
if HP > 90 AND HP < 121
Thank you!