Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

Taking away the character HP and MP bars in the menu

Arbeza

Villager
Xy$
0.00
I'm copying this over from the other thread with a bad title.
I've looked for this and nothing that is exactly what I was thinking of what put up.

I'm making something that it solely about choices and talking and I wanted to take away the character HP and MP bars in the menu because they will never be used at all because there are no battles. Is there a way to do this or a plugin that would help?
 

LTN Games

Master Mind
Resource Team
Xy$
0.01
You can just put this snippet in a new .js file and throw it in the plugins folder and activate.
JavaScript:
Window_Base.prototype.drawActorHp = function(actor, x, y, width) {
};

Window_Base.prototype.drawActorMp = function(actor, x, y, width) {
};
That will do it, it should only cause issues if you have plugins which also use these methods but considering your not using any gauges you probably won't have any issues.
 
Top