If you know how. Please add option to disable Auto Holstering of weapons. Sprinting/running feels much better with weapon drawn. I want to run around with weapon drawn.
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
If you know how. Please add option to disable Auto Holstering of weapons. Sprinting/running feels much better with weapon drawn. I want to run around with weapon drawn.
I'll add this in my next table but for now you can add this to your own
[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
aobscanmodule(HolsterWeaponTimer,RDR.exe,F3 0F 11 87 E0 03 00 00 E8) // should be unique
alloc(newmem,$1000,HolsterWeaponTimer)
label(code)
label(return)
newmem:
code:
//movss [rdi+000003E0],xmm0
jmp return
HolsterWeaponTimer:
jmp newmem
nop 3
return:
registersymbol(HolsterWeaponTimer)
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
HolsterWeaponTimer:
db F3 0F 11 87 E0 03 00 00
unregistersymbol(*)
dealloc(*)