I've made this because it's ridiculous the grind we need to do to get the cars we want online, I want to share this with people.
The idea is basically just searching for the car ID (12789960 for the Bugatti), you should see then a bit above the "items/" string stuff if you don't know the address to pick up.
The "car" structure have a field at + 0x88 which contains the car unlock flags.
If you copy that value and scan for all those values, then you can set all the values that you found from the car unlock flag value to 0 and it will unlock the car.
Happy hacking.
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
<CheatEntries>
<CheatEntry>
<ID>0</ID>
<Description>"Unlock Everything"</Description>
<LastState/>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>[ENABLE]
aobscanmodule(Purchasable,NeedForSpeedUnbound.exe,4D 85 C0 75 03 B0 01 C3 45 8B 50 2C 4C 8D 41)
Purchasable:
mov rax, 1
ret
registersymbol(Purchasable)
[DISABLE]
Purchasable:
db 4D 85 C0 75 03 B0 01 C3 45 8B 50 2C 4C 8D 41
unregistersymbol(Purchasable)
</AssemblerScript>
</CheatEntry>
</CheatEntries>
</CheatTable>