• 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!
  • Serena, Kris, Dawn, Red - which Pokémon protagonist is your favorite? Let us know by voting in our grand final favorite protagonist 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 do I change scripted text colors?

Phoenixio

Pokémon Master
  • 6
    Posts
    8
    Years
    As of now I'm just using the text color command to change all the text to White, but when I use the scripts and whatnot the text shows up Black regardless. Here's an example of what I want to change to white:
     

    Attachments

    • [PokeCommunity.com] How do I change scripted text colors?
      B0rQLYXES-_ourtIJIPvRg.png
      3.3 KB · Views: 9
    Not sure if it'll work but try this.
    In the Script Editor, around the top, look for a script called "SpriteWindow".
    Here's what's written from line 9 to 12:
    Code:
      LIGHTTEXTBASE   = Color.new(248,248,248)
      LIGHTTEXTSHADOW = Color.new(72,80,88)
      DARKTEXTBASE    = Color.new(88,88,80)
      DARKTEXTSHADOW  = Color.new(168,184,184)

    Change both lines with DARKTEXT's colors (The numbers at the end which are in RGB format) to lighter colors. If not sure what I mean, you can just change these lines above to this:

    Code:
      LIGHTTEXTBASE   = Color.new(248,248,248)
      LIGHTTEXTSHADOW = Color.new(72,80,88)
      DARKTEXTBASE    = Color.new(248,248,248)
      DARKTEXTSHADOW  = Color.new(72,80,88)
     
    Last edited:
    Back
    Top