I have this function (4F314A) on IDA that I like to understand when / if will call:
I like to add a breakpoint to cheat engine and I have used this code:
debugProcess() -- Attach Debugger to the process.
function debugger_onBreakpoint()
print("hello hacking")
return 0 --Break
end
myaddress=getAddress("battlezone2.exe")+0x4F314A
debug_setBreakpoint(myaddress); -- Address where to set breakpoint
but don't do nothing and I don't sure if is correct.
Is this the right way to add a breakpoint to cheat engine to see if a assembly function will call ?
Thanks !