WWE 2K22

Upload your cheat tables here (No requests)
HeziTheGreat
Cheater
Cheater
Posts: 25
Joined: Sun Apr 10, 2022 7:51 am
Reputation: 3

Re: WWE 2K22

Post by HeziTheGreat »

qdavis224 wrote:
Sat Apr 23, 2022 10:12 am
This is Farooq'98's AOB
31 01 A3 00 AD 03 58 0F 00 00 D7 62 01 0B F6 4F 34 FA 31 2D A3 1E FF B7 6D D2 20 DB F2 F7 9D 7B 7F 7D 00
I change the 00 to 01 to make him playable in play mode only, not universe. When I go into universe it says purchase.
Can someone please help me in what to do to make playable in universe mode please? Thank you.
When you search any AOB the second result is always the first universe save slot pofo data

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

HeziTheGreat
Cheater
Cheater
Posts: 25
Joined: Sun Apr 10, 2022 7:51 am
Reputation: 3

Re: WWE 2K22

Post by HeziTheGreat »

Darkness Muta wrote:
Sat Apr 23, 2022 3:07 am
rjhelms84 wrote:
Sat Apr 23, 2022 2:13 am

You missed the curly brackets in the writeBytes method. Needs to be like this: writeBytes(tonumber(aobresult, 16) + 34,{0x1, 0x00})

This could be why you got the script error
What is the difference between {0x1, 0x00} or 0x1, 0x00 or 0x01, 0x00 for that section as I am trying to learn more about how to do these Lua scripts for the future but I did try what you wrote first and it popped the same error shown below so I tried a few other methods without the brackets like I posted in the other post but they all end up giving this error:
Results found: 5
Error:[string "-- Mankind..."]:9: bad argument #1 to 'tonumber' (string expected, got userdata)

Mankind, Mustafa Ali '10 and Ric Flair '91 all have the same error but I can activate them all manually with the AOB search so I am not sure what is happening with these 3 wrestlers as a Lua script as I got like 20 other wrestlers to unlock via the Lua scripts.

Code: Select all

You're missing the [i] in writeBytes(tonumber(aobresult[i], 16) + 34,{0x1, 0x00})
here is an updated mankind lua script

Code: Select all

-- mankind
local 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");
if (aobresult~=nil) then   
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

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

end

aobresult.destroy()
aobresult=nil
print("unlocked mankind")
else
print("No results found")
end
For anyone helping out with Lua scripts. when you post them on these forums you have to use the

Code: Select all

[code.][./code] remove periods 
tabs for it to show correctly.
Last edited by HeziTheGreat on Sat Apr 23, 2022 2:27 pm, edited 2 times in total.

JTheKax
Noobzor
Noobzor
Posts: 12
Joined: Mon Apr 04, 2022 12:27 pm
Reputation: 2

Re: WWE 2K22

Post by JTheKax »

anyone got the codes for Yokozuna, Omos, Kacy and Rikishi?

HeziTheGreat
Cheater
Cheater
Posts: 25
Joined: Sun Apr 10, 2022 7:51 am
Reputation: 3

Re: WWE 2K22

Post by HeziTheGreat »

If you have a retail copy of the game you can just use cream api (google helps i wont give out links) to unlock all dlc since its already built into the game. This wont unlock them early but when they officially come out you won't have to keep executing scripts and youll get all other + future dlc as well.

I believe after this year though with cross platform community creations kinda ruining their plans they are gonna have alot less things kept in the files in the future or axe PC from CC

HeziTheGreat
Cheater
Cheater
Posts: 25
Joined: Sun Apr 10, 2022 7:51 am
Reputation: 3

Re: WWE 2K22

Post by HeziTheGreat »

Yokozuna
Dijakovic
HBK '97
Mankind
Farooq '98

Code: Select all

-- yokozuna

local aobresult = AOBScan("C6 03 D6 01 C6 03 C1 0F 00 00 D9 AC A0 06 9E F4 4E 60 3F E3 02 13 F1 79 CC DF 2E 15 53 FA 9D 7B 7F 7D 01");
if (aobresult~=nil) then 
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 35,0x0)

end

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

-- Dijakovic

local aobresult = AOBScan("96 03 A6 01 96 03 53 10 00 00 BB DA B5 D0 9A F7 80 21 5D 95 17 C5 93 0F D9 09 4C 63 46 2C 8C 4A 07 51 00");
if (aobresult~=nil) then   
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- mankind
local 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");
if (aobresult~=nil) then   
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

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

end

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

-- hbk 97

