Hide values in the HP/MP gauge in the Menu Screen?

LucaP

Villager
Member
Joined
Apr 4, 2018
Messages
5
Reaction score
0
First Language
German
Primarily Uses
RMMV
Is there a plugin that allows me to only show the HP/MP Gauge, but not the values of current/max hp?

thanks for any help.
 

robhav

Veteran
Veteran
Joined
Jan 31, 2018
Messages
49
Reaction score
16
First Language
English
Primarily Uses
RMMV
In rpg_windows.js script there is a Window_Base function called drawActorHp. Around line 550. Comment out the last line which is this: this.drawCurrentAndMax(actor.hp, actor.mhp, x, y, width,
this.hpColor(actor), this.normalColor());

It should just be one line but for some reason it shows as two lines in my editor (Notepad++). To comment out a line just put // in front of it. Or you can just delete all of it.

If you don't want to mess with the core scripts, you can just put this into a new script of your own.

Window_Base.prototype.drawActorHp = function(actor, x, y, width) {
width = width || 186;
var color1 = this.hpGaugeColor1();
var color2 = this.hpGaugeColor2();
this.drawGauge(x, y, width, actor.hpRate(), color1, color2);
this.changeTextColor(this.systemColor());
this.drawText(TextManager.hpA, x, y, 44);
};
 

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Latest Threads

Latest Posts

Latest Profile Posts

Couple hours of work. Might use in my game as a secret find or something. Not sure. Fancy though no? :D
Holy stink, where have I been? Well, I started my temporary job this week. So less time to spend on game design... :(
Cartoonier cloud cover that better fits the art style, as well as (slightly) improved blending/fading... fading clouds when there are larger patterns is still somewhat abrupt for some reason.
Do you Find Tilesetting or Looking for Tilesets/Plugins more fun? Personally I like making my tileset for my Game (Cretaceous Park TM) xD
How many parameters is 'too many'??

Forum statistics

Threads
105,865
Messages
1,017,059
Members
137,575
Latest member
akekaphol101
Top