Difference between revisions of "Lua:readQwordLocal"
Jump to navigation
Jump to search
m (moved readQwordLocal to Lua:readQwordLocal) |
m |
||
| Line 1: | Line 1: | ||
[[Category:Lua]] | [[Category:Lua]] | ||
| − | '''function''' readQwordLocal(''Address'') ''':''' | + | '''function''' readQwordLocal(''Address'') ''':''' Integer |
| − | Reads a | + | Reads a 64-bit integer (Qword) from the specified address in Cheat Engine's own process memory (not the target process). |
| − | |||
| − | |||
===Function Parameters=== | ===Function Parameters=== | ||
| − | {|width="85%" cellpadding="10 | + | {|width="85%" cellpadding="10%" cellspacing="0" border="0" |
!align="left"|Parameter | !align="left"|Parameter | ||
!align="left"|Type | !align="left"|Type | ||
| Line 13: | Line 11: | ||
|- | |- | ||
|Address | |Address | ||
| − | |[[CEAddressString]] | + | |Integer or [[CEAddressString]] |
| − | |The address to read | + | |The address in Cheat Engine's memory to read from. |
|} | |} | ||
| + | ===Returns=== | ||
| + | Integer — The 64-bit integer value read from the specified address. | ||
| + | |||
| + | ===Examples=== | ||
| + | <pre> | ||
| + | -- Read a 64-bit integer from address 0x123456 in CE's memory | ||
| + | local value = readQwordLocal(0x123456) | ||
| + | print("Value:", value) | ||
| + | </pre> | ||
{{LuaSeeAlso}} | {{LuaSeeAlso}} | ||
Revision as of 17:12, 11 July 2025
function readQwordLocal(Address) : Integer
Reads a 64-bit integer (Qword) from the specified address in Cheat Engine's own process memory (not the target process).
Function Parameters
| Parameter | Type | Description |
|---|---|---|
| Address | Integer or CEAddressString | The address in Cheat Engine's memory to read from. |
Returns
Integer — The 64-bit integer value read from the specified address.
Examples
-- Read a 64-bit integer from address 0x123456 in CE's memory
local value = readQwordLocal(0x123456)
print("Value:", value)