赞 | 4 |
VIP | 211 |
好人卡 | 175 |
积分 | 7 |
经验 | 48096 |
最后登录 | 2014-1-9 |
在线时间 | 1327 小时 |
Lv2.观梦者 (?????)
- 梦石
- 0
- 星屑
- 736
- 在线时间
- 1327 小时
- 注册时间
- 2011-7-18
- 帖子
- 3184
|
Scene_Battle 约157-171行:- #--------------------------------------------------------------------------
- # ● 战斗事件处理
- #--------------------------------------------------------------------------
- def process_battle_event
- loop do
- #return if judge_win_loss
- return if $game_temp.next_scene != nil
- $game_troop.interpreter.update
- $game_troop.setup_battle_event
- wait_for_message
- process_action if $game_troop.forcing_battler != nil
- return unless $game_troop.interpreter.running?
- update_basic
- end
- end
复制代码 其中第6行的 return if judge_win_loss 注释掉(不知道会不会有什么副作用……) |
|