Difference between revisions of "Lua:debug getBreakpointList"
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…') |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | [[Category:Lua]] | ||
'''function''' debug_getBreakpointList(): {} | '''function''' debug_getBreakpointList(): {} | ||
− | |||
− | + | Returns a lua table containing all the breakpoint addresses | |
− | + | ||
+ | {{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 | ||
+ | |||
+ | {{LuaSeeAlso}} | ||
+ | |||
+ | === Related Functions === | ||
+ | * [[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]] |
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