Auto Assembler:define

From Cheat Engine
Revision as of 19:30, 11 March 2017 by TheyCallMeTim13 (talk | contribs) (Created page with ''''Auto Assembler''' define(''Name'', ''Value'') Creates a token with the specified name that will be replaced with the text of it's value. Note: Uses basic replacement, white …')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Auto Assembler define(Name, Value)

Creates a token with the specified name that will be replaced with the text of it's value.

Note: Uses basic replacement, white space is not striped, so.

This:

define(address,  00 12 3A BC  )
...
address:
  db 90 90 90

Becomes this:

  00 12 3A BC  :
  db 90 90 90

This:

define(fullValue,(float)100.0)
...
mov eax,fullValue

Becomes this:

mov eax,(float)100.0

This:

define(fullValue,     (float)100.0)
...
mov eax,fullValue

Becomes this:

mov eax,     (float)100.0

Function Parameters

Parameter Type Description
Name string The name of the token to define
Value string The value of the token to define


Examples

createThread(SomeSymbol)
createThread(00123ABC)


See also

Related Functions