WWE 2K22

Upload your cheat tables here (No requests)
rjhelms84
Novice Cheater
Novice Cheater
Posts: 22
Joined: Tue Mar 29, 2022 12:00 pm
Reputation: 9

Re: WWE 2K22

Post by rjhelms84 »

Just remember guys, for old hbk and mankind and others, you need to do this too:

You need to grab the 'Unlocks All.CEM' file uploaded by Mike on page 17 here: viewtopic.php?f=4&t=19439&start=240

and open it in Hex Editor (if you dont have a hex editor, download HxD, you can google it), and select all and copy to clipboard. Then in cheat engine, navigate to the address: 90 81 B4 00 00 00 00 00

Then you will see the memory region that matches the file, where all the 00 00 00 bits need to be replaced with 01 01 01, which you can do by just pasting mike's code over

Simply right click the first element (the '90') and paste, so you overwrite all the data with the data from mike's file.


You only have to do this once, as the new patch does not undo this.

How to use this cheat table?
  1. Install Cheat Engine
  2. Double-click the .CT file in order to open it.
  3. Click the PC icon in Cheat Engine in order to select the game process.
  4. Keep the list.
  5. Activate the trainer options by checking boxes or setting values from 0 to 1

rjhelms84
Novice Cheater
Novice Cheater
Posts: 22
Joined: Tue Mar 29, 2022 12:00 pm
Reputation: 9

Re: WWE 2K22

Post by rjhelms84 »

AEKCarlos wrote:
Fri Apr 22, 2022 10:08 am
If I'm not wrong, his AOB is C7 03 D7 01 C7 03 58 0F 00 00 DA 2F CB F4 9D 77 25 92 3C 60 69 E1 F2 FA A7 2D 2D 96 38 08 9D 7B 7F 7D 01 01

What you want me to do is this? 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01

Because I tried it and it didn't work :(
He's trolling you bro. But don't try to unlock DLC characters, their models aren't in the game so no point trying.

AEKCarlos
Cheater
Cheater
Posts: 48
Joined: Thu Mar 24, 2022 6:23 pm
Reputation: 6

Re: WWE 2K22

Post by AEKCarlos »

rjhelms84 wrote:
Fri Apr 22, 2022 11:37 am
AEKCarlos wrote:
Fri Apr 22, 2022 10:08 am
If I'm not wrong, his AOB is C7 03 D7 01 C7 03 58 0F 00 00 DA 2F CB F4 9D 77 25 92 3C 60 69 E1 F2 FA A7 2D 2D 96 38 08 9D 7B 7F 7D 01 01

What you want me to do is this? 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01

Because I tried it and it didn't work :(
He's trolling you bro. But don't try to unlock DLC characters, their models aren't in the game so no point trying.
Thanks for the help ;) , people have to understand that not all of us know how to do it

Darkness Muta
Expert Cheater
Expert Cheater
Posts: 73
Joined: Thu Jan 09, 2020 9:48 pm
Reputation: 9

Re: WWE 2K22

Post by Darkness Muta »

rjhelms84 wrote:
Fri Apr 22, 2022 11:24 am
Darkness Muta wrote:
Fri Apr 22, 2022 10:34 am
For Mankind his AOB is

F6 00 8F 00 F6 00 58 0F 00 00 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 32 42 3D 79 00 01

and needs to become

F6 00 8F 00 F6 00 58 0F 00 00 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 32 42 3D 79 01 00

to unlock him as your script pops up an error for me. I can unlock Mankind manually by changing the last 2 sections but I am not sure how to do a lua script that changes the last 2 sections to the correct numbers so if someone knows how to do that it would be useful.
I don't think you need to change the last 2 sections, you just need to change the 00 to 01, but I can't remember what the byte after the unlock byte is now, been a while since I looked, so if you really want to change both the last 2 bytes, then just modify the writeBytes method to this:

writeBytes(tonumber(aobresult, 16) + 34,{0x1, 0x00})

The number 34 in this method refers to the number of bytes after the first byte of the data you searched from, if that is useful.
So this method will start overwriting memory 34 bytes after the starting F6 for mankind. And then with "{0x1, 0x00}" you can write it whatever byte data you want from this point.
Using the info you provided I tried this:

