New account registration is temporarily disabled.

[RMVX ACE] EQUIP MENU PROBLEM (SOLVED)

Posts

Pages: 1
I switched out the default font used by RPG Maker VX Ace games for a customized font and so far, it's working perfectly normal, except for the fact that on the equipment menu, the little icon that shows you the difference between your current stats and how the item your hovering over affects them isn't displaying correctly, showing up as a single square.

I had this same issue with the square appearing at all line breaks before, and that issue was easily fixed by altering one of the scripts. Does anyone know which script it is I'm supposed to tinker with to switch out that square with something else?

Looking at my font shows that character "U+003E" is a "Greater-Than" sign, which would work perfectly here, so how would I put that into the script to make it appear properly?

Marrend
Guardian of the Description Thread
21806
The thought in my head is that you should be able to do something like...

class Window_EquipStatus < Window_Base
  def draw_right_arrow(x, y)
    change_color(system_color)
    #draw_text(x, y, 22, line_height, "→", 1)
    draw_text(x, y, 22, line_height, ">", 1)
  end
end

...this in a separate code-section (I always recommend this over editing the default scripts directly) to replace the left arrow character into the greater than character. You don't have to copy-paste the line and comment out the original like I did. You should be able to just up and replace the character. I just do that out practice in case something screwy pops up.

*Edit: Fixed your image link while I was at it.
Pages: 1