Step 1: Attach Cheat Engine to CarX Street
Step 2: Search for this Array of Bytes (Hex)
Code: Select all
33 1F E8 48 DE 01 00
Code: Select all
xor ebx,[rdi]
Step 5: In the Auto Assemble window, select Template > AoB Injection
Step 6: Once the code window pops up, comment out the xor ebx,[rdi], and assign to current cheat table
Step 7: !!!IMPORTANT!!! Set a hotkey to enable/disable the script - This is necessary, because if the script is enabled for more than 2 seconds things get really weird, and the game will crash
Step 8: Enable the script for NO MORE THAN 2 SECONDS, then disable it - If you did everything correctly, your credits and gold will be insanely high, and you will be at level 150, giving you access to most high-end parts and cars
Script should look like this:
Code: Select all
[ENABLE]
aobscanmodule(statboost,GameAssembly.dll,33 1F E8 48 DE 01 00) // should be unique
alloc(newmem,$100,statboost)
label(code)
label(return)
newmem:
code:
//xor ebx,[rdi]
call GameAssembly.dll+AB6CE0
jmp return
statboost:
jmp newmem
nop 2
return:
registersymbol(statboost)
[DISABLE]
statboost:
db 33 1F E8 48 DE 01 00
unregistersymbol(statboost)
dealloc(newmem)