Difference between revisions of "Lua:debug getBreakpointList"
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
print(string.format("%4d 0x%X",i,v)) | print(string.format("%4d 0x%X",i,v)) | ||
end | end | ||
+ | |||
+ | {{LuaSeeAlso}} | ||
=== Related Functions === | === Related Functions === | ||
− | |||
− | |||
* [[Lua:cheatEngineIs64Bit|cheatEngineIs64Bit]] | * [[Lua:cheatEngineIs64Bit|cheatEngineIs64Bit]] | ||
* [[Lua:getOpenedProcessID|getOpenedProcessID]] | * [[Lua:getOpenedProcessID|getOpenedProcessID]] |
Latest revision as of 11:12, 2 April 2018
function debug_getBreakpointList(): {}
Returns a lua table containing all the breakpoint addresses
Function Parameters[edit]
<none>
examples
local tbl = debug_getBreakpointList() for i,v in ipairs(tbl) do print(string.format("%4d 0x%X",i,v)) end