Maybe i am just missing the obvious (whether its from plugins or built into RPGMV, but how do you edit the battle menu (IE remove guard/attack).
Editing Battle Menu
● ARCHIVED · READ-ONLY
-
-
I've moved this thread to Javascript/Plugin Support. Please be sure to post your threads in the correct forum next time. Thank you.
You would have to modify the code to remove those two, as they're default commands.
MAYBE one of Yanfly's battle plugins will allow you to do it? -
I know double posting is frowned upon, but I got my answer and wanted to let everyone know. If you want to remove commands from the battle menu (IE Guard, Attack, w/e), go into the js folder, edit the RPG_Windows and look for
Window_ActorCommand.prototype.makeCommandList = function() {
if (this._actor) {
this.addAttackCommand();
this.addSkillCommands();
this.addGuardCommand();
this.addItemCommand();
(its way towards the bottom) and comment out what you want! Feel free to close and thanks for your help!