Difference between revisions of "Auto Assembler:aobScanModule"

From Cheat Engine
Jump to navigation Jump to search
(Created page with ''''Auto Assembler''' aobScanModule(''SybolName'', ''ModuleName'', ''AOBString'') Scans the memory of a specific module for the given array of byte and sets the result to the sym…')
 
Line 1: Line 1:
'''Auto Assembler''' aobScanModule(''SybolName'', ''ModuleName'', ''AOBString'')
+
'''Auto Assembler''' aobScanModule(''SymbolName'', ''ModuleName'', ''AOBString'')
  
 
Scans the memory of a specific module for the given array of byte and sets the result to the symbol name.
 
Scans the memory of a specific module for the given array of byte and sets the result to the symbol name.

Revision as of 19:14, 11 March 2017

Auto Assembler aobScanModule(SymbolName, ModuleName, AOBString)

Scans the memory of a specific module for the given array of byte and sets the result to the symbol name. Anything not an integer will be seen as a wildcard.

Function Parameters

Parameter Type Description
SymbolName string The symbol name to use if aob is found
ModuleName string The name of the module to scan in
AOBString string The string of bytes, as hex, to scan for


Examples

aobScanModule(SomeSymbol, Tutorial-x86_64.exe, 00 53 48 8D 64 24 E0)
aobScanModule(SomeSymbol, Tutorial-x86_64.exe, 00 ** ** 8D 64 24 E0)
aobScanModule(SomeSymbol, Tutorial-x86_64.exe, 00 ?? ?? 8D 64 24 E0)
aobScanModule(SomeSymbol, Tutorial-x86_64.exe, 00**8D6424E0)
aobScanModule(SomeSymbol, Tutorial-x86_64.exe, 00??8D6424E0)

See also

Related Functions