赞 | 0 |
VIP | 10 |
好人卡 | 0 |
积分 | 1 |
经验 | 32022 |
最后登录 | 2017-6-13 |
在线时间 | 122 小时 |
Lv1.梦旅人 剑圣
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 122 小时
- 注册时间
- 2008-8-31
- 帖子
- 778
|
Scene_Battle 4第46行后面
def make_action_orders
# 初始化序列 @action_battlers
@action_battlers = []
# 添加敌人到 @action_battlers 序列
for enemy in $game_troop.enemies
@action_battlers.push(enemy)
end
# 添加角色到 @action_battlers 序列
for actor in $game_party.actors
@action_battlers.push(actor)
end
# 确定全体的行动速度
for battler in @action_battlers
battler.make_action_speed
end
# 按照行动速度从大到小排列
@action_battlers.sort! {|a,b|
b.current_action.speed - a.current_action.speed }
end
把按照行动速度从大到小排列和确定全体的行动速度后面的语句删掉
添加角色行动序列和敌人行动序列换一下
系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|