Difference between revisions of "Lua:targetIsX86"
Jump to navigation
Jump to search
m (Syntax Highlighting.) |
m (Added related function template.) |
||
| Line 20: | Line 20: | ||
{{LuaSeeAlso}} | {{LuaSeeAlso}} | ||
| + | |||
| + | {{TargetIdentity}} | ||
Latest revision as of 23:37, 26 June 2026
Returns true if the target process is x86 based.
Function Parameters[edit]
This function has no parameters.
Returns[edit]
boolean — True if the target process is x86 based, otherwise false.
Examples[edit]
1 if targetIsX86() then
2 print("Target process is x86 based")
3 else
4 print("Target process is not x86 based")
5 end