First I need this hud for Space Invaders part of my game. I want all bars removed completly but I need the HP bar replaced with the word
Lives:
and after lives I want the characters Current hp if someone can do that please. No bars at all and HP bar replaced with
Lives: Current HP
If its possible also make it where only work if
$game_switches[6] is on
It is possible to have hearts beside lives, if you want.
ie
$game_actors[<whatever_the_id_is>].hp.times do |i|
self.bitmap.blt Rect.new(0, 0, 28, 28), RPG::Cache.icon(<icon_name>), Rect.new(i * 28, <y>, 28, 28))
end
...or something like that.