Difference between revisions of "Lua:readQwordLocal"

From Cheat Engine
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
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''function''' readQwordLocal(''Address'')
+
[[Category:Lua]]
 +
'''function''' readQwordLocal(''Address'') ''':''' Integer
  
Reads a 64-bit (8 bytes) integer at the given address, in Cheat Engine's memory.
+
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%" cellpadding="5%" cellspacing="0" border="0"
+
{|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]] or Integer
+
|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.
  
== See also ==
+
===Examples===
* [[Lua]]
+
<pre>
* [[Help_File:Script engine|Script engine]]
+
-- Read a 64-bit integer from address 0x123456 in CE's memory
 +
local value = readQwordLocal(0x123456)
 +
print("Value:", value)
 +
</pre>
 +
 
 +
{{LuaSeeAlso}}
  
 
=== Related Functions ===
 
=== Related Functions ===
* [[readBytes]]
+
{{ReadWriteMemory}}
* [[readInteger]]
 
* [[readQword]]
 
* [[readPointer]]
 
* [[readFloat]]
 
* [[readDouble]]
 
* [[readString]]
 
* [[writeBytes]]
 
* [[writeInteger]]
 
* [[writeQword]]
 
* [[writeFloat]]
 
* [[writeDouble]]
 
* [[writeString]]
 
* [[readBytesLocal]]
 
* [[readIntegerLocal]]
 
* [[readPointerLocal]]
 
* [[readFloatLocal]]
 
* [[readDoubleLocal]]
 
* [[readStringLocal]]
 
* [[writeBytesLocal]]
 
* [[writeIntegerLocal]]
 
* [[writeQwordLocal]]
 
* [[writeFloatLocal]]
 
* [[writeDoubleLocal]]
 
* [[writeStringLocal]]
 
* [[wordToByteTable]]
 
* [[dwordToByteTable]]
 
* [[qwordToByteTable]]
 
* [[floatToByteTable]]
 
* [[doubleToByteTable]]
 
* [[stringToByteTable]]
 
* [[wideStringToByteTable]]
 
* [[byteTableToWord]]
 
* [[byteTableToDword]]
 
* [[byteTableToQword]]
 
* [[byteTableToFloat]]
 
* [[byteTableToDouble]]
 
* [[byteTableToString]]
 
* [[byteTableToWideString]]
 

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)

See also

Lua
Script Engine

Related Functions

Read Functions
readBytes
readSmallInteger
readInteger
readQword
readPointer
readFloat
readDouble
readString
Read Functions (Local Process)
readBytesLocal
readIntegerLocal
readQwordLocal
readPointerLocal
readFloatLocal
readDoubleLocal
readStringLocal
Write Functions
writeBytes
writeSmallInteger
writeInteger
writeQword
writeFloat
writeDouble
writeString
Write Functions (Local Process)
writeBytesLocal
writeIntegerLocal
writeQwordLocal
writeFloatLocal
writeDoubleLocal
writeStringLocal
Byte Table Conversions (Value → Byte Table)
wordToByteTable
dwordToByteTable
qwordToByteTable
floatToByteTable
doubleToByteTable
stringToByteTable
wideStringToByteTable
Byte Table Conversions (Byte Table → Value)
byteTableToWord
byteTableToDword
byteTableToQword
byteTableToFloat
byteTableToDouble
byteTableToString
byteTableToWideString