I'm trying to use this plugin to move the Item and PartyFormation's command to the party menu rather than the actor menu. Is that possible? Would it require a complicated js script or is it a simple as finding the code in the game core files and copy pasting it into the plugin script call?
Viewing post in [CGMZ] Battle Command Window for RPG Maker MZ comments
Hi, do you have some other plugin that adds a Formation command to battle for actors? Formation is available in the menu only, not in battle by default. If you have another plugin that adds it to battle, you could hook it up using this plugin to a command, you would just need to ask the other plugin author what js is needed to access the command.
For the item command, how would you expect it to work from the party command window? By default, using an item in battle makes an actor use that item when it is their turn. If called from the party command window, which actor would you want to use the item, and after selecting an item from the party command window, would you expect the player to end up back at the party command window, and would the actor have their command selection skipped if an item was selected?
I am not sure what the actions menu is, are you using some other battle plugins as well? You could try this instead, I guess it might be more compatible if another plugin customizes what the fight command does:
this.commandFight(); this.commandItem();
You cannot keep it on the party command menu because battle needs to know which actor is using the item as part of their turn, and there is no actor set on the party command window. If you want some mechanic where no actor uses the item for their turn, but it still gets used somehow, you would need some plugin for that as this plugin doesn't add its own mechanics it just allows you to run JS from the battle command windows.