with open(r"konkoplus_tyrano_data.sav", encoding='utf-8') as f:
content = f.read()
decode_str = urllib.parse.unquote(content)
print(decode_str)
with open('file.json', 'w', encoding='utf-8') as f1:
f1.write(decode_str)
encode_str = urllib.parse.quote(decode_str)
with open('file.sav', 'w', encoding='utf-8') as f2:
f2.write(encode_str)
看起来好可爱
DLC巨多
和希尔薇很想一个类型
所以(* ̄m ̄)……这个也要一直摸头?
这个好像没有完全汉化版本啊。。。
有了
那个全cg存档挂掉了。。。
全cg存档能补一下吗
已补档
你这存档最新版本没用
最新官中版的存档谁能分享一下。。。主线回想卡了一个倒数第九项,可能是因为修改过度了,收集99%,强迫症简直难受
这个游戏的存档没有加密,存档格式为URL编码,下面是一个简易解码和编码的python例子,有需要的可以看看
注意缩进
import urllib.parse
with open(r"konkoplus_tyrano_data.sav", encoding='utf-8') as f:
content = f.read()
decode_str = urllib.parse.unquote(content)
print(decode_str)
with open('file.json', 'w', encoding='utf-8') as f1:
f1.write(decode_str)
encode_str = urllib.parse.quote(decode_str)
with open('file.sav', 'w', encoding='utf-8') as f2:
f2.write(encode_str)
现在看见这游戏,脑海里就会浮现"一善~"的语音了