The RPG Maker Resource Kit

RMRK RPG Maker Creation => RPG Maker General => General Tutorials and Eventing => Topic started by: SpriteKing on January 30, 2009, 04:51:19 AM

Title: How do I change the font of my dialouge?
Post by: SpriteKing on January 30, 2009, 04:51:19 AM
I can bet this has been asked like a googollian times, (made up word)
but I can't seem to find anything on this.
It's a simple question. I need an answer fast. XD
Title: Re: How do I change the font of my dialouge?
Post by: MrMoo on January 30, 2009, 05:12:49 AM
#==============================================================================
# Script that changes the default font settings.
#==============================================================================

Font.default_size = 20            # Default - 20
Font.default_name = ["Font name here"]   # Font names are used in order. If the first is not available, the second will be used, etc..
Font.default_bold = false       # Default - FALSE
Font.default_italic = false        # Default - FALSE
Font.default_shadow = true         # Default - TRUE


Paste that above main in a new script. That's it.