Difference between revisions of "Lua:writeBytes"
Jump to navigation
Jump to search
m (Reverted edits by This content is not available (Talk) to last revision by TheyCallMeTim13) |
m |
||
Line 2: | Line 2: | ||
'''function''' writeBytes(''Address'', ''Byte1'', ''Byte2'', ''Byte3'', ... ) | '''function''' writeBytes(''Address'', ''Byte1'', ''Byte2'', ''Byte3'', ... ) | ||
− | '''function''' writeBytes(''Address'', ''Table | + | '''function''' writeBytes(''Address'', ''Table'' ) |
Write the bytes to the given address | Write the bytes to the given address |
Revision as of 03:10, 18 May 2019
function writeBytes(Address, Byte1, Byte2, Byte3, ... )
function writeBytes(Address, Table )
Write the bytes to the given address
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 |
See also
Related Functions
- readBytes
- readSmallInteger
- readInteger
- readQword
- readPointer
- readFloat
- readDouble
- readString
- writeBytes
- writeSmallInteger
- writeInteger
- writeQword
- writeFloat
- writeDouble
- writeString
- 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