加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
用的是这两个方法,平时是用来存一个哈希表的,这个哈希表用来自动存各种游戏数据,比如分数、某种全局操作次数之类。
但是文件dead.rvdata2在执行存储的时候,会报病毒,有没有办法让它不报毒?(VA记录时也是用这个方法记录,可是它也没报毒。)
def load_out File.open("Data/dead.rvdata2", "rb") do |file| #读取的时候需要将数值存入变量。 $game_variables.hash_data=Marshal.load(file) end end def save_in File.open("Data/dead.rvdata2","wb") do |file| Marshal.dump($game_variables.hash_data,file) end end
def load_out
File.open("Data/dead.rvdata2", "rb") do |file|
#读取的时候需要将数值存入变量。
$game_variables.hash_data=Marshal.load(file)
end
end
def save_in
File.open("Data/dead.rvdata2","wb") do |file|
Marshal.dump($game_variables.hash_data,file)
end
end
|