Lua:debug getBreakpointList

From Cheat Engine
Jump to navigation Jump to search

function debug_getBreakpointList(): {}

Returns a lua table containing all the breakpoint addresses

Function Parameters

<none>

examples

 local tbl = debug_getBreakpointList()
 for i,v in ipairs(tbl) do
   print(string.format("%4d 0x%X",i,v))
 end

See also

Related Functions