Forgive me if I'm doing this wrong (making the wrong thread in the wrong section for instance), but for some reason when I go to make an event and click "Show text", anything I type in the box has a weird and small font style to it, and when I go to actually play whatever I've made for testing, text doesn't appear at all. Not even in the title.
Here's a picture of what's going on.
http://i.imgur.com/kNFmjVY.png
Text Doesn't Appear Anywhere
● ARCHIVED · READ-ONLY
-
-
you either added a script that changes the default font, or the default font got somehow damaged.
-
To my knowledge I didn't add a script. How would I fix this if the default font got damaged? I tried uninstalling and redownloading it off Steam again, but it didn't fix the problem.you either added a script that changes the default font, or the default font got somehow damaged.
-
I don't have XP with me on my work computer. Go to the help file (F1), search for Font. Select it in the list, then scroll through to see if you can find where it lists the default fonts.
Make sure you have those fonts installed on your computer.
It could be Arial or Tahoma. -
Another thing you could try...
Press F11 to access the Script Editor. Scroll down to Main and add these two lines after the begin line, before the call to Graphics.transition...
Font.default_name = "Arial"Font.default_size = 22...I believe those are the actual *default* settings for RPG Maker XP's font. The size might be 22, maybe 24. If that isn't working, change the font name to another font (ensure it's installed on your computer) and see if that displays instead.
You can preview different fonts in any text editor that might be installed on your machine to see what alternatives may look best, but keep in mind that not everything will render properly in RPG Maker. Fonts that show up on your computer won't necessarily show up on another person's computer, so you might have to distribute your project with the .ttf file and have the user install it.
NOTE: If you set Font.default_name to an array of names, it should auto-pick the first one that displays. For instance ["Arial", "Tahoma", "Georgia"]. If Arial is not installed, it'll display Tahoma instead. If Tahoma is not installed, it'll display Georgia. If that's not installed, then no text is visible.
^As far as I remember, that method works, but you might want to test this theory yourself. With changes to the RGSS dll, it's possible this doesn't work anymore. -
Fixed the problem. Apparently the text on my computer broke or something. I had to download Microsoft's European Union font pack which included Arial. Fixed my issue.
-
This thread is being closed, due to being solved. If for some reason you would like this thread re-opened, please report this post and leave a message why. Thank you.