In my game, I've renamed the Ctr stat to Score. This stat keeps track of the points you've earned from achieving special objectives. At the end of the game, I want to display messages based on what your score is. I did something similar to this on my last game, but this time Score is a hero stat instead of a variable.
How do I make the hero stat Score into a variable I can use in an If statement (example below)?
Code:
if (score == 14)
then, begin
show text box (141)
end
if (score == 14)
then, begin
show text box (141)
end



