Difference between revisions of "Auto Assembler:assert"

From Cheat Engine
Jump to navigation Jump to search
(Created page with 'Category:Assembler '''Auto Assembler''' assert(''Address'', ''ArrayOfBytes'') Will check the memory address for the given bytes. If the address's memory is not what is defin…')
 
(See also)
 
Line 32: Line 32:
 
== See also ==
 
== See also ==
 
* [[Cheat_Engine:Auto Assembler|Auto Assembler]]
 
* [[Cheat_Engine:Auto Assembler|Auto Assembler]]
 +
* [[Auto_Assembler:Commands|Auto Assembler Commands]]
  
 
=== Related Commands ===
 
=== Related Commands ===

Latest revision as of 00:30, 13 January 2018

Auto Assembler assert(Address, ArrayOfBytes)

Will check the memory address for the given bytes. If the address's memory is not what is defined by the array of bytes given, the auto assemble script will not execute.


Command Parameters[edit]

Parameter Type Description
Address string The address or symbol check against the given array of bytes.
ArrayOfBytes string The string of bytes, as hex, to check against


Examples[edit]

assert(Game.exe+123ABC, 01 02 03 0A 0B 0C)
define(bytes, 01 02 03 0A 0B 0C)
assert(Game.exe+123ABC, bytes)
ASSERT(injectionPoint,01 02 03 0A 0B 0C)

See also[edit]

Related Commands[edit]