-- Mankind

aobresult = AOBScan("F6 00 8F 00 F6 00 58 0F 00 00 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 32 42 3D 79 00 01");
if (aobresult~=nil) then
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult, 16) + 34,0x01, 0x00)

end

aobresult.destroy()
aobresult=nil
print("unlocked Mankind")
else
print("No results found")
end

and it pops up this error
Error:[string "-- Mankind..."]:9: bad argument #1 to 'tonumber' (string expected, got userdata)

I did have the Unlocks All.cem file already injected as of patch 1.08. I can manually activate Mankind doing the AOB search for F6 00 8F 00 F6 00 58 0F 00 00 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 32 42 3D 79 and then changing 00 01 to 01 00 but I cannot seem to figure out how to automate it with the Lua script update you provided. Just changing the first 00 to 01 does not unlock him that is why I think a lot of the previous posts are having the issue of Mankind not showing up or giving errors.

There are only a couple of guys that seem to be popping up errors when trying to do them via a Lua script, they are Mankind, Mustafa Ali '10 and Ric Flair '91 but they work fine if done manually. Adam Pearce is the last one I cannot figure out since his AOB does not seem to follow the same pattern as the others for the unlock.

MikeNeedsCheats
Expert Cheater
Expert Cheater
Posts: 162
Joined: Wed Apr 19, 2017 2:54 am
Reputation: 61

Re: WWE 2K22

Post by MikeNeedsCheats »

rjhelms84 wrote:
Fri Apr 22, 2022 11:37 am
AEKCarlos wrote:
Fri Apr 22, 2022 10:08 am
If I'm not wrong, his AOB is C7 03 D7 01 C7 03 58 0F 00 00 DA 2F CB F4 9D 77 25 92 3C 60 69 E1 F2 FA A7 2D 2D 96 38 08 9D 7B 7F 7D 01 01

What you want me to do is this? 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01

Because I tried it and it didn't work :(
He's trolling you bro. But don't try to unlock DLC characters, their models aren't in the game so no point trying.
I'm not trolling. you know damn well the models are in. go back to your elitist discord with your denial of the DLC being in.

I previously said I wouldn't help with the DLC stuff, but I don't care. I've always been honest and to call me a liar cause of your PWMods discord just makes me wanna help people more...so

C7 03 D7 01 C7 03 58 0F 00 00 DA 2F CB F4 9D 77 25 92 3C 60 69 E1 F2 FA A7 2D 2D 96 38 08 9D 7B 7F 7D 01 01 0A 0A 00 01

that is the original line

change it to

C7 03 D7 01 C7 03 58 0F 00 00 DA 2F CB F4 9D 77 25 92 3C 60 69 E1 F2 FA A7 2D 2D 96 38 08 9D 7B 7F 7D 01 01 00 00 00 01

then Umaga will be unlocked.

this wouldn't have been shared if I wasn't being called out for "trolling". next time stay in your lane with your elitist discord of people who wanna protect 2K dlc cause they got free copies. FOH.
Darkness Muta wrote:
Fri Apr 22, 2022 2:26 pm
rjhelms84 wrote:
Fri Apr 22, 2022 11:24 am
Darkness Muta wrote:
Fri Apr 22, 2022 10:34 am
For Mankind his AOB is

F6 00 8F 00 F6 00 58 0F 00 00 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 32 42 3D 79 00 01

and needs to become

F6 00 8F 00 F6 00 58 0F 00 00 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 32 42 3D 79 01 00

to unlock him as your script pops up an error for me. I can unlock Mankind manually by changing the last 2 sections but I am not sure how to do a lua script that changes the last 2 sections to the correct numbers so if someone knows how to do that it would be useful.
I don't think you need to change the last 2 sections, you just need to change the 00 to 01, but I can't remember what the byte after the unlock byte is now, been a while since I looked, so if you really want to change both the last 2 bytes, then just modify the writeBytes method to this:

writeBytes(tonumber(aobresult, 16) + 34,{0x1, 0x00})

