WiiRd forum

Wii & Gamecube Hacking => WiiRD Remote Debugger => Topic started by: Panda On Smack on November 07, 2008, 05:00:53 PM

Title: Button Activator not working
Post by: Panda On Smack on November 07, 2008, 05:00:53 PM
Hi people

I've made a few button activator codes before but for Fifa 09 it doesn't seem to work. I have an address that I can see the value changing when I press buttons and back to 0 when no buttons are pressed

When i hook this up with a code though it doesn't work. I'm using a classic controller, is this a problem?

I know my codes work as I use them all the time

Any thoughts?

28AC59D8 00002400
04B0B484 00000000
04B127D8 00000002

Have also tried DBFF2400

As soon as I turn the 28 line off I see the code kick in but pressing the buttons it looks for doesn't work

ta
Title: Re: Button Activator not working
Post by: mdmwii on November 07, 2008, 11:04:17 PM
Quote from: Panda On Smack on November 07, 2008, 05:00:53 PM
28AC59D8 00002400
04B0B484 00000000
04B127D8 00000002

It's 'L' button and '+' button pressed at the same time, right?
Title: Re: Button Activator not working
Post by: g6flavor on November 08, 2008, 07:12:25 AM
try adding E0000000 80008000 to the end of the code
Title: Re: Button Activator not working
Post by: Romaap on November 08, 2008, 09:12:09 AM
the code doesn't change the base adress or the pointer offset so E0000000 80008000 is not nescesery.
correct me if I'm wrong.
Title: Re: Button Activator not working
Post by: lindtec on November 08, 2008, 11:11:05 AM
From the codetypelist:
"CST0 : Full Terminator
E0000000 XXXXYYYY : full terminator
It clears the code execution status."

I think it is something like an Endif, that ends a comparison (like the 28AC59D8 00002400 used here).
Title: Re: Button Activator not working
Post by: Panda On Smack on November 08, 2008, 01:46:13 PM
I forgot to say i've tried adding E0000000 80008000 but still no joy

I'm using a classic controller so the combination is ZL + ZR on top of the pad

It's almost like FIFA has complete right over the button presses and they cant be read
Title: Re: Button Activator not working
Post by: Romaap on November 08, 2008, 02:11:53 PM
have you tried an wiimote button activator?
Title: Re: Button Activator not working
Post by: mdmwii on November 08, 2008, 03:44:24 PM
Try this:

28AC59D8 00002400
e2000001 00000000
04B0B484 00000000
04B127D8 00000002

If no dice:

Memory address is wrong or Button activator is wrong. Try with memory viewer on that location with 'Auto Update' option enabled to see which code comes out.
Title: Re: Button Activator not working
Post by: Panda On Smack on November 08, 2008, 04:06:22 PM
Thanks mdmwii, i will try that but it is the correct address as I always use the auto-update feature to see how the address changea and i can see it flicking between 00000000 and the number of the button as press things.

i got 00002400 as the button values from using the auto update feature

ta
Title: Re: Button Activator not working
Post by: g6flavor on November 08, 2008, 07:50:52 PM
Are you sure that button address is 28AC59D8 not 28AC59DA ??
And for any kind of IF code u use, you need to end it with E0000000 80008000
Title: Re: Button Activator not working
Post by: Panda On Smack on November 08, 2008, 07:54:11 PM
You know what

I'm using 28 which is 16 bit check, I think I need a 32bit which is 20!

what a tit, will try it out

Thanks people