- Joined
- Jul 19, 2013
- Messages
- 423
- Reaction score
- 206
- First Language
- Finnish
- Primarily Uses
How to change color of the NEW value of the parameter in the Equip menu? The one that shows if the weapon/armor/etc that you are going to equip has positive or negative effect to the current value.
As you can see, if the new value is negative the color it uses is imho not clear enough and I want to change that.
I'm using Yanfly's Equip Engine https://yanflychannel.wordpress.com/rmvxa/gameplay-scripts/ace-equip-engine/
It has def draw_new_param but I just can't figure it out since I'm not a scripter.
As you can see, if the new value is negative the color it uses is imho not clear enough and I want to change that.
I'm using Yanfly's Equip Engine https://yanflychannel.wordpress.com/rmvxa/gameplay-scripts/ace-equip-engine/
It has def draw_new_param but I just can't figure it out since I'm not a scripter.
Code:
def draw_new_param(dx, dy, param_id) contents.font.size = YEA::EQUIP::STATUS_FONT_SIZE new_value = @temp_actor.param(param_id) change_color(param_change_color(new_value - @actor.param(param_id))) draw_text(0, dy, contents.width-4, line_height, new_value.group, 2) reset_font_settings end
Last edited by a moderator:
