Hacking Preloader type hacks for uneek?

  • Thread starter Thread starter r3lay
  • Start date Start date
  • Views Views 1,975
  • Replies Replies 12

r3lay

Well-Known Member
Newcomer
Joined
Nov 24, 2008
Messages
86
Reaction score
0
Trophies
1
Location
Uk
XP
131
Country
United States
Is there anyway to get rid of the "Press A to continue" screen when uneek boots up?
 
With s/uneek you can apply the changes to the SM directly because you can see the files on your computer. The logic in this post should give you all the information you need:

http://sifjarsblog.wordpress.com/2009/08/0...ader-hacks-ini/

Somebody wiser than me could quite easily write a computer app to apply patches from hacks.ini to the SM for use in s/uneek. Hint hint
tongue.gif
 
Well it's bassically the same concept as start patch the only difference is instead of applying the patch to the actual Nand it would apply to the emulated nand. Seems it should be a simple task to patch the software to work with S/UNEEK.
 
I patched my real NAND with Startpatch, dumped it and voilà, it worked in UNEEK. Simple as that.
 
You could change the following section (from line number 294) in the code SMenu.c file to add the hack
(replace health screen with backmenu) directly:

Code:
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂcase 482:ÂÂÂÂÂÂ // EUR 4.2
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ{
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ//Disc Region free hack
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ*(u32*)0x0137DC90 = 0x4800001C;
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ*(u32*)0x0137E4E4 = 0x60000000;

ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ//Disc autoboot
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ//*(u32*)0x0137AD5C = 0x48000020;
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ//*(u32*)0x013799A8 = 0x60000000;

ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ//BS2Report
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ//*(u32*)0x137AEC4 = 0x481B22BC;

ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ//Replace Health Screen with Backmenu
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ*(u32*)0x016572B4 = 0x81409D98
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ} break;

I have tried other hacks using this approach on my 4.3U, however, I have not tested this specifically.
Hope that helps.
 
Try adding the following code to lines 300/301 in SMenu.c

Code:
// Auto-Press A at Health Screen
*(u32*)0x013BD620 = 0x48000034;


@conanac

That code should also work
 
OverjoY said:
Try adding the following code to lines 300/301 in SMenu.c

Code:
// Auto-Press A at Health Screen
*(u32*)0x013BD620 = 0x48000034;

Worked nicely, cheers
 

Site & Scene News

Popular threads in this forum