local aobresult = AOBScan("91 00 79 00 6D 01 1A 0F 00 00 06 51 E4 0A 27 7C D1 FB E0 1E 46 1F 2E 84 88 D3 F1 E8 17 F6 31 C1 56 8B 00");
if (aobresult~=nil) then   
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- farooq 98

local aobresult = AOBScan("31 01 A3 00 AD 03 58 0F 00 00 D7 62 01 0B F6 4F 34 FA 31 2D A3 1E FF B7 6D D2 20 DB F2 F7 9D 7B 7F 7D 00");
if (aobresult~=nil) then   
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

aobresult.destroy()
aobresult=nil
print("unlocked farooq 98")
else
print("No results found")
end
Last edited by HeziTheGreat on Sat Apr 23, 2022 3:32 pm, edited 1 time in total.

JTheKax
Noobzor
Noobzor
Posts: 12
Joined: Mon Apr 04, 2022 12:27 pm
Reputation: 2

Re: WWE 2K22

Post by JTheKax »

ok now just need the ones for Omos, Rikishi and Kacy Catanzaro

HeziTheGreat
Cheater
Cheater
Posts: 25
Joined: Sun Apr 10, 2022 7:51 am
Reputation: 3

Re: WWE 2K22

Post by HeziTheGreat »

I've made codes for all of the ones I use in my universe mode now so this is my last batch. I won't be taking requests I'm sorry. If you search through the thread you should be able to piece together the info needed.

The Rock '98
The Godfather
Alexa '19
Nikki Cross '19
Triple H '98

Code: Select all

-- rock 98

local aobresult = AOBScan("58 01 AE 00 64 00 00 10 00 00 08 80 E0 B7 29 AD D5 46 EE CF 42 A2 20 55 8C 6E FF 39 13 4B 3F 10 52 36 00");
if (aobresult~=nil) then   
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- godfather 

local aobresult = AOBScan("3C 01 A6 00 3C 01 29 10 00 00 54 09 F3 0B 75 24 C6 FA B2 46 51 1E 7C DC 9F D2 A3 B0 00 F7 9D 7B 7F 7D 00");
if (aobresult~=nil) then   
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- alexa

local aobresult = AOBScan("B1 03 C1 01 6C 02 0F 0D 00 00 C3 6F B5 32 60 5D 1F D3 25 20 17 27 69 A5 46 FB B6 C9 D9 DE 76 E0 98 A3 00");
if (aobresult~=nil) then  
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- nikki cross

aobresult = AOBScan("BA 02 32 01 57 03 0F 0D 00 00 E8 1B EE 67 E8 1B EE 67 E8 1B EE 67 E8 1B EE 67 E8 1B EE 67 98 D3 B2 80 00");
if (aobresult~=nil) then
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- triple h 98

aobresult = AOBScan("66 01 B2 00 66 00 C1 0F 00 00 AF D7 01 E9 8E FA 34 18 49 98 A3 FC 87 02 6D 30 58 6E F2 15 98 47 B3 68 00");
if (aobresult~=nil) then
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

qdavis224
Noobzor
Noobzor
Posts: 10
Joined: Sat Apr 23, 2022 3:19 am
Reputation: 0

Re: WWE 2K22

Post by qdavis224 »

HeziTheGreat wrote:
Sat Apr 23, 2022 2:18 pm
qdavis224 wrote:
Sat Apr 23, 2022 10:12 am
This is Farooq'98's AOB
31 01 A3 00 AD 03 58 0F 00 00 D7 62 01 0B F6 4F 34 FA 31 2D A3 1E FF B7 6D D2 20 DB F2 F7 9D 7B 7F 7D 00
I change the 00 to 01 to make him playable in play mode only, not universe. When I go into universe it says purchase.
Can someone please help me in what to do to make playable in universe mode please? Thank you.
When you search any AOB the second result is always the first universe save slot pofo data
Ok, so after searching for the wrestlers hex, in the address column there are 4 addresses. I browse the memory of the 2nd address. I find Faarooq's Aob and change the 00 to 01 one and it still doesn't give me access to him in the universe mode.

JTheKax
Noobzor
Noobzor
Posts: 12
Joined: Mon Apr 04, 2022 12:27 pm
Reputation: 2

Re: WWE 2K22

Post by JTheKax »

anyone got AOB for Rikishi, Omos and Kacy

qdavis224
Noobzor
Noobzor
Posts: 10
Joined: Sat Apr 23, 2022 3:19 am
Reputation: 0

Re: WWE 2K22

Post by qdavis224 »

