Difference between revisions of "Lua:readBytes"

From Cheat Engine
Jump to navigation Jump to search
Line 23: Line 23:
  
 
== See also ==
 
== See also ==
 +
* [[Lua]]
 +
* [[Help_File:Script engine|Script engine]]
 +
 +
=== Related Functions ===
 +
* [[writeBytes]]
 
* [[readBytesLocal]]
 
* [[readBytesLocal]]
* [[Lua]]
+
* [[writeBytesLocal]]
 +
* [[wordToByteTable]]
 +
* [[dwordToByteTable]]
 +
* [[qwordToByteTable]]
 +
* [[floatToByteTable]]
 +
* [[doubleToByteTable]]
 +
* [[stringToByteTable]]
 +
* [[wideStringToByteTable]]
 +
* [[byteTableToWord]]
 +
* [[byteTableToDword]]
 +
* [[byteTableToQword]]
 +
* [[byteTableToFloat]]
 +
* [[byteTableToDouble]]
 +
* [[byteTableToString]]
 +
* [[byteTableToWideString]]
 +
* [[AOBScan]]

Revision as of 14:59, 8 March 2017

function readBytes(Address, Bytecount, ReturnAsTable )

Returns the bytes at the given address

Function Parameters

Parameter Type Description
Address CEAddressString or Integer The address to read
Bytecount Integer The number of bytes to read
ReturnAsTable Boolean Returns a table object instead of multiple return values

See also

Related Functions