Display Custom Font for High Score
I have a custom font by use of Actors and images. I'm using that change the image according to the points gained method. I have two problems with that though. One it loops back around to zero when it reaches its max. And the big and most important thing is how to use that custom font to display my high score record when the game ends? Any help? Thank you.
Comments
check out these tutorial videos on custom scoring. The third one deals with custom fonts, but they all have good information that might help you:
Part 1:
Part 2:
Part 3:
Part 4:
Be sure to watch all the videos over there, there is a ton of good information.
Send and Receive Data using your own Server Tutorial! | Vote for A Long Way Home on Steam Greenlight! | Ten Years Left
Also when my score reaches 9 all the way across (probably not going to be done all too often but just to be fail safe) it rolls back all the numbers to zero.
Sorry for the misunderstanding.
___________________________________________________________________________________
GS BubbleBall Template HERE!!
Stacks Level Selection Template HERE!!
Expanding Option Menu Template HERE!!
Tenrdrmer's Menu # 3 HERE!!
AppSolute Entertainment on Facebook
AppSolute Entertainment on iTunes
Also, GsLover, that link, if you were to click enough times to max out that number it'll loop itself. Although I'm really not worried about that because I almost want to be sure that not many will make it to the max. But you never know with gamers these days.
http://gamesalad.com/game/18730
***************************************
Also, check out my games.
-Hover Ball HD
-Hover Ball SD
-Hockey Plinko
If game.score < 10
.....Change Attribute: self.alpha To 0
otherwise
.....Change Attribute: self.alpha To 1
---
If game.score < 100
.....Change Attribute: self.alpha To 0
otherwise
.....Change Attribute: self.alpha To 1
---
If game.score < 1000
.....Change Attribute: self.alpha To 0
otherwise
.....Change Attribute: self.alpha To 1
etc....
thanks!