• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • 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
9
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:

    Gexeys

    Location: Ilex Forest shrine
    70
    Posts
    10
    Years
    • Seen Aug 16, 2015
    Did you say you want to change the default font to arial?
     

    FL

    Pokémon Island Creator
    2,453
    Posts
    13
    Years
    • Seen May 10, 2024
    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