Chaos Project

RPG Maker => RPG Maker Scripts => Script Requests => Topic started by: G_G on March 23, 2009, 02:33:55 pm

Title: Blizz ABS Hud(resolved)
Post by: G_G on March 23, 2009, 02:33:55 pm
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
Title: Re: Blizz ABS Hud
Post by: fugibo on March 23, 2009, 08:30:24 pm
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.
Title: Re: Blizz ABS Hud
Post by: G_G on March 24, 2009, 05:58:58 pm
Resolved found a way around it!