I scanned about five times and could NOT find this anywhere in the base scripts, so could somebody please point me in the right direction? How do you change the color of the actors' gauges?
Group: Local Mod
Posts: 1,164
Type: Event Designer
RM Skill: Masterful
Rev Points: 30
You can change them manually.
Old Post
QUOTE (kayden997 @ Feb 8 2011, 08:44 PM)
Green box = Health Dark Blue = Mana
Change these two colors to change the health and mana bar colors
==EDIT== Both in the box as they are both used
Or I'll just tell you want you wanted.
It's found in Window_Base at Lines 113-136
CODE
#-------------------------------------------------------------------------- # * Get HP Gauge Color 1 #-------------------------------------------------------------------------- def hp_gauge_color1 return text_color(20) end #-------------------------------------------------------------------------- # * Get HP Gauge Color 2 #-------------------------------------------------------------------------- def hp_gauge_color2 return text_color(21) end #-------------------------------------------------------------------------- # * Get MP Gauge Color 1 #-------------------------------------------------------------------------- def mp_gauge_color1 return text_color(22) end #-------------------------------------------------------------------------- # * Get MP Gauge Color 2 #-------------------------------------------------------------------------- def mp_gauge_color2 return text_color(23) end
This post has been edited by kayden997: Sep 11 2011, 01:39 PM