赞 | 1 |
VIP | 22 |
好人卡 | 4 |
积分 | 1 |
经验 | 14594 |
最后登录 | 2015-10-25 |
在线时间 | 796 小时 |
Lv1.梦旅人 綾川司の姫様<
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 796 小时
- 注册时间
- 2007-12-20
- 帖子
- 4520
|
- -为什么会出现一个插在Main前面的脚本……不是只要在脚本里简单修改下范围判定就可以了么……
找到Game_Battler 3如下修改
if ((item.scope == 3 or item.scope == 4) and self.hp == 0) #注释这段 or ((item.scope == 5 or item.scope == 6) and self.hp >= 1)
Scene_Battle 4里面
when 5 # 我方单体 (HP 0)
index = @active_battler.current_action.target_index
actor = $game_party.actors[index]
if actor != nil #这里注释 and actor.hp0?
@target_battlers.push(actor)
end
when 6 # 我方全体 (HP 0)
for actor in $game_party.actors
if actor != nil #这里注释 and actor.hp0?
@target_battlers.push(actor)
end
end
|
|