- Joined
- Mar 2, 2020
- Messages
- 28
- Reaction score
- 16
- First Language
- Italian
- Primarily Uses
- RMMV
Hello,
I need a little assistance from someone who is proficient in javascript or just smarter than me.
I have a 4 members party plus some "hidden members" that are summoned in battle trough skills. The hidden members are not showed in menu by this very simple plugin:
Window_MenuStatus.prototype.maxItems = function() {
return $gameParty.maxBattleMembers();
};
Hiwever I would like to show in some way their status windows (even skill windows maybe, but let's make the first step). I was thinking about making a common event that allows the access to their status using script like
SceneManager.push(Scene_Status);
But addressing directly the actor's status page, or allowing to select even the hidden actors. Someone knows how this could be done?
Thanks
I need a little assistance from someone who is proficient in javascript or just smarter than me.
I have a 4 members party plus some "hidden members" that are summoned in battle trough skills. The hidden members are not showed in menu by this very simple plugin:
Window_MenuStatus.prototype.maxItems = function() {
return $gameParty.maxBattleMembers();
};
Hiwever I would like to show in some way their status windows (even skill windows maybe, but let's make the first step). I was thinking about making a common event that allows the access to their status using script like
SceneManager.push(Scene_Status);
But addressing directly the actor's status page, or allowing to select even the hidden actors. Someone knows how this could be done?
Thanks