Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 85 online users. » 1 Member(s) | 82 Guest(s) Bing, Google, _Ro
|
Latest Threads |
Show Ice Cube on Online P...
Forum: Online Non-Item
Last Post: _Ro
4 hours ago
» Replies: 0
» Views: 21
|
CPU Control Cycler [Ro]
Forum: Offline Non-Item
Last Post: _Ro
4 hours ago
» Replies: 7
» Views: 988
|
Thunder Cloud Effect Modi...
Forum: Offline; Item
Last Post: JerryHatrick
Yesterday, 11:13 PM
» Replies: 11
» Views: 1,064
|
MKW Coder/Developer of th...
Forum: Coding & Hacking General Discussion
Last Post: Vega
Yesterday, 09:10 PM
» Replies: 10
» Views: 13,817
|
Make it to 10,000
Forum: General Discussion
Last Post: Vega
Yesterday, 08:15 PM
» Replies: 7,338
» Views: 5,669,774
|
Miniturbos and Inside Dri...
Forum: Coding & Hacking General Discussion
Last Post: JerryHatrick
Yesterday, 09:54 AM
» Replies: 1
» Views: 856
|
Code request???
Forum: Code Support / Help / Requests
Last Post: DrTap
01-09-2025, 06:06 PM
» Replies: 3
» Views: 4,952
|
CPUs/Online Players Have ...
Forum: Visual & Sound Effects
Last Post: Zeraora
01-09-2025, 02:26 AM
» Replies: 2
» Views: 501
|
Offline Hide and Seek
Forum: Code Support / Help / Requests
Last Post: FelX
01-08-2025, 03:43 PM
» Replies: 11
» Views: 732
|
Show Nametags During Coun...
Forum: Visual & Sound Effects
Last Post: _Ro
01-08-2025, 07:48 AM
» Replies: 1
» Views: 666
|
|
|
Prediction Removal [Stebler] |
Posted by: Vega - 12-24-2021, 03:20 PM - Forum: Online Non-Item
- No Replies
|
|
Prediction Removal [Stebler]
NTSC-U
0488D610 3F800000
PAL
04891B28 3F800000
NTSC-J
04891178 3F800000
NTSC-K
0487FF30 3F800000
Code creator: Stebler
|
|
|
Change Min VR/BR Limit [Unnamed] |
Posted by: Unnamed - 12-12-2021, 09:46 AM - Forum: Incomplete & Outdated Codes
- No Replies
|
|
Change Min VR/BR Limit
NTSC-U (untested)
02528E06 0000XXXX
02528E0E 0000XXXX
0261C3DE 0000XXXX
0261C3E6 0000XXXX
02834AAE 0000XXXX
02834AB6 0000XXXX
0283A79E 0000XXXX
0283A7A6 0000XXXX
0261C46E 0000XXXX
0261C476 0000XXXX
02834B1A 0000XXXX
02834B22 0000XXXX
0283A882 0000XXXX
0283A88A 0000XXXX
PAL
0252D27A 0000XXXX
0252D282 0000XXXX
0264F6F2 0000XXXX
0264F6FA 0000XXXX
0285653E 0000XXXX
02856546 0000XXXX
0285C22E 0000XXXX
0285C236 0000XXXX
0264F782 0000XXXX
0264F78A 0000XXXX
028565AA 0000XXXX
028565B2 0000XXXX
0285C312 0000XXXX
0285C31A 0000XXXX
NTSC-J (untested)
0252CBFA 0000XXXX
0252CC02 0000XXXX
0264ED5E 0000XXXX
0264ED66 0000XXXX
02855BAA 0000XXXX
02855BB2 0000XXXX
0285B89A 0000XXXX
0285B8A2 0000XXXX
0264EDEE 0000XXXX
0264EDF6 0000XXXX
02855C16 0000XXXX
02855C1E 0000XXXX
0285B97E 0000XXXX
0285B986 0000XXXX
NTSC-K (untested)
0251B2D2 0000XXXX
0251B2DA 0000XXXX
0263DA0A 0000XXXX
0263DA12 0000XXXX
028448FE 0000XXXX
02844906 0000XXXX
0284A5EE 0000XXXX
0284A5F6 0000XXXX
0263DA9A 0000XXXX
0263DAA2 0000XXXX
0284496A 0000XXXX
02844972 0000XXXX
0284A6D2 0000XXXX
0284A6DA 0000XXXX
XXXX = new minimum VR/BR limit in hex, Example: XXXX = 1388 (5000)
Code Creator: Unnamed
|
|
|
Coding Questions and other Quandaries |
Posted by: Hackwiz - 12-05-2021, 11:44 PM - Forum: Code Support / Help / Requests
- Replies (138)
|
|
Howdy all,
I have encountered something I’ve never seen before while hacking, perhaps you can shed some light as to what is going on.
The game I am hacking is “Anima- Ark of Sinners.” (USA) Wiiware.
Specifically, I am looking for an infinite health code.
The address for the protagonist’s [Celia] health changes every time the game is booted. This can usually be hacked using ASM, but in this case, it appears the address the actual game code itself is stored at, changes as well.
- I started a new game, and when I took control of Celia, with a full health bar, created a save state.
- I found her health address to be at: 91D31454 000000C8
- The return on breakpoint when taking damage: 80E9AA08 stw r3, 0x0014 (r29)
- So I re-wrote the code like this:
80E9AA08 stw r3, 0x0014 (r29)
li r11, 0xC8
lis r12, 0x91D3
stw r11, 0x1454(r12)
Works great until one of four things happen:
1) I deactivate the code and allow Celia to die.
2) Celia falls to her death.
3) A new area of the game is entered.
4) The game is rebooted, and my save state is not used.
In any of these cases, her health address changes, and the address where the store command is changes also.
I have let her die 5 times and ran a BP on all the new health addresses and came up with a new address where the store command is every time e.g.
80E9AA08 stw r3, 0x0014 (r29) r29 = 91D31440
80E##### stw r3, 0x0014 (r29) r29 = 9#######
80E##### stw r3, 0x0014 (r29) r29 = 9#######
80E##### stw r3, 0x0014 (r29) r29 = 9#######
80E##### stw r3, 0x0014 (r29) r29 = 9#######
What gives?????
If anyone wants to check it out, the quick way to her health is a word search on 000000C8
You’ll get 5** returns.
Take a hit from an enemy and do a decreased value search. You’ll end up with 2 or 3 returns.
It’s pretty obvious which one it is.
Looking forward to your insight!
HW
|
|
|
Hello!!!! |
Posted by: Hackwiz - 12-05-2021, 01:51 PM - Forum: Introductions
- Replies (2)
|
|
First off, thanks for all the awesome tutorials/guides Vega. Reading the programming guide could be a bit perplexing, but your examples on how the commands are used made it easy to understand. At the same time, it made it easier to understand the programming guide as well
I would say that in the last year I have went from mid-beginner to mid-intermediate level in hacking skills.
Also, I haven't really done any hacking on MKWii. I mostly hack on games that have no existing codes.
With that in mind, I hope I am welcome to ask questions about hacking, on games I may be currently working on, (I've got a doosey).
If so, where is the appropriate place to ask?
Glad I found this site to feed my addiction lol.
Btw, brilliant registration system!!!!!
|
|
|
Which Browswer do you use? |
Posted by: Vega - 12-02-2021, 02:03 PM - Forum: General Discussion
- Replies (9)
|
|
I've recently install QuteBrowser and this thing is great with using just hotkeys to navigate thru everything. Super lightweight (can't use heavy shit like firefox and chrome) and can play all my videos on websites that I visit.
What browser do you use?
|
|
|
Press Button To End Bullet Bill [Mrmk] |
Posted by: Shutaura - 11-28-2021, 05:56 PM - Forum: Offline; Item
- No Replies
|
|
Press Button To End Bullet Bill [Mrmk]
Press and hold or press once, then press again after the smoke disappears.
NTSC-U:
028B29D0 00000000
045B1C48 4E800020
2834XXXX YYYYYYYY
045B1C48 9421FFD0
E0000000 80008000
PAL:
028B6828 00000000
0459CC60 4E800020
2834XXXX YYYYYYYY
0459CC60 9421FFD0
E0000000 80008000
NTSC-J:
028B5988 00000000
0459C5E0 4E800020
2834XXXX YYYYYYYY
0459C5E0 9421FFD0
E0000000 80008000
NTSC-K:
028A4CA0 00000000
0458ACB8 4E800020
2833XXXX YYYYYYYY
0458ACB8 9421FFD0
E0000000 80008000
Code Creator: Mrmk
Code Contributor: davidevgen (Bullet Bill Frame Address)
|
|
|
Wii & Dolphin Desync |
Posted by: Jerma - 11-28-2021, 02:38 PM - Forum: Code Support / Help / Requests
- Replies (5)
|
|
Hello, this is quite an important thread regarding Time Trials, most of us know that there's a quite big difference between Dolphin and Wii;
I've been working on the True Expert Staff Ghosts Mode for Riibalanced and i strangely noticed that some Ghost made on Dolphin desynced on Real Hardware & the other way around.
Could someone create a code or tool that fixes this issue in some way? Dolphin usually reads the inputs faster than normal, so there could be a way to slow-down the inputs? (or speed-up the inputs when viewing Ghosts made on Real Hardware via Dolphin)
Video to show the Dolphin & Wii Desync: https://www.youtube.com/watch?v=SQGtSTx-UzQ
I would appreciate a lot any help with this situation
|
|
|
Battle Scorestreaks [Shutaura] |
Posted by: Shutaura - 11-28-2021, 12:30 PM - Forum: Time Trials & Battle
- Replies (4)
|
|
Battle Scorestreaks [Shutaura]
Tested offline.
Features:
- This code will give a player items based on your battle score.
- If you have any item, it will not be granted until that item is used. (However, if your battle score changes, you will not receive the item even if you use)
- Works Offline and Online only for the player (When used online, it must be run by everyone in the room)
Items:
Balloon
- 5 pts: Star*
- 10 pts: Mega*
- 15 pts: Lightning*
- 20 pts: Blue Shell
- 25 pts: Bob-omb
- 30 pts: Fake Item Box
- 35 pts: Red Shell
Coin
- 10 pts: Mega*
- 20 pts: Star*
- 30 pts: Blue Shell
- 40 pts: Lightning
- 45 pts: Bob-omb
- 50 pts: Fake Item Box
- 55 pts: Red Shell
* For first place, you get a mushroom instead.
NOTE: Uses EVA of 16 bits from 0x800001B0. If you want to change address, replace 8000 and 01B0 in line 10.
Code Creator: Shutaura
Code Contributor: Seeky (https://git.io/mkw-struct), Mrmk (for optimization)
NTSC-U:
C0000000 00000031
3D80809C 816CEE20
2C0B0000 41820178
814C8F68 892A0B84
1CA90248 1D290004
816B0014 7D6B2A14
806B008C 2C030014
40820154 818C8F70
806C0020 2C030000
3CA08000 60A501B0
41820114 800A0B78
814C000C 7D4A482E
892A0020 A14A0022
89850000 7C0C5040
40A00008 99450000
39800005 7C6A63D6
7C6361D6 7C635050
2C030000 40A20100
2C000001 88650001
7C035214 41820048
2C000005 41820050
2C00000B 4182003C
2C000011 39800008
418200B4 2C000017
41820040 2C00001D
41820050 2C000023
41820088 2C000029
386000FE 41820054
480000AC 2C00000A
3980000B 41820080
2C000015 39800009
41820074 2C000020
39800007 41820074
2C00002B 39800008
41820068 2C000031
39800006 4182005C
2C000037 3980000D
41820050 2C00003D
39800001 41820044
2C000043 39800000
41820038 2C000049
39800002 4182002C
2C00004F 386000FE
39800003 4182001C
4800002C 98650000
48000020 2C090001
40A20008 39800004
918B008C 39800001
918B0090 38630001
98650001 4E800020
PAL:
C0000000 00000031
3D80809C 816C3618
2C0B0000 41820178
814CD728 892A0B84
1CA90248 1D290004
816B0014 7D6B2A14
806B008C 2C030014
40820154 818CD730
806C0020 2C030000
3CA08000 60A501B0
41820114 800A0B78
814C000C 7D4A482E
892A0020 A14A0022
89850000 7C0C5040
40A00008 99450000
39800005 7C6A63D6
7C6361D6 7C635050
2C030000 40A20100
2C000001 88650001
7C035214 41820048
2C000005 41820050
2C00000B 4182003C
2C000011 39800008
418200B4 2C000017
41820040 2C00001D
41820050 2C000023
41820088 2C000029
386000FE 41820054
480000AC 2C00000A
3980000B 41820080
2C000015 39800009
41820074 2C000020
39800007 41820074
2C00002B 39800008
41820068 2C000031
39800006 4182005C
2C000037 3980000D
41820050 2C00003D
39800001 41820044
2C000043 39800000
41820038 2C000049
39800002 4182002C
2C00004F 386000FE
39800003 4182001C
4800002C 98650000
48000020 2C090001
40A20008 39800004
918B008C 39800001
918B0090 38630001
98650001 4E800020
NTSC-J:
C0000000 00000031
3D80809C 816C2678
2C0B0000 41820178
814CC788 892A0B84
1CA90248 1D290004
816B0014 7D6B2A14
806B008C 2C030014
40820154 818CC790
806C0020 2C030000
3CA08000 60A501B0
41820114 800A0B78
814C000C 7D4A482E
892A0020 A14A0022
89850000 7C0C5040
40A00008 99450000
39800005 7C6A63D6
7C6361D6 7C635050
2C030000 40A20100
2C000001 88650001
7C035214 41820048
2C000005 41820050
2C00000B 4182003C
2C000011 39800008
418200B4 2C000017
41820040 2C00001D
41820050 2C000023
41820088 2C000029
386000FE 41820054
480000AC 2C00000A
3980000B 41820080
2C000015 39800009
41820074 2C000020
39800007 41820074
2C00002B 39800008
41820068 2C000031
39800006 4182005C
2C000037 3980000D
41820050 2C00003D
39800001 41820044
2C000043 39800000
41820038 2C000049
39800002 4182002C
2C00004F 386000FE
39800003 4182001C
4800002C 98650000
48000020 2C090001
40A20008 39800004
918B008C 39800001
918B0090 38630001
98650001 4E800020
NTSC-K:
C0000000 00000031
3D80809B 816C1C58
2C0B0000 41820178
814CBD68 892A0B84
1CA90248 1D290004
816B0014 7D6B2A14
806B008C 2C030014
40820154 818CBD70
806C0020 2C030000
3CA08000 60A501B0
41820114 800A0B78
814C000C 7D4A482E
892A0020 A14A0022
89850000 7C0C5040
40A00008 99450000
39800005 7C6A63D6
7C6361D6 7C635050
2C030000 40A20100
2C000001 88650001
7C035214 41820048
2C000005 41820050
2C00000B 4182003C
2C000011 39800008
418200B4 2C000017
41820040 2C00001D
41820050 2C000023
41820088 2C000029
386000FE 41820054
480000AC 2C00000A
3980000B 41820080
2C000015 39800009
41820074 2C000020
39800007 41820074
2C00002B 39800008
41820068 2C000031
39800006 4182005C
2C000037 3980000D
41820050 2C00003D
39800001 41820044
2C000043 39800000
41820038 2C000049
39800002 4182002C
2C00004F 386000FE
39800003 4182001C
4800002C 98650000
48000020 2C090001
40A20008 39800004
918B008C 39800001
918B0090 38630001
98650001 4E800020
|
|
|
|