Difference between revisions of "Lua:debug getBreakpointList"

From Cheat Engine
Jump to navigation Jump to search
(Created page with ''''function''' debug_getBreakpointList(): {} Returns a lua table containing all the breakpoint addresses '''function Parameters''' <none> '''examples''' local tbl = debug_g…')
(No difference)

Revision as of 11:03, 2 April 2018

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