I want to be able to know the class of the actor the player selects before opening the Status Menu (I have a class that does not use any of the status/equip/etc menus and I want to prevent the player from opening those menus when trying to select actors with said class)
Closest thing I've seen that may help is in rpg_windows.js
Code:
Window_MenuStatus.prototype.processOk = function() {
Window_Selectable.prototype.processOk.call(this);
$gameParty.setMenuActor($gameParty.members()[this.index()]);
};I'm at a loss as to where to edit any plugin/script to achieve what I want to do. Does anyone have any idea?