Help - Search - Members - Calendar
Full Version: Need Help With Default Font Color [Resolved]
RPG RPG Revolution Forums > Scripting > Script Development and Support
Phantom0x0
I've been looking up and down the scripts and I can't seem to find a place to alter the default font colors for the title screen could someone please post a screenshot or something or just tell me which line to alter?
Night_Runner
in Scene_Title, there should be a section
CODE
  def main
    ....
    ....
  end

Change it to read:
CODE
  def main
    Font.default_color = Color.new(1, 2, 3)
    ....
    ....
    Font.default_color = normal_color
  end

where 1, 2, 3 are the amount of red, green and blue respectively, measured as a number between 0 - 255


Sorry I can't provide a screenshot at the moment, I'm not on my home computer, let me know if it's necessary and I'll post one soon smile.gif
Phantom0x0
QUOTE (Night_Runner @ Jun 26 2011, 05:40 AM) *
in Scene_Title, there should be a section
CODE
  def main
    ....
    ....
  end

Change it to read:
CODE
  def main
    Font.default_color = Color.new(1, 2, 3)
    ....
    ....
    Font.default_color = normal_color
  end

where 1, 2, 3 are the amount of red, green and blue respectively, measured as a number between 0 - 255


Sorry I can't provide a screenshot at the moment, I'm not on my home computer, let me know if it's necessary and I'll post one soon smile.gif


no thats okay I've learned a little bit more about scripts to where I can find it without screenshot shoulda just asked for the line number anyway. thanks
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2013 Invision Power Services, Inc.