CarX Street (v1.2.x) - Cash / Gold / Level Hack
Posted: Sun Nov 17, 2024 9:05 pm
After spending DAYS trying to find the addresses for credits, gold, etc, and crashing my game constantly, I did manage to figure out a way to get to level 150 (Which unlocks almost everything) and gain large amounts of credits and gold. Keep in mind that after applying this hack your level will be maxxed out, so you will no longer get any bonuses for clearing levels.
Step 1: Attach Cheat Engine to CarX Street
Step 2: Search for this Array of Bytes (Hex)
Step 3: Open Disassembler on the found AoB - The op code should be
Step 4: With the op code highlighted in the Disassembler, go to Tools > Auto Assemble
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:
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)