Lua:debug getBreakpointList

From Cheat Engine
Revision as of 11:11, 2 April 2018 by Budabum (talk | contribs)
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

Related Functions

See also