Difference between revisions of "Lua:readPointer"
Jump to navigation
Jump to search
m (Syntax Highlighting.) |
|||
| (4 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | [[Category:Lua]] | |
| + | {{CodeBox|'''function''' readPointer(''Address'') ''':''' Integer}} | ||
| + | |||
| + | Reads a pointer-sized integer from the specified address in the currently opened (target) process. | ||
| + | In a 64-bit target, this is equivalent to [[readQword]]; in a 32-bit target, it is equivalent to [[readInteger]]. | ||
| + | |||
| + | ===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 | ||
| + | |- | ||
| + | |Address | ||
| + | |Integer or [[CEAddressString]] | ||
| + | |The address in the target process to read from. | ||
| + | |} | ||
| + | |||
| + | ===Returns=== | ||
| + | Integer — The pointer-sized value read from the specified address. | ||
| + | |||
| + | ===Examples=== | ||
| + | <syntaxhighlight lang="lua" line> | ||
| + | -- Read a pointer from address 0x123456 | ||
| + | local ptr = readPointer(0x123456) | ||
| + | print("Pointer value:", ptr) | ||
| + | |||
| + | -- Read from a CEAddressString | ||
| + | local ptr2 = readPointer("game.exe+1234") | ||
| + | print("Pointer value:", ptr2) | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | {{LuaSeeAlso}} | ||
| + | |||
| + | {{ReadWriteMemory}} | ||
Latest revision as of 15:34, 25 June 2026
Reads a pointer-sized integer from the specified address in the currently opened (target) process. In a 64-bit target, this is equivalent to readQword; in a 32-bit target, it is equivalent to readInteger.
Function Parameters[edit]
| Parameter | Type | Description |
|---|---|---|
| Address | Integer or CEAddressString | The address in the target process to read from. |
Returns[edit]
Integer — The pointer-sized value read from the specified address.
Examples[edit]
1 -- Read a pointer from address 0x123456
2 local ptr = readPointer(0x123456)
3 print("Pointer value:", ptr)
4
5 -- Read from a CEAddressString
6 local ptr2 = readPointer("game.exe+1234")
7 print("Pointer value:", ptr2)