Difference between revisions of "Lua:targetIs64Bit"

From Cheat Engine
Jump to navigation Jump to search
m (Added CodeBox Template.)
Line 1: Line 1:
 
[[Category:Lua]]
 
[[Category:Lua]]
'''function''' targetIs64Bit() ''':''' boolean
+
{{CodeBox|'''function''' targetIs64Bit() ''':''' boolean}}
  
Returns true if the the process Cheat Engine is attached to is 64-bit.
+
Returns `true` if the process Cheat Engine is attached to is 64-bit; otherwise returns `false`.
  
 
{{LuaFunctionParametersNone}}
 
{{LuaFunctionParametersNone}}
  
{{LuaSeeAlso}}
+
=== Example ===
 
<pre>
 
<pre>
print( targetIs64Bit() and "x64" or "x86" )
+
print(targetIs64Bit() and "x64" or "x86")
 
</pre>
 
</pre>
  
=== Related Functions ===
+
{{LuaSeeAlso}}
* [[Lua:cheatEngineIs64Bit|cheatEngineIs64Bit]]
+
 
* [[Lua:getOpenedProcessID|getOpenedProcessID]]
+
{{Process}}
* [[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_getBreakpointList|debug_getBreakpointList]]
 
* [[Lua:debug_setBreakpoint|debug_setBreakpoint]]
 
* [[Lua:debug_removeBreakpoint|debug_removeBreakpoint]]
 
* [[Lua:debug_continueFromBreakpoint|debug_continueFromBreakpoint]]
 

Revision as of 00:55, 5 December 2025

<> Function

function targetIs64Bit() : boolean

Returns `true` if the process Cheat Engine is attached to is 64-bit; otherwise returns `false`.

Function Parameters

<none>

Example

print(targetIs64Bit() and "x64" or "x86")

See also

Lua
Script Engine

Related Functions

createProcess
openProcess
onOpenProcess
getForegroundProcess
getOpenedProcessID
getProcessIDFromProcessName
openFileAsProcess
saveOpenedFile
setPointerSize
setAssemblerMode
getProcesslist
getWindowlist
pause
unpause
targetIs64Bit
enumModules
closeRemoteHandle