Hacking [SAVEGAME HACK] + [HELP] Kirby and the rainbow course

asper

Well-Known Member
OP
Member
Joined
May 14, 2010
Messages
942
Trophies
1
XP
2,030
Country
United States
Points and lives identified with unlocked treasures but the game has a 4 byte checksum at offset 0000000x04-0x00000007: does someone is able to figure out how it is calculated ? Without it no savegame hacks are possible. Here are 2 savegames (just 1st level played 1 time from zero in both of them).

The offsets found:

Lives:
0x00000589

Points (4 bytes):
0x0000058C
0x0000058D
0x0000058E
0x0000058F
 

Reecey

Mario 64 (favorite game of all time)
Member
Joined
Mar 7, 2010
Messages
5,870
Trophies
2
Location
At Home :)
XP
4,485
Country
Why is he opening constant pointless threads when there is a thread dedicated to pointer cheats :unsure: > https://gbatemp.net/threads/post-your-wiiu-cheat-codes-here.395443/ the OP just has not been updated but these cheats have probably already been reported there! Also there is a Loadiine file save sharing thread full of files to share, if that is what he is wanting. Is he just unnecessary posting to get some sort of fame hit, you know to feed his GBATemp fame hit addiction? it probably is and can be a very serious addiction, according to @gamesquest1 he told me once its like having a Smack addiction and you can never go back! ;)
 
Last edited by Reecey,

asper

Well-Known Member
OP
Member
Joined
May 14, 2010
Messages
942
Trophies
1
XP
2,030
Country
United States
Why is he opening constant pointless threads when there is a thread dedicated to pointer cheats :unsure: > https://gbatemp.net/threads/post-your-wiiu-cheat-codes-here.395443/ the OP just has not been updated but these cheats have probably already been reported there! Also there is a Loadiine file save sharing thread full of files to share, if that is what he is wanting. Is he just unnecessary posting to get some sort of fame hit, you know to feed his GBATemp fame hit addiction? it probably is and can be a very serious addiction, according to @gamesquest1 he told me once its like having a Smack addiction and you can never go back! ;)

The one you are linking are RAM cheats, absolutely not related to savegame hacks.
File sharing is something you want to exchange with others, just different with "modify your own savegames to obtain just what you want/need".
Your answer seems to be the answer of a totally (boring) newbie that usually infests forums and makes devs and researchers to loose their interest in sharing their totally-free findings with others.

Thank you very much for your (totally unuseful) presence, from now on I will stop sharing my savegame findings, thanks to you ;)
 
Last edited by asper,
  • Like
Reactions: Leanny

Leanny

Well-Known Member
Member
Joined
Feb 14, 2009
Messages
112
Trophies
0
XP
365
Country
Gambia, The
I am also interessted in this, since I try to figure out how to calculate the checksum of Wii U games for around 2 days now. Right now it looks to me that they are using CRC32 with a polynom I dont know about or a standard CRC32 with a range I dont know about. I keep you up2date when I find something, or maybe someone else can help :)
 

Gadorach

Electronics Engineering Technologist
Member
Joined
Jan 22, 2014
Messages
970
Trophies
0
Location
Canada
XP
956
Country
Canada
Points and lives identified with unlocked treasures but the game has a 4 byte checksum at offset 0000000x04-0x00000007: does someone is able to figure out how it is calculated ? Without it no savegame hacks are possible. Here are 2 savegames (just 1st level played 1 time from zero in both of them).

The offsets found:

Lives:
0x00000589

Points (4 bytes):
0x0000058C
0x0000058D
0x0000058E
0x0000058F
I've been meaning to look into checksum correction, I'll see what I can do.
 

NWPlayer123

Well-Known Member
Member
Joined
Feb 17, 2012
Messages
2,642
Trophies
0
Location
The Everfree Forest
XP
6,693
Country
United States
Well, I found the class that handles it all, storage::SaveDataAccessor
Screenshot_72.png
EDIT: Okay, so. It passes in everything except the first 0x10 bytes since that's apparently some header, the rest is 0x1194 bytes, so it does a CRC32 on bytes 0x10 to 0x11A4. Something like this
Code:
static hel::util::Hash::CRC32(const void* data, int size) {
    int ret = -1;
    if (size == 0) return ret;

    for (int i = 0; i < size; i++) {
        //Do hash
    }
    return ret;
}

Screenshot_73.png

Screenshot_74.png
Or you can, just, somehow edit that function so it doesn't call it, on this version just write 0x38600001 (li r3, 1) to 0x0E05E6B8 to replace that srwi r3, r0, 5 in isValidCrc so it's always valid
 
Last edited by NWPlayer123,
  • Like
Reactions: Gadorach and asper

asper

