Difference between revisions of "Lua:readBytes"
Jump to navigation
Jump to search
m (Syntax Highlighting.) |
|||
| (10 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | [[Category:Lua]] | |
| + | {{CodeBox|'''function''' readBytes(''Address'', ''ByteCount'', [''ReturnAsTable''])}} | ||
| − | + | Reads bytes from the specified address in the currently opened (target) process. | |
| + | Returns the bytes as multiple return values or as a table if ''ReturnAsTable'' is true. | ||
| − | + | ===Function Parameters=== | |
| − | + | {|width="85%" cellpadding="10%" cellspacing="0" border="0" | |
| − | + | !align="left"|Parameter | |
| − | + | !align="left"|Type | |
| − | + | !style="width: 80%;background-color:white;" align="left"|Description | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | {| | ||
| − | !align="left"| | ||
| − | !style="width: 80%" align="left"|Description | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
|- | |- | ||
| − | | | + | |Address |
| − | | | + | |Integer or [[CEAddressString]] |
| + | |The address in the target process to read from. | ||
|- | |- | ||
| − | | | + | |ByteCount |
| − | | | + | |Integer |
| − | | | + | |The number of bytes to read. |
| − | |||
| − | |||
|- | |- | ||
| + | |ReturnAsTable | ||
| + | |Boolean (optional) | ||
| + | |If true, returns a table of bytes. If false or omitted, returns each byte as a separate return value. | ||
|} | |} | ||
| + | ===Examples=== | ||
| + | <syntaxhighlight lang="lua" line> | ||
| + | -- Read 4 bytes and get them as separate values | ||
| + | local b1, b2, b3, b4 = readBytes(0x123456, 4) | ||
| + | print(b1, b2, b3, b4) | ||
| − | + | -- Read 4 bytes and get them as a table | |
| − | + | local bytes = readBytes(0x123456, 4, true) | |
| − | + | for i, v in ipairs(bytes) do | |
| − | + | print("Byte " .. i .. ": " .. v) | |
| − | + | end | |
| − | + | </syntaxhighlight > | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | + | {{LuaSeeAlso}} | |
| − | + | {{ReadWriteMemory}} | |
Latest revision as of 15:26, 25 June 2026
Reads bytes from the specified address in the currently opened (target) process. Returns the bytes as multiple return values or as a table if ReturnAsTable is true.
Function Parameters[edit]
| Parameter | Type | Description |
|---|---|---|
| Address | Integer or CEAddressString | The address in the target process to read from. |
| ByteCount | Integer | The number of bytes to read. |
| ReturnAsTable | Boolean (optional) | If true, returns a table of bytes. If false or omitted, returns each byte as a separate return value. |
Examples[edit]
1 -- Read 4 bytes and get them as separate values
2 local b1, b2, b3, b4 = readBytes(0x123456, 4)
3 print(b1, b2, b3, b4)
4
5 -- Read 4 bytes and get them as a table
6 local bytes = readBytes(0x123456, 4, true)
7 for i, v in ipairs(bytes) do
8 print("Byte " .. i .. ": " .. v)
9 end