Can you make your plugin compatible with Maliki's Experience Control MZ?
I can't get into the menus when I use both.
And I really need to set my own xp table for balancing.
You can make one yourself instead of fixing it also.
Here's the link... https://pastebin.com/vDDtZv2f
Viewing post in [RPG Maker] WYSIWYG UI Editor - Main Menu comments
I'm so sorry, I linked the wrong plugin.
https://raw.githubusercontent.com/triacontane/RPGMakerMV/refs/heads/mz_master/Me...
It's with this one that it conflicts because of the menu scene skipping trick.
My plugin cannot control your linked one, but you can try this:
In your linked plugin, replace
const _Scene_Menu_start = Scene_Menu.prototype.start;
Scene_Menu.prototype.start = function() {
_Scene_Menu_start.apply(this, arguments);
if (Window_MenuCommand._lastCommandSymbol &&
Window_MenuCommand._lastCommandSymbol === Window_MenuCommand._lastPersonalCommandSymbol) {
this._commandWindow.deactivate();
this.commandPersonal();
}
}
with
const _Scene_Menu_start = Scene_Menu.prototype.start;
Scene_Menu.prototype.start = function() {
_Scene_Menu_start.apply(this, arguments);
if (Window_MenuCommand._lastCommandSymbol &&
Window_MenuCommand._lastCommandSymbol === Window_MenuCommand._lastPersonalCommandSymbol &&
$gameParty.members().length > 1
) {
this._commandWindow.deactivate();
this.commandPersonal();
}
}