• 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.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Which Pokémon Masters protagonist do you like most? Let us know by casting a vote in our Masters favorite protagonist poll here!
  • Red, Hilda, Paxton, or Kellyn - 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 do I change scripted text colors?

Phoenixio

Pokémon Master
  • 6
    Posts
    7
    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