赞 | 0 |
VIP | 0 |
好人卡 | 25 |
积分 | 20 |
经验 | 70413 |
最后登录 | 2024-8-14 |
在线时间 | 1871 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 2019
- 在线时间
- 1871 小时
- 注册时间
- 2009-8-17
- 帖子
- 256
|
- class Scene_Battle < Scene_Base
-
- def battle_end(result)
- if result == 2 and not $game_troop.can_lose
- continue_game
- else
- $game_party.clear_actions
- $game_party.remove_states_battle
- $game_troop.clear
- if $game_temp.battle_proc != nil
- $game_temp.battle_proc.call(result)
- $game_temp.battle_proc = nil
- end
- unless $BTEST
- $game_temp.map_bgm.play
- $game_temp.map_bgs.play
- end
- $scene = Scene_Map.new
- @message_window.clear
- Graphics.fadeout(30)
- end
- $game_temp.in_battle = false
- end
-
- def continue_game
- $game_party.clear_actions
- $game_party.remove_states_battle
- $game_troop.clear
- $game_temp.map_bgm.play
- $game_temp.map_bgs.play
- $scene = Scene_Map.new
- @message_window.clear
- Graphics.fadeout(30)
- $game_temp.in_battle = false
- $game_temp.common_event_id = 10
- end
- end
复制代码 死亡后执行10号公共事件。。。在10号公共事件里面进行各种设置就行了。 |
评分
-
查看全部评分
|