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…')
 
Line 1: Line 1:
 +
[[Category:Lua]]
 
'''function''' debug_getBreakpointList(): {}
 
'''function''' debug_getBreakpointList(): {}
Returns a lua table containing all the breakpoint addresses
 
  
'''function Parameters'''
+
Returns a lua table containing all the breakpoint addresses
<none>
+
 
 +
{{LuaFunctionParametersNone}}
  
 
'''examples'''
 
'''examples'''
Line 10: Line 11:
 
     print(string.format("%4d 0x%X",i,v))
 
     print(string.format("%4d 0x%X",i,v))
 
   end
 
   end
 +
 +
=== Related Functions ===
 +
 +
{{LuaSeeAlso}}
 +
* [[Lua:cheatEngineIs64Bit|cheatEngineIs64Bit]]
 +
* [[Lua:getOpenedProcessID|getOpenedProcessID]]
 +
* [[Lua:getAddress|getAddress]]
 +
* [[Lua:getNameFromAddress|getNameFromAddress]]
 +
* [[Lua:getCommonModuleList|getCommonModuleList]]
 +
* [[Lua:inModule|inModule]]
 +
* [[Lua:inSystemModule|inSystemModule]]
 +
* [[Lua:enumModules|enumModules]]
 +
* [[Lua:debugProcess|debugProcess]]
 +
* [[Lua:debug_isDebugging|debug_isDebugging]]
 +
* [[Lua:debug_canBreak|debug_canBreak]]
 +
* [[Lua:debug_isBroken|debug_isBroken]]
 +
* [[Lua:debug_setBreakpoint|debug_setBreakpoint]]
 +
* [[Lua:debug_removeBreakpoint|debug_removeBreakpoint]]
 +
* [[Lua:debug_continueFromBreakpoint|debug_continueFromBreakpoint]]

Revision as of 11:11, 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

Related Functions

See also