Hacking Official AocPatcher

  • Thread starter Thread starter Ape8000
  • Start date Start date
  • Views Views 37,223
  • Replies Replies 129
  • Likes Likes 17
well, I'm gonna find it out tomorrow.


so no report on getting SSB on SD to work in this thread yet. update: MasQchips' aocpatcher also doesn't work for me :(
If thats the case the reported format to use is incorrect and must be something else, will look through source to figure out where it goes
(SD:/wiiu/aoc/[Title Id]/[AOC Title]) thats whats stated in common.h, maybe titled id those not contain aoc in the beginning?
YUP THAT WORKED love that noise of unlocked DLC in the morning lol
@Yardape8000 plz update the op to say the directory for Smash DLC is not
SD:/wiiu/aoc/aoc0005000000144F00/aoc0005000c00144F00
but
SD:/wiiu/aoc/0005000000144F00/aoc0005000c00144F00
thks
 
Last edited by KevinX8,
If thats the case the reported format to use is incorrect and must be something else, will look through source to figure out where it goes
(SD:/wiiu/aoc/[Title Id]/[AOC Title]) thats whats stated in common.h, maybe titled id those not contain aoc in the beginning?
YUP THAT WORKED love that noise of unlocked DLC in the morning lol
@Yardape8000 plz update the op to say the directory for Smash DLC is not
SD:/wiiu/aoc/aoc0005000000144F00/aoc0005000c00144F00
but
SD:/wiiu/aoc/0005000000144F00/aoc0005000c00144F00
thks
Actually I tried that but it didn't work for me, my DLC content must be bad, I extracted it from NUS with a key from that key site, is it 123 folders from 0010 to 008a all with "dummy_content.txt" in them?
 
Last edited by JimmyZ,
Actually I tried that but it didn't work for me, my DLC content must be bad, I extracted it from NUS with a key from that key site, is it 123 folders from 0010 to 008a all with "dummy_content.txt" in them?
the text files only contain "dummy content" really emphasing what they are lol twice but yeah as long as they have that in them it should work just fine, you sure you using the correct region + correct build? This also might be related to your wii sports club problem
 
the text files only contain "dummy content" really emphasing what they are lol twice but yeah as long as they have that in them it should work just fine, you sure you using the correct region + correct build? This also might be related to your wii sports club problem

my Wii U is USA, so I copied the path from OP, just noticed the title id of SSB USA is actually 0005000010144f00, the OP said 0005000000144f00, will try immediately :facepalm:

double typo, @Yardape8000 I trusted you!

update: all path(title id)s in the OP are wrong in the same way.

update 2: SSB on SD works for me now
 
Last edited by JimmyZ,
After discovering the wonderful world of iosuhax and sig patches, there isn't much need for aoc patcher nor redNAND as I can just boot a 14MB file every time I want to run fake signed DLC or eshop games :-P I can even modify any file on the system without any problem (with the caveat of code files of title cannot be modified but aoc and content just fine )
 
  • Like
Reactions: Irastris
After discovering the wonderful world of iosuhax and sig patches, there isn't much need for aoc patcher nor redNAND as I can just boot a 14MB file every time I want to run fake signed DLC or eshop games :-P I can even modify any file on the system without any problem (with the caveat of code files of title cannot be modified but aoc and content just fine )
well for the 4 games here, at least aoc patcher boots faster.
 
  • Like
Reactions: NekoVJ18
what are the steps to get this working on Sports club.
I've dumped a save file (something.dat)
put aoc.elf file on sd card. but the aoc file doesn't seem to do anything.
i've got 0010,0011,0012,0013,etc in the injection folder in saviine.
I just don't know what to do
 
what are the steps to get this working on Sports club.
I've dumped a save file (something.dat)
put aoc.elf file on sd card. but the aoc file doesn't seem to do anything.
i've got 0010,0011,0012,0013,etc in the injection folder in saviine.
I just don't know what to do

Putting it in saviine inject folder won't affect your Wii U in a magical way, you need to inject it back using saviine.
 
Not sure what you mean, the descriptions match the code.
I did just wake up though and might be missing something obvious.

Hyrule Warriors
save/8000000X/aoc/aoc0005000c0017d8YY
YY=Hex digits from 10 to 3D (separate folder for each)

Minecraft: Wii U Edition
save/8000000X/aoc/aoc0005000c001D9D00

Super Smash Bros. for Wii U
if SSB_ON_SD = 1
SD:/wiiu/aoc/0005000000144F00/aoc0005000c00144F00
if SSB_ON_SD = 0
save/common/aoc/aoc0005000c00144F00

Wii Sports Club
save/common/aoc/aoc0005000c00144D00

Code:
case HYRULE_WARRIORS :
sprintf(path, "/vol/save/8000000%1x/aoc/aoc0005000c%06x%02x", USER_ID, (u32)((cosAppXmlInfoStruct.title_id >> 8) & 0x00ffffff), 16 + titleNum++);
break;

case SUPER_SMASH_BROS :
#if SSB_ON_SD
sprintf(path, "/vol/aoc0005000c%08x", (u32)(cosAppXmlInfoStruct.title_id & 0xffffffff));
break;
#endif //else use common save

case WII_SPORTS_CLUB :
sprintf(path, "/vol/save/common/aoc/aoc0005000c%08x", (u32)(cosAppXmlInfoStruct.title_id & 0xffffffff));
break;

case MINECRAFT :
sprintf(path, "/vol/save/8000000%1x/aoc/aoc0005000c%08x", USER_ID, (u32)(cosAppXmlInfoStruct.title_id & 0xffffffff));
break;
 
Last edited by Ape8000,
Not sure what you mean, the descriptions match the code.
I did just wake up though and might be missing something obvious.

Hyrule Warriors
save/8000000X/aoc/aoc0005000c0017d8YY
YY
=Hex digits from 10 to 3D (separate folder for each)

Minecraft: Wii U Edition
save/8000000X/aoc/aoc0005000c001D9D00

Super Smash Bros. for Wii U
if SSB_ON_SD = 1
SD:/wiiu/aoc/0005000000144F00/aoc0005000c00144F00
if SSB_ON_SD = 0
save/common/aoc/aoc0005000c00144F00

Wii Sports Club
save/common/aoc/aoc0005000c00144D00

Code:
case HYRULE_WARRIORS :
sprintf(path, "/vol/save/8000000%1x/aoc/aoc0005000c%06x%02x", USER_ID, (u32)((cosAppXmlInfoStruct.title_id >> 8) & 0x00ffffff), 16 + titleNum++);
break;

case SUPER_SMASH_BROS :
#if SSB_ON_SD
sprintf(path, "/vol/aoc0005000c%08x", (u32)(cosAppXmlInfoStruct.title_id & 0xffffffff));
break;
#endif //else use common save

case WII_SPORTS_CLUB :
sprintf(path, "/vol/save/common/aoc/aoc0005000c%08x", (u32)(cosAppXmlInfoStruct.title_id & 0xffffffff));
break;

case MINECRAFT :
sprintf(path, "/vol/save/8000000%1x/aoc/aoc0005000c%08x", USER_ID, (u32)(cosAppXmlInfoStruct.title_id & 0xffffffff));
break;
the title id of SSB USA is actually 0005000010144f00, the OP said 0005000000144f00
 

Site & Scene News

Popular threads in this forum