In order to code no migrate codes for Black Ops Wii I recently figured out how to get the host pointers to both of his player data sections without using any name comparisons. The code is here: http://www.bullywiihacks.com/t4380-
It works by copying both host pointers to address
If you apply the code and play an online match as host check out these addresses in the memory viewer. It'll look similar to this:
In this example,
How do you use this now?
Let's say you found
The n00b way of doing it would be writing
Instead you proceed to subtract the value from address 80001680 or 80001684 from your address depending on which one is closer to your address. 80AAF800 is closer to 80AAF84C than 9346B320 so in our example we calculate
The following would be the finished pointer code:
Enjoy coding no migrate codes and don't be a n00b ignoring the fact that player specific codes migrate. It's not even that hard to convert into pointer like seen.
It works by copying both host pointers to address
- Code:
80001680
- Code:
80001684
If you apply the code and play an online match as host check out these addresses in the memory viewer. It'll look similar to this:
In this example,
- Code:
80AAF800
- Code:
9346B320
How do you use this now?
Let's say you found
- Code:
80AAF84C
The n00b way of doing it would be writing
- Code:
201D6324 FFFFFFFA
04AAF84C 12345678
E0000000 80008000
Instead you proceed to subtract the value from address 80001680 or 80001684 from your address depending on which one is closer to your address. 80AAF800 is closer to 80AAF84C than 9346B320 so in our example we calculate
- Code:
80AAF84C - 80AAF800 = 4C
The following would be the finished pointer code:
- Code:
201D6324 FFFFFFFA
48000000 80001680 # Use pointer from address 80001680
DE000000 80008180 # Make sure pointer exists before using it
1400004C 12345678 # Write value to pointer address + offset
E0000000 80008000
- Code:
10
Enjoy coding no migrate codes and don't be a n00b ignoring the fact that player specific codes migrate. It's not even that hard to convert into pointer like seen.