Difference between revisions of "Lua:targetIsX86"

From Cheat Engine
Jump to navigation Jump to search
(Initial page creation.)
 
m (Syntax Highlighting.)
Line 11: Line 11:
  
 
===Examples===
 
===Examples===
<pre>
+
<syntaxhighlight lang="lua" line>
 
if targetIsX86() then
 
if targetIsX86() then
 
   print("Target process is x86 based")
 
   print("Target process is x86 based")
Line 17: Line 17:
 
   print("Target process is not x86 based")
 
   print("Target process is not x86 based")
 
end
 
end
</pre>
+
</syntaxhighlight>
  
 
{{LuaSeeAlso}}
 
{{LuaSeeAlso}}

Revision as of 19:50, 25 June 2026

<> Lua API Reference

function targetIsX86() : boolean

Returns true if the target process is x86 based.

Function Parameters

This function has no parameters.

Returns

boolean — True if the target process is x86 based, otherwise false.

Examples

1 if targetIsX86() then
2   print("Target process is x86 based")
3 else
4   print("Target process is not x86 based")
5 end

Main Pages

Core Lua documentation entry points

Lua
Script Engine