赞 | 4 |
VIP | 211 |
好人卡 | 175 |
积分 | 7 |
经验 | 48096 |
最后登录 | 2014-1-9 |
在线时间 | 1327 小时 |
Lv2.观梦者 (?????)
- 梦石
- 0
- 星屑
- 736
- 在线时间
- 1327 小时
- 注册时间
- 2011-7-18
- 帖子
- 3184
|
本帖最后由 各种压力的猫君 于 2011-8-16 01:42 编辑
Scene_Title 208-226行左右
219行 RPG::BGM.fade(1500)
224行 RPG::BGM.stop
注释掉就行了,像这样:- #--------------------------------------------------------------------------
- # ● 命令:新游戏
- #--------------------------------------------------------------------------
- def command_new_game
- confirm_player_location
- Sound.play_decision
- $game_party.setup_starting_members # 起始队伍
- $game_map.setup($data_system.start_map_id) # 起始位置
- $game_player.moveto($data_system.start_x, $data_system.start_y)
- $game_player.refresh
- $scene = Scene_Map.new
- # RPG::BGM.fade(1500)
- close_command_window
- Graphics.fadeout(60)
- Graphics.wait(40)
- Graphics.frame_count = 0
- # RPG::BGM.stop
- $game_map.autoplay
- end
复制代码 |
|