Difference between revisions of "Lua:targetIs64Bit"
Jump to navigation
Jump to search
m |
m (Syntax Highlighting.) |
||
| Line 7: | Line 7: | ||
=== Example === | === Example === | ||
| − | < | + | <syntaxhighlight lang="lua" line> |
print(targetIs64Bit() and "x64" or "x86") | print(targetIs64Bit() and "x64" or "x86") | ||
| − | </ | + | </syntaxhighlight> |
{{LuaSeeAlso}} | {{LuaSeeAlso}} | ||
{{Process}} | {{Process}} | ||
Latest revision as of 19:16, 25 June 2026
Returns true if the process Cheat Engine is attached to is 64-bit; otherwise returns false.
Function Parameters[edit]
<none>
Example[edit]
1 print(targetIs64Bit() and "x64" or "x86")