[Ask]Changing Font color to black?

Started by fizz, January 16, 2010, 06:56:34 am

Previous topic - Next topic

fizz

hello, does anybody know how to change all the font color in the game (like, in the titlescreen and the menu) to black instead of "default white" ? all, the script ive found so far only modifies the font color in text message and using hex color code for the black color.. looks like there is no default color id for black in RMXP  :???:... thx

fugibo

Tons of Add-Ons -> Ultimate Font Override should do this.

nathmatt

lol use this

class Window_Base < Window
 
  #--------------------------------------------------------------------------
  # * Get Normal Text Color
  #--------------------------------------------------------------------------
  def normal_color
    return Color.new(0, 0, 0, 255)
  end
  #--------------------------------------------------------------------------
  # * Get Disabled Text Color
  #--------------------------------------------------------------------------
  def disabled_color
    return Color.new(0, 0, 0, 128)
  end
  #--------------------------------------------------------------------------
  # * Get System Text Color
  #--------------------------------------------------------------------------
  def system_color
    return Color.new(0, 0, 0, 255)
  end
end
Join Dead Frontier
Sorry, I will no longer be scripting for RMXP. I may or may not give support for my scripts. I don't have the will to script in RGSS anymore.
My script