Difference between revisions of "Lua:targetIs64Bit"
Jump to navigation
Jump to search
(4 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
+ | [[Category:Lua]] | ||
'''function''' targetIs64Bit() ''':''' boolean | '''function''' targetIs64Bit() ''':''' boolean | ||
Returns true if the the process Cheat Engine is attached to is 64-bit. | Returns true if the the process Cheat Engine is attached to is 64-bit. | ||
− | + | {{LuaFunctionParametersNone}} | |
− | |||
− | + | {{LuaSeeAlso}} | |
− | + | <pre> | |
− | + | print( targetIs64Bit() and "x64" or "x86" ) | |
+ | </pre> | ||
=== Related Functions === | === Related Functions === | ||
− | * [[cheatEngineIs64Bit]] | + | * [[Lua:cheatEngineIs64Bit|cheatEngineIs64Bit]] |
− | * [[getOpenedProcessID]] | + | * [[Lua:getOpenedProcessID|getOpenedProcessID]] |
− | * [[getAddress]] | + | * [[Lua:getAddress|getAddress]] |
− | * [[getNameFromAddress]] | + | * [[Lua:getNameFromAddress|getNameFromAddress]] |
− | * [[getCommonModuleList]] | + | * [[Lua:getCommonModuleList|getCommonModuleList]] |
− | * [[inModule]] | + | * [[Lua:inModule|inModule]] |
− | * [[inSystemModule]] | + | * [[Lua:inSystemModule|inSystemModule]] |
− | * [[enumModules]] | + | * [[Lua:enumModules|enumModules]] |
− | * [[debugProcess]] | + | * [[Lua:debugProcess|debugProcess]] |
− | * [[debug_isDebugging]] | + | * [[Lua:debug_isDebugging|debug_isDebugging]] |
− | * [[debug_canBreak]] | + | * [[Lua:debug_canBreak|debug_canBreak]] |
− | * [[debug_isBroken]] | + | * [[Lua:debug_isBroken|debug_isBroken]] |
− | * [[debug_getBreakpointList]] | + | * [[Lua:debug_getBreakpointList|debug_getBreakpointList]] |
− | * [[debug_setBreakpoint]] | + | * [[Lua:debug_setBreakpoint|debug_setBreakpoint]] |
− | * [[debug_removeBreakpoint]] | + | * [[Lua:debug_removeBreakpoint|debug_removeBreakpoint]] |
− | * [[debug_continueFromBreakpoint]] | + | * [[Lua:debug_continueFromBreakpoint|debug_continueFromBreakpoint]] |
Latest revision as of 01:05, 28 August 2020
function targetIs64Bit() : boolean
Returns true if the the process Cheat Engine is attached to is 64-bit.
Function Parameters[edit]
<none>
See also[edit]
print( targetIs64Bit() and "x64" or "x86" )