Posted: Fri Nov 22, 2024 4:54 pm Post subject: extend cheatengine with custom dll
Are there any example on how i can extend cheatengine with my dll?
such as lua functions and have cheatengine load my dll on start into cheatengine itself. Are there any example?
Posted: Fri Nov 22, 2024 8:51 pm Post subject: Re: extend cheatengine with custom dll
tympanicblock61 wrote:
Are there any example on how i can extend cheatengine with my dll?
such as lua functions and have cheatengine load my dll on start into cheatengine itself. Are there any example?
Posted: Sun Nov 24, 2024 5:59 am Post subject: dont need help anymore
added this to autorun and it runs at startup and no process get selected
Code:
local cheatEngine = getCheatEngineProcessID()
openProcess(cheatEngine)
local path = getCheatEngineDir().."autorun\\dlls\\"
if cheatEngineIs64Bit() then
injectDLL(path.."MinHook.x64.dll")
injectDLL(path.."memorydriverCE-64.dll")
else
injectDLL(path.."MinHook.x86.dll")
injectDLL(path.."memorydriverCE-32.dll")
end
MainForm.ProcessLabel.Caption = "No Process Selected"
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum