Difference between revisions of "Lua:writeString"

From Cheat Engine
Jump to navigation Jump to search
Line 24: Line 24:
  
  
== See also ==
+
{{LuaSeeAlso}}
* [[Lua]]
 
* [[Help_File:Script engine|Script engine]]
 
  
 
=== Related Functions ===
 
=== Related Functions ===

Revision as of 21:29, 19 March 2017

function writeString(Address, Text, WideChar OPTIONAL)

Writes the given text to the given address. This does not write a 0-terminator at the end. You need to use writeBytes yourself if you need one. Set WideChar to true if it is encoded using a widechar formatting.

Function Parameters

Parameter Type Description
Address CEAddressString or Integer The address of the target process to write to
Text String The text to write to the process
WideChar boolean Set to true if it is encoded using a widechar formatting


See also

Related Functions