Custom score font
![sheepo](http://forums.gamesalad.com/applications/dashboard/design/images/defaulticon.png)
Hello! So, I am trying to make score for my game. I have it set up but the default fonts won't fit my game's 8-bit graphic style. I looked around and found t-shirt booth's scorekeeping tutorial which tells you how to load the numbers as images and all that but it won't work! People say that you don't need to put the png at the end (If you haven't seen the video u won't get it, heres a link: http://bit.ly/xqEfmo ) but it still isn't working! Do any of you know of a different way to do this? Part of me thinks I'm doing the equation wrong so if there was a template with this used that would help too. Thanks!
Comments
Also, make sure your images for your numbers are named "1" (just the number) and not named "Num1" or something like that.
floor(( game.YOUR_SCORE % self.div )/( self.div /10))..".png"
If your formula is ok, check the name of your images. They need be like:
0.png
1.png
2.png
3.png
etc....
Remember the self attribute called DIV that you need create. In the first number it need be 10, the second 100, the third 1000, etc....
Tell me if works.