Difference between revisions of "Auto Assembler:aobScan"

From Cheat Engine
Jump to navigation Jump to search
(Created page with ''''Auto Assembler''' aobScan(''SybolName'', ''AOBString'') Scans the memory for the given array of byte and sets the result to the symbol name. Anything not an integer will be s…')
 
Line 1: Line 1:
'''Auto Assembler''' aobScan(''SybolName'', ''AOBString'')
+
'''Auto Assembler''' aobScan(''SymbolName'', ''AOBString'')
  
 
Scans the memory for the given array of byte and sets the result to the symbol name.
 
Scans the memory for the given array of byte and sets the result to the symbol name.
Line 10: Line 10:
 
!style="width: 80%;background-color:white;" align="left"|Description
 
!style="width: 80%;background-color:white;" align="left"|Description
 
|-
 
|-
|SybolName
+
|SymbolName
 
|string
 
|string
 
|The symbol name to use if aob is found
 
|The symbol name to use if aob is found

Revision as of 18:56, 11 March 2017

Auto Assembler aobScan(SymbolName, AOBString)

Scans the memory 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
AOBString string The string of bytes, as hex, to scan for


Examples

aobScan(SomeSymbol, 00 53 48 8D 64 24 E0)
aobScan(SomeSymbol, 00 ** ** 8D 64 24 E0)
aobScan(SomeSymbol, 00 ?? ?? 8D 64 24 E0)
aobScan(SomeSymbol, 00**8D6424E0)
aobScan(SomeSymbol, 00??8D6424E0)

See also

Related Functions