安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
target = open("SAVEDATA00/SAVEDATA.BIN", "wb") # open the installation location
clean = open("clean/SAVEDATA00/SAVEDATA.BIN", "wb") # open the save file from a new game
dirty = open("dirty/SAVEDATA00/SAVEDATA.BIN", "wb") # open the save to install
target.write(clean.read(32)) # write the initial part of the clean save
dirty.seek(32) # skip the first 32 bytes of the dirty save
target.write(dirty.read()) # write the rest of the dirty save
target.flush() # ensure everything has reached disk
target.close() # close the target file, completing installation
Got it first try.
Dont even need to change the first line in the hex data as its exactly the same in both. Just the 2nd line needs copying and changing.
Only thing I will add is, the hex editor I used (HxD) supports copying and pasting so it was completely painless. Just a matter of copy and paste.
For my second try I went offline, so that the cloud save wouldn't interfere, when I restarted the game.
I also only changed the save data and ignored the system save.