赞 | 159 |
VIP | 0 |
好人卡 | 0 |
积分 | 263 |
经验 | 0 |
最后登录 | 2024-11-17 |
在线时间 | 5356 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 26274
- 在线时间
- 5356 小时
- 注册时间
- 2016-3-8
- 帖子
- 1655
|
本帖最后由 alexncf125 于 2021-11-25 07:59 编辑
任小雪:
学点脚本,具体应该都跟window有关
比如
Window_ItemList.prototype.isEnabled = function(item) {
return $gameParty.canUse(item);
};
然而实际是跟Game_BattlerBase有关
比如
Game_BattlerBase.prototype.meetsItemConditions = function(item) {
return this.meetsUsableItemConditions(item) && $gameParty.hasItem(item);
};
Game_BattlerBase.prototype.canUse = function(item) {
if (!item) {
return false;
} else if (DataManager.isSkill(item)) {
return this.meetsSkillConditions(item);
} else if (DataManager.isItem(item)) {
return this.meetsItemConditions(item);
} else {
return false;
}
};
|
|