Lua:debug getBreakpointList

From Cheat Engine
Revision as of 11:03, 2 April 2018 by Budabum (talk | contribs) (Created page with ''''function''' debug_getBreakpointList(): {} Returns a lua table containing all the breakpoint addresses '''function Parameters''' <none> '''examples''' local tbl = debug_g…')
(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

<none>

examples

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