赞 | 35 |
VIP | 0 |
好人卡 | 0 |
积分 | 69 |
经验 | 0 |
最后登录 | 2025-5-11 |
在线时间 | 448 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 6919
- 在线时间
- 448 小时
- 注册时间
- 2021-12-4
- 帖子
- 484
|
Window_MenuCommand.prototype.makeCommandList = function() {
var enabled = true; // true表示启用,false表示禁用(灰色),可以使用$gameSwitches.value(n)读取n号开关
this.addCommand(TextManager.item, 'item', enabled); // 道具
this.addCommand(TextManager.skill, 'skill', enabled); // 技能
this.addCommand(TextManager.equip, 'equip', enabled); // 装备
this.addCommand(TextManager.status, 'status', enabled); // 状态
this.addFormationCommand(); // 整队
this.addOriginalCommands(); // 自定义
this.addOptionsCommand(); // 设置
this.addSaveCommand(); // 保存
this.addGameEndCommand(); // 返回标题
}; // 直接把这段代码保存为js文件放进插件目录里,不想要哪一种命令就自己注释掉那一行或者用if加条件 |
|