赞 | 0 |
VIP | 1 |
好人卡 | 0 |
积分 | 3 |
经验 | 6984 |
最后登录 | 2024-8-27 |
在线时间 | 208 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 299
- 在线时间
- 208 小时
- 注册时间
- 2007-6-23
- 帖子
- 78
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
#--------------------------------------------------------------------------
# ● 生成行动顺序
#--------------------------------------------------------------------------
def self.make_action_orders
@action_battlers = []
@action_battlers += $game_party.members unless @surprise
@action_battlers += $game_troop.members unless @preemptive
@action_battlers.each {|battler| battler.make_speed }
@action_battlers.sort! {|a,b| b.speed - a.speed }
end
我将@action_battlers.sort! {|a,b| b.speed - a.speed }改成@action_battlers.sort! {|a,b| a.speed - b.speed }
行动顺序就逆转了,如何设计某条件达成行动顺序就逆转(tp 永远为 0)例如条件分支 |
|