- Joined
- Jan 7, 2015
- Messages
- 6,638
- Solutions
- 2
- Reaction score
- 19,435
- Trophies
- 5
- Location
- Middleish South-Left
- Website
- scarlet.works
- XP
- 28,314
- Country

Hey all,
I've been looking at creating a save editor for the DS Harvest Moon games, but I've not messed with checksums before. In looking around, I found this and thought I might be able to do it myself. Sadly, I'm coming up blank. In the save file for Harvest Moon DS for Girl (the JP ver of HMDS Cute), the first line looks something like this.
I've messed with changing one value at a time in-game and seeing if it affects the values in any logical way, but I just can't figure it out. I made ten different saves, altering only the money at 0x4FC, but there's no kind of logical pattern. Comparing each of these files, the only changes are in the File1 value and the FullFile value, aside from the money.
Am I going about this the wrong way? And if so, can anybody point me to the right way? I've attached the save files should anybody be interested. Thanks in advance.
I've been looking at creating a save editor for the DS Harvest Moon games, but I've not messed with checksums before. In looking around, I found this and thought I might be able to do it myself. Sadly, I'm coming up blank. In the save file for Harvest Moon DS for Girl (the JP ver of HMDS Cute), the first line looks something like this.
Code:
00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
AA AA BB BB CC CC DD DD EE EE FF FF -- -- -- --
A = File 1 exists? 01 00 if yes, 00 00 if no
B = File 2 exists? 01 00 if yes, 00 00 if no
C = File 1 checksum
D = File 2 checksum (00 00 if file doesn't exist)
E = Always 4B 42
F = Full save checksum?
Code:
## File1 FullFile
00 = C5B7 4B93
01 = 2071 34BE
02 = 4E38 B5C9
03 = ABFE CAE4
04 = 92AA F724
05 = 776C 8809
06 = 1925 097E
07 = FCE3 7653
08 = 6B8D 72FE
09 = 8E4B 0DD3





