RPG Maker MV

RPG Maker MV

RPG Maker MV > Javascript > Topic Details
CheckOfTheSerg 27 Dec, 2018 @ 2:56pm
How to remove HP and MP meters in the menu
I'm making a game where no combat is involved and opening the menu screen shows their health and mana meters. Does anyone know how to remove them and for their names to just be in the menu list?
Originally posted by Caethyril:
Try saving this as a .js file, then import it like a plugin:
Window_Base.prototype.drawActorHp = function(actor, x, y, width) {}; Window_Base.prototype.drawActorMp = function(actor, x, y, width) {};
< >
Showing 1-2 of 2 comments
The author of this thread has indicated that this post answers the original topic.
Caethyril 27 Dec, 2018 @ 11:30pm 
Try saving this as a .js file, then import it like a plugin:
Window_Base.prototype.drawActorHp = function(actor, x, y, width) {}; Window_Base.prototype.drawActorMp = function(actor, x, y, width) {};
CheckOfTheSerg 28 Dec, 2018 @ 2:43pm 
Originally posted by Caethyril:
Try saving this as a .js file, then import it like a plugin:
Window_Base.prototype.drawActorHp = function(actor, x, y, width) {}; Window_Base.prototype.drawActorMp = function(actor, x, y, width) {};

Thank you very much
< >
Showing 1-2 of 2 comments
Per page: 15 30 50

RPG Maker MV > Javascript > Topic Details