Difference between revisions of "Lua:cheatEngineIs64Bit"
Jump to navigation
Jump to search
(Created page with ''''function''' cheatEngineIs64Bit() Returns true if the the Cheat Engine version you are running is the 64-bit version. This information can be helpful when trying to figure ou…') |
|||
| (3 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
| + | [[Category:Lua]] | ||
'''function''' cheatEngineIs64Bit() | '''function''' cheatEngineIs64Bit() | ||
| Line 5: | Line 6: | ||
This information can be helpful when trying to figure out which plugin to load | This information can be helpful when trying to figure out which plugin to load | ||
| − | + | {{LuaFunctionParametersNone}} | |
| − | |||
| − | + | {{LuaSeeAlso}} | |
| − | + | <pre> | |
| + | print(cheatEngineIs64Bit() and "x64" or "x86") | ||
| + | </pre> | ||
Latest revision as of 01:03, 28 August 2020
function cheatEngineIs64Bit()
Returns true if the the Cheat Engine version you are running is the 64-bit version.
This information can be helpful when trying to figure out which plugin to load
Function Parameters[edit]
<none>
See also[edit]
print(cheatEngineIs64Bit() and "x64" or "x86")