The number 34 in this method refers to the number of bytes after the first byte of the data you searched from, if that is useful.
So this method will start overwriting memory 34 bytes after the starting F6 for mankind. And then with "{0x1, 0x00}" you can write it whatever byte data you want from this point.
Using the info you provided I tried this:

-- Mankind

aobresult = AOBScan("F6 00 8F 00 F6 00 58 0F 00 00 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 32 42 3D 79 00 01");
if (aobresult~=nil) then
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult, 16) + 34,0x01, 0x00)

end

aobresult.destroy()
aobresult=nil
print("unlocked Mankind")
else
print("No results found")
end

and it pops up this error
Error:[string "-- Mankind..."]:9: bad argument #1 to 'tonumber' (string expected, got userdata)

I did have the Unlocks All.cem file already injected as of patch 1.08. I can manually activate Mankind doing the AOB search for F6 00 8F 00 F6 00 58 0F 00 00 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 32 42 3D 79 and then changing 00 01 to 01 00 but I cannot seem to figure out how to automate it with the Lua script update you provided. Just changing the first 00 to 01 does not unlock him that is why I think a lot of the previous posts are having the issue of Mankind not showing up or giving errors.

There are only a couple of guys that seem to be popping up errors when trying to do them via a Lua script, they are Mankind, Mustafa Ali '10 and Ric Flair '91 but they work fine if done manually. Adam Pearce is the last one I cannot figure out since his AOB does not seem to follow the same pattern as the others for the unlock.
change 03 to 01 for Pierce and he'll show up as a wrestler and not a manager. using my Unlocks file will toggle him as a manager only.
AEKCarlos wrote:
Fri Apr 22, 2022 12:31 pm
rjhelms84 wrote:
Fri Apr 22, 2022 11:37 am
AEKCarlos wrote:
Fri Apr 22, 2022 10:08 am
If I'm not wrong, his AOB is C7 03 D7 01 C7 03 58 0F 00 00 DA 2F CB F4 9D 77 25 92 3C 60 69 E1 F2 FA A7 2D 2D 96 38 08 9D 7B 7F 7D 01 01

What you want me to do is this? 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01

Because I tried it and it didn't work :(
He's trolling you bro. But don't try to unlock DLC characters, their models aren't in the game so no point trying.
Thanks for the help ;) , people have to understand that not all of us know how to do it
I suggest reading my instructions above and ignoring the actual troll who just wants to stop people from getting DLC access.

AEKCarlos
Cheater
Cheater
Posts: 48
Joined: Thu Mar 24, 2022 6:23 pm
Reputation: 6

Re: WWE 2K22

Post by AEKCarlos »

MikeNeedsCheats wrote:
Fri Apr 22, 2022 3:33 pm
rjhelms84 wrote:
Fri Apr 22, 2022 11:37 am
AEKCarlos wrote:
Fri Apr 22, 2022 10:08 am
If I'm not wrong, his AOB is C7 03 D7 01 C7 03 58 0F 00 00 DA 2F CB F4 9D 77 25 92 3C 60 69 E1 F2 FA A7 2D 2D 96 38 08 9D 7B 7F 7D 01 01

What you want me to do is this? 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01

Because I tried it and it didn't work :(
He's trolling you bro. But don't try to unlock DLC characters, their models aren't in the game so no point trying.
I'm not trolling. you know damn well the models are in. go back to your elitist discord with your denial of the DLC being in.

I previously said I wouldn't help with the DLC stuff, but I don't care. I've always been honest and to call me a liar cause of your PWMods discord just makes me wanna help people more...so

C7 03 D7 01 C7 03 58 0F 00 00 DA 2F CB F4 9D 77 25 92 3C 60 69 E1 F2 FA A7 2D 2D 96 38 08 9D 7B 7F 7D 01 01 0A 0A 00 01

that is the original line

change it to

C7 03 D7 01 C7 03 58 0F 00 00 DA 2F CB F4 9D 77 25 92 3C 60 69 E1 F2 FA A7 2D 2D 96 38 08 9D 7B 7F 7D 01 01 00 00 00 01

then Umaga will be unlocked.

