Hacking Post your WiiU cheat codes here!

BullyWiiPlaza

Nintendo Hacking <3
Member
Joined
Aug 2, 2014
Messages
1,932
Trophies
0
XP
2,477
Country
Germany

cfoordddd

Well-Known Member
Member
Joined
Jan 4, 2015
Messages
103
Trophies
0
XP
138
Country
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]
 

cfoordddd

Well-Known Member
Member
Joined
Jan 4, 2015
Messages
103
Trophies
0
XP
138
Country
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
 

Onion_Knight

Well-Known Member
Member
Joined
Feb 6, 2014
Messages
878
Trophies
0
Age
45
XP
997
Country
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

  • cheat.py.zip
    1.2 KB · Views: 168

cfoordddd

Well-Known Member
Member
Joined
Jan 4, 2015
Messages
103
Trophies
0
XP
138
Country
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,

merlin555

Master
Member
Joined
Oct 27, 2014
Messages
1,585
Trophies
1
XP
5,831
Country
Germany
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
 

Onion_Knight

Well-Known Member
Member
Joined
Feb 6, 2014
Messages
878
Trophies
0
Age
45
XP
997
Country
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

  • cheat.py.zip
    1.2 KB · Views: 175

BullyWiiPlaza

Nintendo Hacking <3
Member
Joined
Aug 2, 2014
Messages
1,932
Trophies
0
XP
2,477
Country
Germany
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,

Reecey

Mario 64 (favorite game of all time)
Member
Joined
Mar 7, 2010
Messages
5,870
Trophies
2
Location
At Home :)
XP
4,475
Country
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,

CosmoCortney

i snack raw pasta and chew lollipops
OP
Member
Joined
Apr 18, 2013
Messages
1,768
Trophies
2
Location
on the cool side of the pillow
Website
follow-the-white-rabbit.wtf
XP
3,017
Country
Germany
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
 

Reecey

Mario 64 (favorite game of all time)
Member
Joined
Mar 7, 2010
Messages
5,870
Trophies
2
Location
At Home :)
XP
4,475
Country
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,

Adr990

To boldly go where no man has gone before!
Member
Joined
Apr 22, 2007
Messages
1,567
Trophies
0
Location
The Netherlands
Website
www.hyrule.net
XP
737
Country
Netherlands

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    K3Nv2 @ K3Nv2: It must be poop day