Well-Known Member
OP
Member
Joined
May 14, 2010
Messages
942
Trophies
1
XP
2,030
Country
United States
Well, I found the class that handles it all, storage::SaveDataAccessor
EDIT: Okay, so. It passes in everything except the first 0x10 bytes since that's apparently some header, the rest is 0x1194 bytes, so it does a CRC32 on bytes 0x10 to 0x11A4. Something like this
Code:
static hel::util::Hash::CRC32(const void* data, int size) {
    int ret = -1;
    if (size == 0) return ret;

    for (int i = 0; i < size; i++) {
        //Do hash
    }
    return ret;
}

Or you can, just, somehow edit that function so it doesn't call it, on this version just write 0x38600001 (li r3, 1) to 0x0E05E6B8 to replace that srwi r3, r0, 5 in isValidCrc so it's always valid

Great finding man ! THANK YOU !

I just tested a CRC32 function from 0x10 to 0x11A4 but my result is different: for GameData01.dat (the files i uploaded in the 1st post) it is C20D9F8D insted of the correct 68C069EF... is it a standard CRC32 calculation ?
I found another checksum, probably the same, in Nintendo Land and in Captain Toad but without the correct CRC32 function i cannot verify.
 
Last edited by asper,

Leanny

Well-Known Member
Member
Joined
Feb 14, 2009
Messages
112
Trophies
0
XP
365
Country
Gambia, The
I don't think that's a checksum, actually, my imported gear works fine without it generated and they never update it after it's in your inventory
I can only try it on CEMU rn and everytime I manipulate my save, so I was thinking that it was a checksum
 

Black_Manta_8bit

New Member
Newbie
Joined
Sep 8, 2007
Messages
3
Trophies
1
XP
283
Country
Italy
Hey guys, i know this is an ancient topic but i really would like to have some cemu cheats for kirby rainbow curse: in particular unlimited lives and unlimited paint.
Any help please?
 
Last edited by Black_Manta_8bit,

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • BigOnYa @ BigOnYa:
    Yea is sad. His 2 movies were good. Informative about our food industry.
  • BigOnYa @ BigOnYa:
    This was one of the craziest movies I've seen about our food industry, lots of stuff I didn't know. A must see. https://youtu.be/OqzjC-ENrl8?si=GYxmdY5nShzGniVi
  • OctoAori20 @ OctoAori20:
    Oh, that dude?
  • OctoAori20 @ OctoAori20:
    I stopped believing or caring about that dude when I found out about some of the more questionable nonsense he did in his life.
  • BigOnYa @ BigOnYa:
    Like what? I didn't know or hear.
  • K3Nv2 @ K3Nv2:
    You mean like every famous person that ever existed
    +1
  • K3Nv2 @ K3Nv2:
    I get so tired of hearing oh I liked him until...
  • OctoAori20 @ OctoAori20:
    I just know dude was a chronic alcoholic and such.
  • BigOnYa @ BigOnYa:
    I've been to his chicken restaurant he started in his 2nd movie, Holy Chicken, was pretty good. It is only 15-20 miles from me in Ohio. It only lasted 1 yr or so then closed tho.
  • OctoAori20 @ OctoAori20:
    There are very few people I just have just an immense dislike of and he's one of those very few people, the only other example is Gene Simmons. My musician uncle on my mother's side of the family actually met Gene once during some event and said he was the most unpleasant person to be around.
  • K3Nv2 @ K3Nv2:
    I met myself once turns out that guy is a giant piece of shit that doesn't deserve any of my respect
  • BigOnYa @ BigOnYa:
    Damn alcoholics! (Sshhh- Opens another beer)
  • OctoAori20 @ OctoAori20:
    Agreed, Ken
  • OctoAori20 @ OctoAori20:
    I can't say I've ever tried even a sip of beer tbh-
  • K3Nv2 @ K3Nv2:
    You met yourself also and is a giant piece of shit?
    +1
  • OctoAori20 @ OctoAori20:
    Then again, I don't think I'd really enjoy it //shrug
  • OctoAori20 @ OctoAori20:
    I'm sure it's an acquired taste :P
  • K3Nv2 @ K3Nv2:
    Poor lad can never enjoy the amazing taste of four loko
    +1
  • BigOnYa @ BigOnYa:
    Root beer is a gateway drink, don't ever try it either.
  • K3Nv2 @ K3Nv2:
    @BigOnYa, don't you love how smooth MD20 is
  • BigOnYa @ BigOnYa:
    Mad dog 20 20? Oh yea fixed the typo. I haven't seen that or had forever. Do they still make it?
  • K3Nv2 @ K3Nv2:
    I think it's why I'm alive
    +1
  • BigOnYa @ BigOnYa:
    What happens if when playing Paper Mario, you start a fire in-game?
    K3Nv2 @ K3Nv2: https://youtu.be/vja8uoOy5XE?si=d2qo7jYK9TiyaOZ2 +1