I'm trying to make it so it says
$PAGETEXT := "He hits you for" + %DAMAGE + "damage!"
But there isn't a space between (for, the number of damage, and damage)
HOW DO I MAKE A SPACE HAPPEN KILLAROBOT?!!!
It shows up like this! "He hits you for0damage"
Never mind, I got it.
Just put this.
$PAGETEXT := "He hits you for" + " " + %DAMAGE + " " + "damage
Thanks Killa.