Joined: 09 May 2003 Posts: 25819 Location: The netherlands
Posted: Thu Jan 26, 2017 7:02 am Post subject:
most often the breakpoint is what caused the crash, or is in dynamic allocated memory
i guess you could use lua to enumerate all breakpoints (no idea if i added that function, on my phone atm) on process close and set them on opening a new process. perhaps also check it's the same process _________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping
local breakpoints = debug_getBreakpointList()
if breakpoints then
for i = 1, #breakpoints do
print(string.format("%X", breakpoints[i]))
print(getNameFromAddress(breakpoints[i]))
end
end
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