HeziTheGreat wrote:
Sat Apr 23, 2022 3:14 pm
I've made codes for all of the ones I use in my universe mode now so this is my last batch. I won't be taking requests I'm sorry. If you search through the thread you should be able to piece together the info needed.

The Rock '98
The Godfather
Alexa '19
Nikki Cross '19
Triple H '98

Code: Select all

-- rock 98

local aobresult = AOBScan("58 01 AE 00 64 00 00 10 00 00 08 80 E0 B7 29 AD D5 46 EE CF 42 A2 20 55 8C 6E FF 39 13 4B 3F 10 52 36 00");
if (aobresult~=nil) then   
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- godfather 

local aobresult = AOBScan("3C 01 A6 00 3C 01 29 10 00 00 54 09 F3 0B 75 24 C6 FA B2 46 51 1E 7C DC 9F D2 A3 B0 00 F7 9D 7B 7F 7D 00");
if (aobresult~=nil) then   
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- alexa

local aobresult = AOBScan("B1 03 C1 01 6C 02 0F 0D 00 00 C3 6F B5 32 60 5D 1F D3 25 20 17 27 69 A5 46 FB B6 C9 D9 DE 76 E0 98 A3 00");
if (aobresult~=nil) then  
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- nikki cross

aobresult = AOBScan("BA 02 32 01 57 03 0F 0D 00 00 E8 1B EE 67 E8 1B EE 67 E8 1B EE 67 E8 1B EE 67 E8 1B EE 67 98 D3 B2 80 00");
if (aobresult~=nil) then
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- triple h 98

aobresult = AOBScan("66 01 B2 00 66 00 C1 0F 00 00 AF D7 01 E9 8E FA 34 18 49 98 A3 FC 87 02 6D 30 58 6E F2 15 98 47 B3 68 00");
if (aobresult~=nil) then
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

aobresult.destroy()
aobresult=nil
print("unlocked triple h")
else
print("No results found")
end
I used this script and still cannot get triple h 98, godfather and the rock 98 into my universe. It still takes me to purchase screen. Any help is greatly appreciated.

HeziTheGreat
Cheater
Cheater
Posts: 25
Joined: Sun Apr 10, 2022 7:51 am
Reputation: 3

Re: WWE 2K22

Post by HeziTheGreat »

qdavis224 wrote:
Sat Apr 23, 2022 6:24 pm
HeziTheGreat wrote:
Sat Apr 23, 2022 3:14 pm
I've made codes for all of the ones I use in my universe mode now so this is my last batch. I won't be taking requests I'm sorry. If you search through the thread you should be able to piece together the info needed.

The Rock '98
The Godfather
Alexa '19
Nikki Cross '19
Triple H '98

Code: Select all

-- rock 98

local aobresult = AOBScan("58 01 AE 00 64 00 00 10 00 00 08 80 E0 B7 29 AD D5 46 EE CF 42 A2 20 55 8C 6E FF 39 13 4B 3F 10 52 36 00");
if (aobresult~=nil) then   
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- godfather 

local aobresult = AOBScan("3C 01 A6 00 3C 01 29 10 00 00 54 09 F3 0B 75 24 C6 FA B2 46 51 1E 7C DC 9F D2 A3 B0 00 F7 9D 7B 7F 7D 00");
if (aobresult~=nil) then   
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- alexa

local aobresult = AOBScan("B1 03 C1 01 6C 02 0F 0D 00 00 C3 6F B5 32 60 5D 1F D3 25 20 17 27 69 A5 46 FB B6 C9 D9 DE 76 E0 98 A3 00");
if (aobresult~=nil) then  
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- nikki cross

aobresult = AOBScan("BA 02 32 01 57 03 0F 0D 00 00 E8 1B EE 67 E8 1B EE 67 E8 1B EE 67 E8 1B EE 67 E8 1B EE 67 98 D3 B2 80 00");
if (aobresult~=nil) then
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- triple h 98

aobresult = AOBScan("66 01 B2 00 66 00 C1 0F 00 00 AF D7 01 E9 8E FA 34 18 49 98 A3 FC 87 02 6D 30 58 6E F2 15 98 47 B3 68 00");
if (aobresult~=nil) then
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

aobresult.destroy()
aobresult=nil
print("unlocked triple h")
else
print("No results found")
end
I used this script and still cannot get triple h 98, godfather and the rock 98 into my universe. It still takes me to purchase screen. Any help is greatly appreciated.
Grab the unlocks all.cem by MikeNeedsCheats download/file.php?id=41046
Then read rjhelms method viewtopic.php?p=245393#p245393
Then my post viewtopic.php?p=245543#p245543

