赞 | 204 |
VIP | 13 |
好人卡 | 7 |
积分 | 122 |
经验 | 52899 |
最后登录 | 2021-6-29 |
在线时间 | 4435 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 12157
- 在线时间
- 4435 小时
- 注册时间
- 2014-4-11
- 帖子
- 5955
|
找到Window_EquipCommand
然后
Window_EquipCommand.prototype.maxCols = function() {
return 3;
};
这里是设置一行有多少个选项。
然后
Window_EquipCommand.prototype.makeCommandList = function() {
this.addCommand(TextManager.equip2, 'equip');
this.addCommand(TextManager.optimize, 'optimize');
this.addCommand(TextManager.clear, 'clear');
};
这里是设置有哪些选项。
把不要的删去。 |
评分
-
查看全部评分
|