赞 | 0 |
VIP | 8 |
好人卡 | 27 |
积分 | 56 |
经验 | 41413 |
最后登录 | 2012-10-21 |
在线时间 | 833 小时 |
Lv4.逐梦者 弓箭手?剑兰
- 梦石
- 0
- 星屑
- 5579
- 在线时间
- 833 小时
- 注册时间
- 2010-11-17
- 帖子
- 1140
|
你储存了以后问什么无效?那是因为副档名是txt,而不是rvdata,事件脚本改为:
- file = File.open("Finished.rvdata","wb")
- Marshal.dump($game_variables,file)
- Marshal.dump($game_actors,file)
- file.close
复制代码
68~72行不知道为什么这样设置,于是重新将update里写为:
- super
- @command_window.update
- if Input.trigger?(Input::C)
- case @command_window.index
- when 0
- command_new_game
- when 1 # 读取存档
- command_continue
- when 2 # 退出游戏
- command_shutdown
- when 3
- command_renascence if FileTest.exist?("Finished.rvdata")
- end
- end
复制代码
之后146行错误,是因为我之前说错了关于Vocab模块的东西。是该是:
- module Vocab
- def self.renascence
- return"重新轮回"
- end
- end
复制代码
之后264行错误。是因为不是file.open,而是File.open,因为这是模块的特殊大小写(记住大小写不要乱来!)。改为:
- file = File.open("finished.rvdata","rb")
复制代码
接着266行有问题,Marshal.load的方法不是这样,而是:
- $game_variables = Marshal.load(file) # file是刚才开启的那个
复制代码
为了验证结果,我么将那只猫对话文字改为:
变量开启(\v[3]) 返回主菜单
那后不断选择"轮回"然后对话。
最后,假如你不清楚操作,将这个覆盖Data:
Data.zip
(161.36 KB, 下载次数: 95)
|
|