jamesmichaels
Noobzor
Noobzor
Posts: 7
Joined: Sat Mar 26, 2022 1:28 pm
Reputation: 2

Re: WWE 2K22

Post by jamesmichaels »

So it seems they've made it so we have to unlock all the NPCS and such each time we load the game? That's why we are making LUA tables now? If this is the case, is there a way to save the LUA tables on cheat engine so we can click a button and make them all run instead of entering one for each wrestler? I am still noob to cheat engine in that way. Thanks!

WWE_Fanatic3
Expert Cheater
Expert Cheater
Posts: 145
Joined: Fri Apr 22, 2022 1:13 am
Reputation: 9

Re: WWE 2K22

Post by WWE_Fanatic3 »

jamesmichaels wrote:
Sat Apr 23, 2022 7:42 pm
So it seems they've made it so we have to unlock all the NPCS and such each time we load the game? That's why we are making LUA tables now? If this is the case, is there a way to save the LUA tables on cheat engine so we can click a button and make them all run instead of entering one for each wrestler? I am still noob to cheat engine in that way. Thanks!
I just save my changes to a word doc and I copy and paste to the lua script and run it

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

Re: WWE 2K22

Post by AEKCarlos »

Just save the ce table (Ctrl + S) and the lua table will always be there

qdavis224
Noobzor
Noobzor
Posts: 10
Joined: Sat Apr 23, 2022 3:19 am
Reputation: 0

Re: WWE 2K22

Post by qdavis224 »

HeziTheGreat wrote:
Sat Apr 23, 2022 7:03 pm
qdavis224 wrote:
Sat Apr 23, 2022 6:24 pm
HeziTheGreat wrote:
Sat Apr 23, 2022 3:14 pm
I've made codes for all of the ones I use in my universe mode now so this is my last batch. I won't be taking requests I'm sorry. If you search through the thread you should be able to piece together the info needed.

The Rock '98
The Godfather
Alexa '19
Nikki Cross '19
Triple H '98

Code: Select all

-- rock 98

local aobresult = AOBScan("58 01 AE 00 64 00 00 10 00 00 08 80 E0 B7 29 AD D5 46 EE CF 42 A2 20 55 8C 6E FF 39 13 4B 3F 10 52 36 00");
if (aobresult~=nil) then   
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- godfather 

local aobresult = AOBScan("3C 01 A6 00 3C 01 29 10 00 00 54 09 F3 0B 75 24 C6 FA B2 46 51 1E 7C DC 9F D2 A3 B0 00 F7 9D 7B 7F 7D 00");
if (aobresult~=nil) then   
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- alexa

local aobresult = AOBScan("B1 03 C1 01 6C 02 0F 0D 00 00 C3 6F B5 32 60 5D 1F D3 25 20 17 27 69 A5 46 FB B6 C9 D9 DE 76 E0 98 A3 00");
if (aobresult~=nil) then  
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- nikki cross

aobresult = AOBScan("BA 02 32 01 57 03 0F 0D 00 00 E8 1B EE 67 E8 1B EE 67 E8 1B EE 67 E8 1B EE 67 E8 1B EE 67 98 D3 B2 80 00");
if (aobresult~=nil) then
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

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

-- triple h 98

aobresult = AOBScan("66 01 B2 00 66 00 C1 0F 00 00 AF D7 01 E9 8E FA 34 18 49 98 A3 FC 87 02 6D 30 58 6E F2 15 98 47 B3 68 00");
if (aobresult~=nil) then
print("Results found: "..aobresult.Count);

for i=0,aobresult.Count -1 do

writeBytes(tonumber(aobresult[i], 16) + 34,0x01)

end

aobresult.destroy()
aobresult=nil
print("unlocked triple h")
else
print("No results found")
end
I used this script and still cannot get triple h 98, godfather and the rock 98 into my universe. It still takes me to purchase screen. Any help is greatly appreciated.
Grab the unlocks all.cem by MikeNeedsCheats download/file.php?id=41046
Then read rjhelms method viewtopic.php?p=245393#p245393
Then my post viewtopic.php?p=245543#p245543
I've been trying everything for the last two days. I just tried this method and wwe crashes. All I wanted was to play the purchasable wrestlers in universe mode but I cannot get the method to work. I give up, but thanks a lot for your help.

Post Reply

Who is online

Users browsing this forum: Baidu [Spider], coccocbot-web, devilkyori, laseractive, Majestic-12 [Bot], sporeb210, Sprat, TsReal