赞 | 451 |
VIP | 56 |
好人卡 | 75 |
积分 | 424 |
经验 | 124650 |
最后登录 | 2024-11-27 |
在线时间 | 7603 小时 |
Lv5.捕梦者 (管理员) 老黄鸡
- 梦石
- 0
- 星屑
- 42436
- 在线时间
- 7603 小时
- 注册时间
- 2009-7-6
- 帖子
- 13506
|
本帖最后由 fux2 于 2011-8-12 21:34 编辑
losyK 发表于 2011-8-12 21:20
原来还有个这样的名字.....
恩,差不多就是这样。
在Main上方插入这个脚本,事件脚本输入rem记录,lad载入
另外,之前的存档就不能用了,要重新存档.
以下没测试,有事就回复- class Interpreter
- def rem
- $dreampro=[$game_actors,$game_party]
- end
- def lad
- $game_actors,$game_party=$dreampro[0],$dreampro[1] if $dreampro
- end
- end
- class Scene_Save < Scene_File
- alias:ws:write_save_data
- def write_save_data(file)
- ws(file)
- Marshal.dump($dreampro, file)
- end
- end
- class Scene_Load < Scene_File
- alias:rs:read_save_data
- def read_save_data(file)
- $dreampro = Marshal.load(file)
- rs(file)
- end
- end
复制代码 |
|