this wouldn't have been shared if I wasn't being called out for "trolling". next time stay in your lane with your elitist discord of people who wanna protect 2K dlc cause they got free copies. FOH.
Darkness Muta wrote:
Fri Apr 22, 2022 2:26 pm
rjhelms84 wrote:
Fri Apr 22, 2022 11:24 am


I don't think you need to change the last 2 sections, you just need to change the 00 to 01, but I can't remember what the byte after the unlock byte is now, been a while since I looked, so if you really want to change both the last 2 bytes, then just modify the writeBytes method to this:

writeBytes(tonumber(aobresult, 16) + 34,{0x1, 0x00})

The number 34 in this method refers to the number of bytes after the first byte of the data you searched from, if that is useful.
So this method will start overwriting memory 34 bytes after the starting F6 for mankind. And then with "{0x1, 0x00}" you can write it whatever byte data you want from this point.
Using the info you provided I tried this:

-- Mankind

aobresult = AOBScan("F6 00 8F 00 F6 00 58 0F 00 00 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 32 42 3D 79 00 01");
if (aobresult~=nil) then
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult, 16) + 34,0x01, 0x00)

end

aobresult.destroy()
aobresult=nil
print("unlocked Mankind")
else
print("No results found")
end

and it pops up this error
Error:[string "-- Mankind..."]:9: bad argument #1 to 'tonumber' (string expected, got userdata)

I did have the Unlocks All.cem file already injected as of patch 1.08. I can manually activate Mankind doing the AOB search for F6 00 8F 00 F6 00 58 0F 00 00 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 C6 3A 74 95 32 42 3D 79 and then changing 00 01 to 01 00 but I cannot seem to figure out how to automate it with the Lua script update you provided. Just changing the first 00 to 01 does not unlock him that is why I think a lot of the previous posts are having the issue of Mankind not showing up or giving errors.

There are only a couple of guys that seem to be popping up errors when trying to do them via a Lua script, they are Mankind, Mustafa Ali '10 and Ric Flair '91 but they work fine if done manually. Adam Pearce is the last one I cannot figure out since his AOB does not seem to follow the same pattern as the others for the unlock.
change 03 to 01 for Pierce and he'll show up as a wrestler and not a manager. using my Unlocks file will toggle him as a manager only.
AEKCarlos wrote:
Fri Apr 22, 2022 12:31 pm
rjhelms84 wrote:
Fri Apr 22, 2022 11:37 am


He's trolling you bro. But don't try to unlock DLC characters, their models aren't in the game so no point trying.
Thanks for the help ;) , people have to understand that not all of us know how to do it
I suggest reading my instructions above and ignoring the actual troll who just wants to stop people from getting DLC access.
I really appreciate this, thanks!

rikkai
Expert Cheater
Expert Cheater
Posts: 132
Joined: Tue Jan 29, 2019 9:42 am
Reputation: 15

Re: WWE 2K22

Post by rikkai »

thanks !

if it is possible to unlock Vader and Ilja Dragunov at this moment?

MikeNeedsCheats
Expert Cheater
Expert Cheater
Posts: 162
Joined: Wed Apr 19, 2017 2:54 am
Reputation: 61

Re: WWE 2K22

Post by MikeNeedsCheats »

rikkai wrote:
Fri Apr 22, 2022 3:50 pm
thanks !

if it is possible to unlock Vader and Ilja Dragunov at this moment?
I don't think Vader is in the game yet, same with Dragunov. only the first set of DLC coming is in there.

regardless, you can try:

51 01 AD 00 51 01 00 10 00 00 B9 BA DD DE 98 97 E8 2F 5F F5 7F CB 91 6F B1 07 4E 03 2E 22 8E 2A 6F 5F 01 01 14 14 00 04

to

51 01 AD 00 51 01 00 10 00 00 B9 BA DD DE 98 97 E8 2F 5F F5 7F CB 91 6F B1 07 4E 03 2E 22 8E 2A 6F 5F 01 01 00 00 00 04

for Vader

and

CB 03 DB 01 CB 03 49 0E 00 00 45 50 C8 C1 02 08 26 A7 A3 1F 6A D4 6D 85 A4 18 B2 E9 3B 3D 72 C0 7A 40 01 01 14 14 00 01

to

