Just as a test of the features, I'd like to try and get the character to display the score. There are only two possible scores. 0 or 800. The only way I can find of displaying the score is @SCORE@ and @TOTALSCORE@, but I can't use these in a display message.
i believe you can, but im away from my manual at the moment. I think it has to do with
Display("the score is %i., "variable"); or something... im not exactly sure at the moment.
As an example of how to display the current score and the possible total score, you could use in a script:
Display("Score: %d out of %d", game.score, game.total_score);
Thanks. I knew about the %d thing, but I didn't realize you could use it twice in the same message for two different things. ;D