Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

Menu Patch for Sleeping leon heart's Summon status menu and DVV Limit break menu

kerfvalerio":3gs1zvok said:
mine is legal I dont use fakes i paid 60 dollars for this from my cousin

Then that's strange... there shouldn't be any font problems. I pasted the script over on a new project and it worked...

Did you paste this script above or below main?

Also, try replacing this part:

Code:
class Window_Base < Window
  def draw_actor_face(actor, x, y)
    bitmap = RPG::Cache.character("Face/"+actor.character_name, actor.character_hue)
    cw = bitmap.width
    ch = bitmap.height
    src_rect = Rect.new(0, 0, cw, ch)
    self.contents.blt(x - cw / 2, y - ch, bitmap, src_rect)
  end

with:

Code:
class Window_Base < Window
  def draw_actor_face(actor, x, y)
    bitmap = RPG::Cache.character("Face/"+actor.character_name, actor.character_hue)
    cw = bitmap.width
    ch = bitmap.height
    src_rect = Rect.new(0, 0, cw, ch)
    self.contents.blt(x - cw / 2, y - ch, bitmap, src_rect)
    self.contents.font.name = "Arial"
    self.contents.font.size = 22
  end

Hope that helps.

EDIT: Hey, DerVV, nice to see that you lurk by once in while. ^_^
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top