赞 | 0 |
VIP | 6 |
好人卡 | 0 |
积分 | 1 |
经验 | 999 |
最后登录 | 2014-10-2 |
在线时间 | 54 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 54 小时
- 注册时间
- 2008-5-12
- 帖子
- 129
|
事實上這個位置無論怎麼也會有進行一次事件的執行搜索,所以或者這樣寫就比較直觀一點:
# 强制行动的战斗者不存在的情况下
if $game_temp.forcing_battler == nil
# 设置战斗事件
setup_battle_event
# 执行战斗事件中的情况下
if $game_system.battle_interpreter.running?
return
end
end
# 强制行动的战斗者存在的情况下
if $game_temp.forcing_battler != nil
# 在头部添加后移动
@action_battlers.delete($game_temp.forcing_battler)
@action_battlers.unshift($game_temp.forcing_battler)
end
=>
# 强制行动的战斗者存在的情况下
if $game_temp.forcing_battler != nil
# 在头部添加后移动
@action_battlers.delete($game_temp.forcing_battler)
@action_battlers.unshift($game_temp.forcing_battler)
else
# 设置战斗事件
setup_battle_event
# 执行战斗事件中的情况下
if $game_system.battle_interpreter.running?
return
end
end
他的意思是說:「現在正在進行戰鬥者的強制事情,其它的麻煩不要摻和。」因為立即執行的優先度最高。
另外這是題外話--,閣下不是蘿莉女王的馬甲吧(因為頭像是華音的聯想)? |
|