设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 3016|回复: 3
打印 上一主题 下一主题

[已经过期] 如何设置防存档修改方法或脚本

[复制链接]

Lv2.观梦者

梦石
0
星屑
704
在线时间
91 小时
注册时间
2018-9-30
帖子
56
跳转到指定楼层
1
发表于 2019-6-10 17:31:58 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
请问下各位大佬们,如何设置防存档修改啊,比如使用了通用修改器修改,只要改出来东西就重制游戏。有没有这方面防存档修改的脚本,或者方法啊。
我只能设置某东西超过多少则重制游戏。有没有什么思路啊。。。。(⊙﹏⊙)
想做一款 吞食天地2重制版 游戏

Lv3.寻梦者

梦石
0
星屑
1680
在线时间
91 小时
注册时间
2019-5-16
帖子
45
2
发表于 2019-6-10 22:55:32 | 只看该作者
摘自:https://rpg.blue/thread-398047-1-1.html 3L 第3.5章

  1. module DataManager
  2.   #存档
  3.   def self.save_game_without_rescue(index)
  4.     File.open(make_filename(index), "wb") do |file|
  5.       $game_system.on_before_save
  6.           Marshal.dump("解包穷三代",file) #额外的Marshal.dump
  7.       Marshal.dump(make_save_header, file)
  8.           Marshal.dump("作弊毁一生",file) #额外的Marshal.dump
  9.       Marshal.dump(make_save_contents, file)
  10.       @last_savefile_index = index
  11.     end
  12.     return true
  13.   end

  14.   #读取存档内容
  15.   def self.load_game_without_rescue(index)
  16.     File.open(make_filename(index), "rb") do |file|
  17.           Marshal.load(file) #额外的Marshal.load
  18.       Marshal.load(file)
  19.           Marshal.load(file) #额外的Marshal.load
  20.       extract_save_contents(Marshal.load(file))
  21.       reload_map_if_updated
  22.       @last_savefile_index = index
  23.     end
  24.     return true
  25.   end

  26.   #读取存档头
  27.   def self.load_header_without_rescue(index)
  28.     File.open(make_filename(index), "rb") do |file|
  29.           Marshal.load(file) #额外的Marshal.load
  30.       return Marshal.load(file)
  31.     end
  32.     return nil
  33.   end  
  34. end
复制代码
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
704
在线时间
91 小时
注册时间
2018-9-30
帖子
56
3
 楼主| 发表于 2019-6-12 20:04:30 | 只看该作者
Aephiex 发表于 2019-6-10 22:55
摘自:https://rpg.blue/thread-398047-1-1.html 3L 第3.5章

大神你好,我刚在看具体3.5说什么。。。。唔,这个只能防止解包哦,有没有方法能够对实时防修改,比如ce修改器等等的方法或者思路(⊙﹏⊙)
想做一款 吞食天地2重制版 游戏
回复 支持 反对

使用道具 举报

Lv3.寻梦者

梦石
0
星屑
1680
在线时间
91 小时
注册时间
2019-5-16
帖子
45
4
发表于 2019-6-12 22:08:16 | 只看该作者
本帖最后由 Aephiex 于 2019-6-12 22:11 编辑
vixv 发表于 2019-6-12 20:04
大神你好,我刚在看具体3.5说什么。。。。唔,这个只能防止解包哦,有没有方法能够对实时防修改,比如ce ...


花大工夫研究反作弊,会消耗你的时间和精力,但不会让你的游戏更好玩。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-16 20:39

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表