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?
Install Cheat Engine
Double-click the .CT file in order to open it.
Click the PC icon in Cheat Engine in order to select the game process.
Keep the list.
Activate the trainer options by checking boxes or setting values from 0 to 1
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.
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
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
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.
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
-- 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.
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
-- 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.
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!
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
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
-- 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.
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.