It was this
#-------------------------------------------------------------------------- # * Draw Parameters #-------------------------------------------------------------------------- def draw_stat_content(x, y) [2, 3, 4, 6, 7].each_with_index {|p, i| draw_actor_param(@actor, x, y + line_height * i, p) } end #Stat Content
but with the other window it has nothing to do with numbers and has current parameter script and post parameter
#-------------------------------------------------------------------------- # * Draw Parameter Name #-------------------------------------------------------------------------- def draw_param_name(x, y, param_id) change_color(system_color) draw_text(x, y, 80, line_height, Vocab:

aram(param_id)) end #-------------------------------------------------------------------------- # * Draw Current Parameter #-------------------------------------------------------------------------- def draw_current_param(x, y, param_id) change_color(normal_color) draw_text(x, y, 32, line_height, @actor.param(param_id), 2) end #-------------------------------------------------------------------------- # * Draw Right Arrow #-------------------------------------------------------------------------- def draw_right_arrow(x, y) change_color(system_color) draw_text(x, y, 22, line_height, "->", 1) end #-------------------------------------------------------------------------- # * Draw Post-Equipment Change Parameter #-------------------------------------------------------------------------- def draw_new_param(x, y, param_id) new_value = @temp_actor.param(param_id) change_color(param_change_color(new_value - @actor.param(param_id))) draw_text(x, y, 32, line_height, new_value, 2) endend
Like this. I honestly have no scripting knowledge really and have no idea how to use the one I had in the status for the equipment window.