Lua:targetIsX86
Jump to navigation
Jump to search
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