CB 03 DB 01 CB 03 49 0E 00 00 45 50 C8 C1 02 08 26 A7 A3 1F 6A D4 6D 85 A4 18 B2 E9 3B 3D 72 C0 7A 40 01 01 00 00 00 01

for Dragunov

rikkai
Expert Cheater
Expert Cheater
Posts: 132
Joined: Tue Jan 29, 2019 9:42 am
Reputation: 15

Re: WWE 2K22

Post by rikkai »

thank you again ~

you are right game crash then...

MikeNeedsCheats
Expert Cheater
Expert Cheater
Posts: 162
Joined: Wed Apr 19, 2017 2:54 am
Reputation: 61

Re: WWE 2K22

Post by MikeNeedsCheats »

rikkai wrote:
Fri Apr 22, 2022 3:59 pm
thank you again ~

you are right game crash then...
figured as much. movesets might be in for them if you wanna grab CAWs of them and go from there. for what it is worth, when DLC comes out, it'll be in game a week or two before most of the time. so you can always unlock them early.

rikkai
Expert Cheater
Expert Cheater
Posts: 132
Joined: Tue Jan 29, 2019 9:42 am
Reputation: 15

Re: WWE 2K22

Post by rikkai »

MikeNeedsCheats wrote:
Fri Apr 22, 2022 4:07 pm
rikkai wrote:
Fri Apr 22, 2022 3:59 pm
thank you again ~

you are right game crash then...
figured as much. movesets might be in for them if you wanna grab CAWs of them and go from there. for what it is worth, when DLC comes out, it'll be in game a week or two before most of the time. so you can always unlock them early.
i understand now
thanks a lot

Synergi
Expert Cheater
Expert Cheater
Posts: 59
Joined: Wed Mar 16, 2022 6:31 am
Reputation: 5

Re: WWE 2K22

Post by Synergi »

For the guys a cracked version:
[Link]

Now all you have to do is modify the AOB address i.e., change the 00 byte to 01. You'll get DLC guys and all that. Mind you guys like La Knight and Hurricane have a placeholder image at the moment and not actual moves and stuff like that.

krunex
What is cheating?
What is cheating?
Posts: 3
Joined: Fri Apr 22, 2022 7:44 pm
Reputation: 1

Re: WWE 2K22

Post by krunex »

I don't know if this has already been answered and it's nice to get the AOBs, but what is the process of getting them? Or how do we look for them if we wanted to for a completely new or hidden character without knowing their IDs? Like the newly added myFaction Roman Reigns and so on. I am trying to get into modding this year, and I have been messing with Cheat Engine fairly recently, it's been good and would like to know more really.

pancakescream
Novice Cheater
Novice Cheater
Posts: 21
Joined: Fri Apr 22, 2022 8:18 pm
Reputation: 9

Re: WWE 2K22

Post by pancakescream »

rjhelms84 wrote:
Fri Apr 22, 2022 11:37 am
AEKCarlos wrote:
Fri Apr 22, 2022 10:08 am
If I'm not wrong, his AOB is C7 03 D7 01 C7 03 58 0F 00 00 DA 2F CB F4 9D 77 25 92 3C 60 69 E1 F2 FA A7 2D 2D 96 38 08 9D 7B 7F 7D 01 01

What you want me to do is this? 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01

Because I tried it and it didn't work :(
He's trolling you bro. But don't try to unlock DLC characters, their models aren't in the game so no point trying.
I don't know about Mike's method, I'm sure it does work, but the DLC are definitely in already as I've unlocked them early. I'd give a LUA script, but not sure giving the DLC out for free is against the rules or something. So I rather not risk it.

WeGoku
Expert Cheater
Expert Cheater
Posts: 101
Joined: Fri Apr 22, 2022 9:25 pm
Reputation: 12

Re: WWE 2K22

Post by WeGoku »

I did mikes unlock all method for both universe save one and my play. Now everytime I load up universe the rock is above aj styles without his name in the superstar menu.If I try to use him the game crashes during his entrance. Is there anyway I can fix this. Cab someone give me his aob. This is bald rock by the way, not 98 rock.

Post Reply

Who is online

Users browsing this forum: admantx, alx_on, Truhel