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.

DBS Edit

Hello there.
I was wondering if someone could assist me in a small edit of the DBS.
What I would like to do is remove the bottom window in battle (The one that displays HP,MP, and the like but keep the stats there.

I hope I'm making some sense.

Thanks, and I hope to hear from someone soon.

---Mr. Ishbuu
 
try this, but it will show a black background in the window. to fix that you need to stretch the battleback and that will not look good.
Code:
class Window_BattleStatus < Window_Base
  alias ishbuu_win_battlestatus_init initialize
  def initialize
    ishbuu_win_battlestatus_init
    self.opacity = 0
  end
end
 
You know you should have stated that in your first post before someone did your request.

But well here is your code

Code:
class Window_BattleStatus < Window_Base
  alias ishbuu_win_battlestatus_init initialize
  def initialize
    ishbuu_win_battlestatus_init
    self.opacity = 0
    @back_sprite = Sprite.new
    @back_sprite.y = 320
    @back_sprite.bitmap = <Bitmap>
  end

  alias ishbuu_win_battlestatus_dispose dispose
  def dispose
    ishbuu_win_battlestatus_dispose
    @back_sprite.dispose
  end
end

and since you didn't tell where the image was I left that out replace <Bitmap> with RPG::Cache.(something)(filename), of course I'll give you the line if you provide more information.

but there is your code let me know if it gives you any trouble
 

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