Junk symbols in my equip!

● ARCHIVED · READ-ONLY
Started by Tuomo L 4 posts View original ↗
  1. For some reason, I have these junk symbols in my game and I am unable to get rid of them. It looks really weird.

    junk.jpg

    Steps I've already tried but have not worked:

    1) I already use Lonewolf's Font Junk patch

    2) I already have set Japanese language to false in Game system (for some reason there was no such entry, even though I did purchase the english copy already ages ago?)
  2. Those probably should be arrows but they appear as boxes instead.

    Try this one?

    Code:
    # Add function for temporarily switching a window's current drawing font.class Font  def use( window )        old_font = window.contents.font.dup        window.contents.font = self        yield        window.contents.font = old_font    endend # Fixes the arrow character (→) used in places in the UI# since custom font does not support that charactermodule Mez  module ArrowFix        FONT = Font.new(["VL Gothic"])  # This is the font used for the arrows, checked in order.  endend # For Actor Equip Windowclass Window_EquipStatus  alias mez_wes_dra draw_right_arrow  def draw_right_arrow(x, y)        Mez::ArrowFix::FONT.use(self) do          mez_wes_dra(x, y)        end  endend
  3. That fixed it, thank you Archeia! 
  4. This thread is being closed, due to being solved. If for some reason you would like this thread re-opened, please report this post and leave a message why. Thank you.