Difference between revisions of "Lua:writeString"
								
								Jump to navigation
				Jump to search
				
				
		
 					
								
							
		 (Created page with ''''function''' writeString(''Address'', ''Text'')  Writes the given text to the given address. This does not write a 0-terminator at the end. You need to use writeBytes yours…')  | 
				|||
| Line 20: | Line 20: | ||
== See also ==  | == See also ==  | ||
| + | * [[Lua]]  | ||
| + | * [[Help_File:Script engine|Script engine]]  | ||
| + | |||
| + | === Related Functions ===  | ||
| + | * [[readBytes]]  | ||
| + | * [[readInteger]]  | ||
| + | * [[readQword]]  | ||
| + | * [[readPointer]]  | ||
| + | * [[readFloat]]  | ||
| + | * [[readDouble]]  | ||
* [[readString]]  | * [[readString]]  | ||
* [[writeBytes]]  | * [[writeBytes]]  | ||
* [[writeInteger]]  | * [[writeInteger]]  | ||
| + | * [[writeQword]]  | ||
* [[writeFloat]]  | * [[writeFloat]]  | ||
* [[writeDouble]]  | * [[writeDouble]]  | ||
| − | * [[  | + | * [[readBytesLocal]]  | 
| + | * [[readIntegerLocal]]  | ||
| + | * [[readQwordLocal]]  | ||
| + | * [[readPointerLocal]]  | ||
| + | * [[readFloatLocal]]  | ||
| + | * [[readDoubleLocal]]  | ||
| + | * [[readStringLocal]]  | ||
| + | * [[writeBytesLocal]]  | ||
| + | * [[writeIntegerLocal]]  | ||
| + | * [[writeQwordLocal]]  | ||
| + | * [[writeFloatLocal]]  | ||
| + | * [[writeDoubleLocal]]  | ||
| + | * [[writeStringLocal]]  | ||
| + | * [[wordToByteTable]]  | ||
| + | * [[dwordToByteTable]]  | ||
| + | * [[qwordToByteTable]]  | ||
| + | * [[floatToByteTable]]  | ||
| + | * [[doubleToByteTable]]  | ||
| + | * [[stringToByteTable]]  | ||
| + | * [[wideStringToByteTable]]  | ||
| + | * [[byteTableToWord]]  | ||
| + | * [[byteTableToDword]]  | ||
| + | * [[byteTableToQword]]  | ||
| + | * [[byteTableToFloat]]  | ||
| + | * [[byteTableToDouble]]  | ||
| + | * [[byteTableToString]]  | ||
| + | * [[byteTableToWideString]]  | ||
Revision as of 15:26, 8 March 2017
function writeString(Address, Text)
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
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 | 
See also
Related Functions
- readBytes
 - readInteger
 - readQword
 - readPointer
 - readFloat
 - readDouble
 - readString
 - writeBytes
 - writeInteger
 - writeQword
 - writeFloat
 - writeDouble
 - readBytesLocal
 - readIntegerLocal
 - readQwordLocal
 - readPointerLocal
 - readFloatLocal
 - readDoubleLocal
 - readStringLocal
 - writeBytesLocal
 - writeIntegerLocal
 - writeQwordLocal
 - writeFloatLocal
 - writeDoubleLocal
 - writeStringLocal
 - wordToByteTable
 - dwordToByteTable
 - qwordToByteTable
 - floatToByteTable
 - doubleToByteTable
 - stringToByteTable
 - wideStringToByteTable
 - byteTableToWord
 - byteTableToDword
 - byteTableToQword
 - byteTableToFloat
 - byteTableToDouble
 - byteTableToString
 - byteTableToWideString