Button Activator not working

Started by Panda On Smack, November 07, 2008, 05:00:53 PM

Previous topic - Next topic

Panda On Smack

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

mdmwii

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?

g6flavor

try adding E0000000 80008000 to the end of the code

Romaap

the code doesn't change the base adress or the pointer offset so E0000000 80008000 is not nescesery.
correct me if I'm wrong.

lindtec

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).

Panda On Smack

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

Romaap

have you tried an wiimote button activator?

mdmwii

#7
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.

Panda On Smack

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

g6flavor

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

Panda On Smack

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