CHANGING SOMETHING ON THE VX ACE MENU SCREEN...
Posts
Pages:
1
So, I love this one font that I use because it reminds me of older RPGs while still looking slightly modern. The thing is, the font I am using doesn't have the proper arrow character on the equip screen that shows up along the stats columns which denotes stat changes. See here if I suck at wording it:

Is there any easy way to change which character in the font the game uses for the circled bit? Ideally, I'd just like to use the > arrow character (shift + period) since that shows up just fine. Even changing it to an icon would be handy, since I could easily sprite an arrow to go with the font. Is there anything in the script database that I can go in and change quickly to do so, or does this require an actual script?

Is there any easy way to change which character in the font the game uses for the circled bit? Ideally, I'd just like to use the > arrow character (shift + period) since that shows up just fine. Even changing it to an icon would be handy, since I could easily sprite an arrow to go with the font. Is there anything in the script database that I can go in and change quickly to do so, or does this require an actual script?
I think the character you're looking for is "→". In default VXAce it is under Window_EquipStatus line 87.
Alternatively try changing the window/bitmap's font to something that does support it when you draw the arrow character and back again right after. I think
Should do the trick.
Alternatively try changing the window/bitmap's font to something that does support it when you draw the arrow character and back again right after. I think
original_font = contents.font.name contents.font.name = "VL Gothic" # Draw arrow here contents.font.name = original_font
Should do the trick.
Pages:
1














