Difference between revisions of "Lua:debug getBreakpointList"

From Cheat Engine
Jump to navigation Jump to search
 
Line 11: Line 11:
 
     print(string.format("%4d 0x%X",i,v))
 
     print(string.format("%4d 0x%X",i,v))
 
   end
 
   end
 +
 +
{{LuaSeeAlso}}
  
 
=== Related Functions ===
 
=== Related Functions ===
 
{{LuaSeeAlso}}
 
 
* [[Lua:cheatEngineIs64Bit|cheatEngineIs64Bit]]
 
* [[Lua:cheatEngineIs64Bit|cheatEngineIs64Bit]]
 
* [[Lua:getOpenedProcessID|getOpenedProcessID]]
 
* [[Lua:getOpenedProcessID|getOpenedProcessID]]

Latest revision as of 11:12, 2 April 2018

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]