Forza Horizon 5 ** Mastery Points Multiplier **
Posted: Fri Nov 04, 2022 9:55 pm
I noticed that there wasn't any tables that had any option for the Mastery Points, so I made it my mission to make a script for it!
HOWTO:
1. Create a new 'Cheat Table Framework' script (From disassembler: Tools > Auto Assemble > Template > Cheat Table Framework code)
2. Open created script, and erase all entries (So the script is blank)
3. Paste the following code into the blank script, then click File > Assign to current cheat table
Once activated, no matter how little you earned in a run will be multiplied by whatever the value in script is (Resulting in massive Mastery Points after a few times - Maximum of 999 Mastery Points are allowed).
This has been tested with the Steam version, not sure if it works on others ...
HOWTO:
1. Create a new 'Cheat Table Framework' script (From disassembler: Tools > Auto Assemble > Template > Cheat Table Framework code)
2. Open created script, and erase all entries (So the script is blank)
3. Paste the following code into the blank script, then click File > Assign to current cheat table
Code: Select all
[ENABLE]
aobscanmodule(skills,ForzaHorizon5.exe,41 89 77 18 49 8B CF)
alloc(newmem,$1000,skills)
label(code)
label(return)
newmem:
code:
mov esi,[r15+20]
imul esi,#20 //<-- Change this to whatever you want the multiplier to be (Default here is 20x)
mov [r15+18],esi
mov rcx,r15
jmp return
skills:
jmp newmem
nop 2
return:
registersymbol(skills)
[DISABLE]
skills:
db 41 89 77 18 49 8B CF
unregistersymbol(skills)
dealloc(newmem)
This has been tested with the Steam version, not sure if it works on others ...