Difference between revisions of "Lua:writeStringLocal"

From Cheat Engine
Jump to navigation Jump to search
(Created page with ''''function''' writeStringLocal(''Address'', ''Text'') Writes the given text to the given address, in Cheat Engine's memory. This does not write a 0-terminator at the end. You n…')
 
Line 2: Line 2:
  
 
Writes the given text to the given address, in Cheat Engine's memory. This does not write a 0-terminator at the end. You need to use [[writeBytesLocal]] yourself if you need one.
 
Writes the given text to the given address, in Cheat Engine's memory. This does not write a 0-terminator at the end. You need to use [[writeBytesLocal]] yourself if you need one.
 +
 +
Note: The value written will be in the Cheat Engine process instead of the targeted process.
  
 
===Function Parameters===
 
===Function Parameters===

Revision as of 05:15, 9 March 2017

function writeStringLocal(Address, Text)

Writes the given text to the given address, in Cheat Engine's memory. This does not write a 0-terminator at the end. You need to use writeBytesLocal yourself if you need one.

Note: The value written will be in the Cheat Engine process instead of the targeted process.

Function Parameters

Parameter Type Description
Address CEAddressString or Integer The address in Cheat Engine's memory to write to
Text String The text to write to Cheat Engine's memory


See also

Related Functions