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.

[XP] Show HP with Standard-BS

Zelos

Member

Hey there, I need a script that shows the HP a monster has left for the standard-battlesystem.
Would be nice if it showed up behind the name when you target a monster.
 
Here ya go.  Paste this in a new script right above 'main'

Code:
#----------------------------
# Add Enemy HP to Help Window
#----------------------------

class Window_Help
  def set_enemy(enemy)
    text = enemy.name
    hp = enemy.hp
    state_text = make_battler_state_text(enemy, 112, false)
    if state_text != ""
      text += "    " + state_text
    end
    text += "    HP " + hp.to_s
    set_text(text, 1)
  end
end

Be Well
 

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