Hello everyone i have a problem to create a spanish Image based font, im just trying to add the ñÑáéíóúÁÉÍÓÚ characters in the code i already created edited a font to add this characters in the png file but that isnt work, all what i get is a space in white. What can i do to solve that, this is the code i used, its based on the tutorial i found in the wiki:
Thanks! i solve that problem, but now i have another. The problem is that the printed text shows disordered, i put the hex value for the Ñ \91 and in screen shows the Ñ, but when i try to print the ñ \b1 it shows in screen "ñ1" and also tried whit the other characters and all of them show in disorder. What's going on?
This is because that is not the syntax for specifying it in hexadecimal, it is indeed the syntax to specify it in decimal, so your \b1 is invalid, and actually consists of \b (bell) and 1. I should also note that as far as I remember lua 5.1 doesn't have a way to specify this in hexadecimal.