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…')
(No difference)

Revision as of 00:13, 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

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

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

Related Commands