赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 1673 |
最后登录 | 2013-9-17 |
在线时间 | 26 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 26 小时
- 注册时间
- 2013-7-14
- 帖子
- 54
|
5楼
楼主 |
发表于 2013-7-14 16:08:50
|
只看该作者
非常感谢两位大大帮助,我已经找到解决方法了-
- #--------------------------------------------------------------------------
- # ● 命令 : 危机百科
- #--------------------------------------------------------------------------
- def command_end
- # 生成各种游戏对像
- $game_temp = Game_Temp.new
- $game_system = Game_System.new
- $game_switches = Game_Switches.new
- $game_variables = Game_Variables.new
- $game_self_switches = Game_SelfSwitches.new
- $game_screen = Game_Screen.new
- $game_actors = Game_Actors.new
- $game_party = Game_Party.new
- $game_troop = Game_Troop.new
- $game_map = Game_Map.new
- $game_player = Game_Player.new
- # 设置初期同伴位置
- #$game_party.setup_starting_members
- # 设置初期位置的地图
- $game_map.setup(2)
- # 主角向初期位置移动
- $game_player.moveto(0,0)
- # 刷新主角
- $game_player.refresh
- # 执行地图设置的 BGM 与 BGS 的自动切换
- $game_map.autoplay
- # 刷新地图 (执行并行事件)
- $game_map.update
- # 切换地图画面
- $scene = Scene_Map.new
- end
复制代码- #--------------------------------------------------------------------------
- # ● 刷新画面
- #--------------------------------------------------------------------------
- def update
- # 刷新命令窗口
- @command_window.update
- # 按下 C 键的情况下
- if Input.trigger?(Input::C)
- # 命令窗口的光标位置的分支
- case @command_window.index
- when 0 # 穿越银时空
- command_new_game
- when 1 # VCR回顾
- command_continue
- when 2 # 危机百科
- command_end
- when 3 # 返回现实
- command_shutdown
- end
- end
- end
复制代码 |
|