• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • Cyndy, May, Hero (Conquest), or Wes - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

How To Change Internal Game Font ?

  • 39
    Posts
    10
    Years
    • Seen Mar 21, 2016
    Anybody knows how to change the internal game font ? The one that comes with the game I want to change to arial... I need help with that :/
     
    Last edited:
    Did you say you want to change the default font to arial?
     
    In SpriteWindow change the 'FontName = "Power Green"' to 'FontName = "Arial"'. Remove from PokemonOptions:

    Code:
           EnumOption.new(_INTL("Font Style"),[_INTL("Em"),_INTL("R/S"),_INTL("FRLG"),_INTL("DP")],
              proc { $PokemonSystem.font },
              proc {|value|  
                 $PokemonSystem.font=value
                 MessageConfig.pbSetSystemFontName($VersionStyles[value])
              }
           ),
     
    Back
    Top