Difference between revisions of "Lua:writeBytesLocal"
Jump to navigation
Jump to search
(Created page with ''''function''' writeBytesLocal(''Address'', ''Byte1'', ''Byte2'', ''Byte3'', ... ) '''function''' writeBytesLocal(''Address'', ''Table'', ''Count'' ) Write the bytes to the giv…') |
|||
| Line 14: | Line 14: | ||
|- | |- | ||
|Address | |Address | ||
| − | | | + | |[[CEAddressString]] or Integer |
|The address to write to | |The address to write to | ||
|- | |- | ||
| Line 37: | Line 37: | ||
|- | |- | ||
|Address | |Address | ||
| − | | | + | |[[CEAddressString]] or Integer |
|The address to write to | |The address to write to | ||
|- | |- | ||
Revision as of 15:26, 22 February 2012
function writeBytesLocal(Address, Byte1, Byte2, Byte3, ... )
function writeBytesLocal(Address, Table, Count )
Write the bytes to the given address in Cheat Engine's memory
Function Parameters
function writeBytes(Address, Byte1, Byte2, Byte3, ... )
| Parameter | Type | Description |
|---|---|---|
| Address | CEAddressString or Integer | The address to write to |
| Byte1 | Integer | The first byte |
| Byte2 | Integer | The second byte |
| ... | Integer | All the other bytes (Max around 20) |
function writeBytes(Address, Table) Warning: Bugged in CE 6.1
| Parameter | Type | Description |
|---|---|---|
| Address | CEAddressString or Integer | The address to write to |
| Table | Table | A table consisting of integers to be written to |