[SOLVED]Need a plugin that hides some elements from the Actor Status Menu.

cedr777

Veteran
Veteran
Joined
Feb 22, 2018
Messages
265
Reaction score
60
First Language
Not English
Primarily Uses
RMMV
Hi, would anyone be nice enough to help me with the above title? It would help me get closer to the next ver. release of our game.
What I want to do is to remove the Lvl., HP, MP, TP bars from the actor status menu and replace it with the Nickname field.

I've already done it with the general Actor status menu(the one where all actors are summarized.) using SRDude's SRD_MenuStatusCustomizer.js plugin. However this can only edit that main window. It cannot edit the individual actor windows, which I need.

Here are screenshots that might be of help to what I want to achieve.
 

Magnus0808

Software Developer
Veteran
Joined
Feb 2, 2019
Messages
147
Reaction score
166
First Language
Danish
Primarily Uses
RMMV
It seems like you're using other plugins than just SRD_MenuStatusCustomizer.js to change the menues. In order to do your request it would be necesarry to know which plugins you use that might make a compatability issue.
You say you want to remove the level and gauges from the "individual actor windows" you need to specify exactly which windows it is. Is it the skill window and status window? Seems like in your screenshot it is an edited status window.
 

cedr777

Veteran
Veteran
Joined
Feb 22, 2018
Messages
265
Reaction score
60
First Language
Not English
Primarily Uses
RMMV
It seems like you're using other plugins than just SRD_MenuStatusCustomizer.js to change the menues. In order to do your request it would be necesarry to know which plugins you use that might make a compatability issue.
You say you want to remove the level and gauges from the "individual actor windows" you need to specify exactly which windows it is. Is it the skill window and status window? Seems like in your screenshot it is an edited status window.
Hi, The other plugins I can think of that I'm using with regards to menu is:
SRD_MenuStatusCustomizer.js
YEP_StatusMenuCore.js
SRD_SuperToolsEngine (I use this to bugtest and to change window positions)
YEP_MainMenuManager.js (Just used this to remove the SKILL and EQUIP menu since I don't need them for my game.)

I want to remove the level and gauges from the all STATUS window but I need actors NICKNAME to be in their place (below actor names.)
The status window screenshot is not edited, just pointing out the areas that I want removed.

EDIT: I want that part with two red circles to be like this:
EDIT: where the text below the actor name is text that was entered int the ACTOR NICKNAME field.

It's already being done like that at the main status window buy SRDUde's SRD_MenuStatusCustomizer.js plugin, but It can't change the one inside the individual status window...

let me just repeat that there is no SKILL and EQUIP menu for this game, because I hid and disabled them via YEP_MainMEnuManager.
 
Last edited:

Magnus0808

Software Developer
Veteran
Joined
Feb 2, 2019
Messages
147
Reaction score
166
First Language
Danish
Primarily Uses
RMMV
Hey, try this. It should change all simple statuses to just include the icon, name, and nickname.

Edit: Btw you probably do not need SRD_MenuStatusCustomizer with this.

Code:
//=============================================================================
// SimpleStatus_Nickname.js
//=============================================================================

/*:
 * @plugindesc This plugin changes the simple status of an actor to only
 * include the actors icon, name, and nickname.
 * @author Magnus0808
 *
 * @help Plug and play
 */
(function() {
   
    Window_Base.prototype.drawActorSimpleStatus = function(actor, x, y, width) {
        var lineHeight = this.lineHeight();
        var x2 = x + 180;
        var width2 = Math.min(200, width - 180 - this.textPadding());
        this.drawActorName(actor, x, y);
        this.drawText(actor._nickname, x, y + lineHeight * 1, width);
        this.drawActorIcons(actor, x, y + lineHeight * 2);
    };
       
})();
 

Attachments

cedr777

Veteran
Veteran
Joined
Feb 22, 2018
Messages
265
Reaction score
60
First Language
Not English
Primarily Uses
RMMV
Hey, try this. It should change all simple statuses to just include the icon, name, and nickname.

Edit: Btw you probably do not need SRD_MenuStatusCustomizer with this.

Code:
//=============================================================================
// SimpleStatus_Nickname.js
//=============================================================================

/*:
 * @plugindesc This plugin changes the simple status of an actor to only
 * include the actors icon, name, and nickname.
 * @author Magnus0808
 *
 * @help Plug and play
 */
(function() {
 
    Window_Base.prototype.drawActorSimpleStatus = function(actor, x, y, width) {
        var lineHeight = this.lineHeight();
        var x2 = x + 180;
        var width2 = Math.min(200, width - 180 - this.textPadding());
        this.drawActorName(actor, x, y);
        this.drawText(actor._nickname, x, y + lineHeight * 1, width);
        this.drawActorIcons(actor, x, y + lineHeight * 2);
    };
  
})();

Oh man you nailed it! Good Job, Thank you very much.:D
Here is a screenshot of it in action:

EDIT: Reporting thread as SOLVED. Thank you very much Magnus0808!

edit: you're right I don't need SRD_MenuStatusCustomizer with this, since it works also for that consolidated actor window. I decided to turn off that plugin. Thanks again!:thumbsup-left:
 
Last edited:

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

Latest Threads

Latest Profile Posts

Don't forget, aspiring writers: Personality isn't what your characters do, it is WHY they do it.
Hello! I would like to know if there are any pluggings or any way to customize how battles look?
I was thinking that when you start the battle for it to appear the eyes of your characters and opponents sorta like Ace Attorney.
Sadly I don't know how that would be possible so I would be needing help! If you can help me in any way I would really apreciate it!
The biggest debate we need to complete on which is better, Waffles or Pancakes?
rux
How is it going? :D
Day 9 of giveaways! 8 prizes today :D

Forum statistics

Threads
106,051
Messages
1,018,551
Members
137,837
Latest member
Dabi
Top