Install Steam
sign in
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Bahasa Indonesia (Indonesian)
Bahasa Melayu (Malay) BETA
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem









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.