Found anything yet? The game is great, but I've beaten it now and I want to cheat. lol. I'll help with what I can.. which Isn't much.
Printable View
Found anything yet? The game is great, but I've beaten it now and I want to cheat. lol. I'll help with what I can.. which Isn't much.
any progress on that checksum fix Fairchild? the values are easy to find and edit but its the checksum i cant figure out
This might be a bit late but yes, i got the checksum figured out :)
If someone is interested to create a save game editor heres the info (give proper credits):
Enjoy :)Code:savegame.sav:
Header {
int08 Signature[8]; // "RISNSG01"
int32 Version; // 02000000
int32 Reserved; // 00000000
int32 InfoOffset; // Header-based offset into uncompressed Buffer (Thanks Nico for this info)
int32 LayerOffset; // Header-based offset into uncompressed Buffer (Thanks Nico for this info)
int32 ObjectOffset; // Header-based offset into uncompressed Buffer (Thanks Nico for this info)
}
Buffer {
// ZLib-compressed data
}
Checksum {
int08 Checksum[20]; // SHA1 hash of content from 0x0 to end of compressed data.
}
I will definitely use this thank u.