Lua:debug getBreakpointList

From Cheat Engine
Revision as of 11:12, 2 April 2018 by Budabum (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

See also[edit]

Related Functions[edit]