下面两个链接的帖子和你的提问大同小异,解决方法也几乎一致。 
请问怎么才能将mv标题画面中的设置去掉 
去掉菜单除物品以外类容 
 
与上面两个帖子同理,可以在 \js\rpg_windows.js 文件中找到下面这段代码: 
 
Window_ActorCommand.prototype.makeCommandList = function() {     if (this._actor) {         this.addAttackCommand();         this.addSkillCommands();         this.addGuardCommand();         this.addItemCommand();     } }; 
 
 Window_ActorCommand.prototype.makeCommandList = function() {  
    if (this._actor) {  
        this.addAttackCommand();  
        this.addSkillCommands();  
        this.addGuardCommand();  
        this.addItemCommand();  
    }  
};  
 
  
将 this.addItemCommand(); 这行注释掉,“道具”选项就被你抹消了。 
 
尚未测试,不保证成功。 |