Hello again, MZ forum! You're bound to get a lot of questions from me as I embark on my RMMZ journey. Right now, I'm looking for a way, plugin or otherwise, to have only three members of the party, and have all the menus honor that change.
I'll try to explain better. My game will have six PCs, three of which can be in the active party at any time, while the others are in reserve. I'd like it to be set up that the menu doesn't have space for a fourth party member when opened.
Oh. Then you'll need to change how the items (the information blocks for the actors) are drawn in the status menu so that three of them fill the screen instead of four.
You can either get a tool for that (I believe SRD's Super Tools/HUD Maker will let you edit the status menu), or you can learn what parts of JavaScript have to do with that and edit it in your rmmz_windows or rmmz_scenes files.
I've moved this thread to JS Plugin Requests. Thank you.
I feel like VisuStella probably has all the relevant options, but I'm not super familiar with their plugins...
Alternatively, you could try this (save as .js file, import as plugin):
JavaScript:
/*:
* @target MZ
* @plugindesc 3 battle members instead of 4.
* @help Terms of use: free to use and/or modify for any project.
*/
// 3 battle members instead of 4
Game_Party.prototype.maxBattleMembers = function() {
return 3;
};
// 3 status blocks in the pause menu instead of 4
Window_MenuStatus.prototype.numVisibleRows = function() {
return 3;
};
// Reduce pause menu status window height by 25%
(alias => {
Scene_Menu.prototype.statusWindowRect = function() {
const rect = alias.apply(this, arguments);
rect.height = Math.ceil(rect.height * 0.75);
return rect;
};
})(Scene_Menu.prototype.statusWindowRect);
There are 3 parts here: if you don't want one of the parts, just delete (or comment out) that part.
I'm going to be adding in combat animations, revamping the UI and putting in a new cutscene this week, so this is your last chance to play the MC:RIS demo in its original form! Say you were there since the beginning! https://qos.itch.io/infinite-sadness
Well. *That* was an entertaining fustercluck — and that’s not meant nearly as sarcastically as it sounds. I just had to make four different versions of the same conversation:
1: Attained MacGuffin.
2: Have not attained MacGuffin, but know its location.
3: Do not know MacGuffin’s location, but have a good idea where to find it.
4: Do not know where to look for MacGuffin.
Yep, feels good to be back. ^.^
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.