Hacking Post your WiiU cheat codes here!

  • Thread starter Thread starter LawnMeower
  • Start date Start date
  • Views Views 2,112,879
  • Replies Replies 9,274
  • Likes Likes 52
Why?

For example in Splatoon having inf money is really nice. Everytime re-rolling gears can be really frustrating and farming money all the time very annoying. I hope someone is also interested in finding a cheat code for infinite money in Splatoon.

I was planning to release my splatoon codes all at once but i'm not finish with the gear modification (don't have all the gears in game yet), but here's the Coins for Splatoon v2.1.0 it's not infinite it just change your coins value to 9,999,999
Code:
Squid Coins
12CD1FA0 0098967F
[Note: change value in inkopolis, press start then press b to go back to make changes permanent]
 
This one should hopefully fix your issue. Please let me know. I swapped the Simple resolver and complex resolver, but put an extra check into make sure the simple resolver doesn't run on first on complex types.
This is what i'am getting now:
upload_2015-9-28_14-50-44.png
 
This is what i'am getting now:

Are you feeding it an offset that is that big from a pointer? I was only checking for up to 3 digit values offsets. That's a fairly substantial offset. Anyway, try this one...your my guinea pig for these complex types. My simple and plain work great!
 

Attachments

Are you feeding it an offset that is that big from a pointer? I was only checking for up to 3 digit values offsets. That's a fairly substantial offset. Anyway, try this one...your my guinea pig for these complex types. My simple and plain work great!
not quiet understand what you mean, sorry im still noob with pointers i just follow bully's instruction video on how to manually follow pointer

my original code i got from bullywiiplaza and mr. mysterio's pointer searching tool was [10706E38]+5718C
But for you tool i have to put it as [[10706E38]+5718C] FFFFFFFF right?, but looks like it's not adding the +5718C. That 2C9C3648 is right though.

this is what i get for it now from your latest now.
upload_2015-9-28_16-27-13.png
 
Last edited by cfoordddd,
Super Mario 3D World

Notes for the green stars.
When you have problems, when the world CROWN not open,
you have "poken" a puzzle level.
Puzzle levels has in later stages more than 3 green stars.
the last puzzle stage in the game is:
World Mushroom-Mystery House Brawl
 
not quiet understand what you mean, sorry im still noob with pointers i just follow bully's instruction video on how to manually follow pointer

my original code i got from bullywiiplaza and mr. mysterio's pointer searching tool was [10706E38]+5718C
But for you tool i have to put it as [[10706E38]+5718C] FFFFFFFF right?, but looks like it's not adding the +5718C. That 2C9C3648 is right though.

this is what i get for it now from your latest now.


Lol,
Okay, that was my fault. I didn't expect an offset to be that big and was only matching on offsets up to 3 digits in size. We no match up to 7 hex digits in size for an offset.
 

Attachments

Lol,
Okay, that was my fault. I didn't expect an offset to be that big and was only matching on offsets up to 3 digits in size. We no match up to 7 hex digits in size for an offset.
Ah, typical mistake :P
Make sure to parse any length including + and - signs. I did the same parsing for one of my tools to parse the String pointer into an object but I did it via String operations and without regular expressions. Sure, it's kind of terrible code-wise but it works great:
Code:
    public MemoryPointer(String memoryPointerNotation)
    {
        int pointerDepth = count('[', memoryPointerNotation);

        LOGGER.info("MemoryPointer depth: " + pointerDepth);

        offsets = new int[pointerDepth];

        int lastOpeningBracket = memoryPointerNotation.lastIndexOf("[");
        int firstClosingBracket = memoryPointerNotation.indexOf("]");
        String hexadecimalBaseAddress = memoryPointerNotation.substring(lastOpeningBracket + 1, firstClosingBracket);
        int baseAddress = Integer.parseInt(hexadecimalBaseAddress, 16);
        LOGGER.info("Base address: " + new Hexadecimal(baseAddress));
        setBaseAddress(baseAddress);

        memoryPointerNotation = memoryPointerNotation.substring(firstClosingBracket + 2);
        int currentOffsetIndex = 0;

        while (currentOffsetIndex < pointerDepth)
        {
            LOGGER.info("Remaining to parse: " + memoryPointerNotation);
            int nextClosingBracket = memoryPointerNotation.indexOf("]");

            String offsetString;

            if (nextClosingBracket == -1)
            {
                // Last offset
                offsetString = memoryPointerNotation;
            }
            else
            {
                // Inner offset
                offsetString = memoryPointerNotation.substring(0, nextClosingBracket);
            }

            // Omit space and sign
            int offset = Integer.parseInt(offsetString.substring(2), 16);

            // Inverse the value if negative
            if (offsetString.charAt(0) == '-')
            {
                offset *= -1;
            }

            offsets[currentOffsetIndex] = offset;

            LOGGER.info("Offset: " + new Hexadecimal(offset));

            memoryPointerNotation = memoryPointerNotation.substring(nextClosingBracket + 2);

            currentOffsetIndex++;
        }

        setOffsets(offsets);
    }
 
Last edited by BullyWiiPlaza,
Can someone please find the values for MK8 Pal v4.1 so we can change the tyre's/gliders/body's etc.. there aren't really any good codes going for MK8 pal v4.1 at the moment now I have had a good look at it tbh :( MK8 v4.0 & NTSC codes wont work with Pal.

Also still cannot get the Onions cheat client working, it just exits with me asap soon as I click on it, it wont work at all sure it works on Windows 8.1?
 
Last edited by Reecey,
Can someone please find the values for MK8 Pal v4.1 so we can change the tyre's/gliders/body's etc.. there aren't really any good codes going for MK8 pal v4.1 at the moment now I have had a good look at it tbh :( MK8 v4.0 & NTSC codes wont work with Pal.

Also still cannot get the Onions cheat client working, it just exits with me asap soon as I click on it, it wont work at all sure it works on Windows 8.1?
i think @BullyWiiPlaza has made such codes. Not sure
 
The addresses didn't change...
Do they work in Pal update v4.1 100% cause it would not work for me in Gecko earlier. I tried in the selection of the equipment on the kart but when I entered the race nothing different.

Example MK8 v4.0 NTSC code:-

Select Kart Body [knopex] (Gold)
306C53C4 0000000D

didn't work for me, nothing was different.
 
Last edited by Reecey,

Attachments

Last edited by Onion_Knight,
  • Like
Reactions: BullyWiiPlaza
How do you apply your kind of cheats?

With TCP Gecko dotNET I did poke every address separately, but that didn't do anything.
(Pal/4.1)
These addresses are for version 1.0 only, sorry. I didn't "release" the 4.1 ones, but they are used in my MK8 Trainer which doesn't currently come with source code.
 
  • Like
Reactions: Adr990

Site & Scene News

Popular threads in this forum