Difference between revisions of "Lua:readQwordLocal"
Jump to navigation
Jump to search
(Created page with ''''function''' readQwordLocal(''Address'') Reads a 64-bit (8 bytes) integer at the given address, in Cheat Engine's memory. ===Function Parameters=== {|width="85%" cellpadding=…') |
m (Syntax Highlighting.) |
||
| (10 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
| − | '''function''' readQwordLocal(''Address'') | + | [[Category:Lua]] |
| + | {{CodeBox|'''function''' readQwordLocal(''Address'') ''':''' Integer}} | ||
| − | Reads a 64-bit ( | + | 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 10: | 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=== |
| − | + | <syntaxhighlight lang="lua" line> | |
| − | + | -- Read a 64-bit integer from address 0x123456 in CE's memory | |
| + | local value = readQwordLocal(0x123456) | ||
| + | print("Value:", value) | ||
| + | </syntaxhighlight> | ||
| − | + | {{LuaSeeAlso}} | |
| − | + | ||
| − | + | {{ReadWriteMemory}} | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
Latest revision as of 15:40, 25 June 2026
Reads a 64-bit integer (Qword) from the specified address in Cheat Engine's own process memory (not the target process).
Function Parameters[edit]
| Parameter | Type | Description |
|---|---|---|
| Address | Integer or CEAddressString | The address in Cheat Engine's memory to read from. |
Returns[edit]
Integer — The 64-bit integer value read from the specified address.
Examples[edit]
1 -- Read a 64-bit integer from address 0x123456 in CE's memory
2 local value = readQwordLocal(0x123456)
3 print("Value:", value)