By the way, if you want to preserve lower case letters and also still have spell runes, you can do that in current versions of DSB, as long as your font includes the spell runes starting at ASCII value 129.
There's a thread about that here: viewtopic.php?p=159468#p159468
Couple of quick questions
Moderator: Sophia
Forum rules
Please read the Forum rules and policies before posting. You may
to help finance the hosting costs of this forum.
Please read the Forum rules and policies before posting. You may

Re: Couple of quick questions
Thanks very much for the pointers!
I did a little bit of figuring out for myself, but got there!
For anyone else trying to do this, you need to override (in your own custom lua files) these bits:
global.lua
magic.lua
Mine look like:
Now I got:




And my daleland font looks like:

Note to others: Watch out for F'ing paint softs. The default palette fontED puts out had 3!!!! yellows of the same value, so even though I chose 255 to paint, when saving in gimp, if converted them to the other yellow(s). Then it went wrong again and I found the second yellow. Finally after changing the 2nd yellow to blue, the 3rd and final yellow at index 255 stuck as the real yellow when saved.
The 2 colours pointed to in blue were the same colour yellow as the last one

Cheers!
Nick K.
I did a little bit of figuring out for myself, but got there!
For anyone else trying to do this, you need to override (in your own custom lua files) these bits:
global.lua
Code: Select all
powchar = { "a", "b", "c", "d", "e", "f" }
Code: Select all
magic_runes = {
"a", "b", "c", "d", "e", "f",
"g", "h", "i", "j", "k", "l",
"m", "n", "o", "p", "q", "r",
"s", "t", "u", "v", "w", "x"
},
Code: Select all
powchar = {"\129", "\130", "\131", "\132", "\133", "\134"}
Code: Select all
magic_runes = {
"\129", "\130", "\131", "\132", "\133", "\134",
"\135", "\136", "\137", "\138", "\139", "\140",
"\141", "\142", "\143", "\144", "\145", "\146",
"\147", "\148", "\149", "\150", "\151", "\152"
},




And my daleland font looks like:

Note to others: Watch out for F'ing paint softs. The default palette fontED puts out had 3!!!! yellows of the same value, so even though I chose 255 to paint, when saving in gimp, if converted them to the other yellow(s). Then it went wrong again and I found the second yellow. Finally after changing the 2nd yellow to blue, the 3rd and final yellow at index 255 stuck as the real yellow when saved.
The 2 colours pointed to in blue were the same colour yellow as the last one

Cheers!
Nick K.
Re: Couple of quick questions
Thank you Gambit,
Your insights were like beloved signposts in the forest of contrarian lua bollocks.
Your insights were like beloved signposts in the forest of contrarian lua bollocks.
