赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 0 |
最后登录 | 2024-1-29 |
在线时间 | 34 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 141
- 在线时间
- 34 小时
- 注册时间
- 2021-3-4
- 帖子
- 8
|
1楼
楼主 |
发表于 2021-4-9 22:08:38
|
只看该作者
本帖最后由 今晚夜空中 于 2021-4-27 23:46 编辑
自己解决了,配合插件的话修改一下字符串。
//==================================================================
Window_ItemList.prototype.isCurrentItemEnabled = function(item) {
if (this._category === "weapon"){
return SceneManager.push(Scene_Equip);
}
else if (this._category === "armor"){
return SceneManager.push(Scene_Equip);
} else {
return true;
}
};
//==================================================================
|
|