Aha111 How do I cheat?
Reputation: 0
Joined: 16 Mar 2025 Posts: 1
|
Posted: Sun Mar 16, 2025 1:04 pm Post subject: Lua script for disable auto camera center in DSR |
|
|
Hey guys can someone help me to remix this code to make it work in dark souls remastered? Its a lua script for CE to disable auto camera center in ds3 and i want to make it work in DSR as mentioned above. Any help will be good. Im new to coding.
{$lua}
if syntaxcheck then return end
address_version("1.15.0")
{$asm}
[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
define(camHRotateCorrectionAOB,DarkSoulsIII.exe+515F34)
registersymbol(camHRotateCorrectionAOB)
camHRotateCorrectionAOB: //"DarkSoulsIII.exe"+5107F4:
db 90 90 90 90 90 90 90 90
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
camHRotateCorrectionAOB: //"DarkSoulsIII.exe"+5107F4:
db 66 0F 7F A6 40 01 00 00
//Alt: movdqa [rsi+00000140],xmm4
unregistersymbol(camHRotateCorrectionAOB)
|
|