Difference between revisions of "Lua:readInteger"

From Cheat Engine
Jump to navigation Jump to search
(Added clarification on the optional flag)
Line 1: Line 1:
 
[[Category:Lua]]
 
[[Category:Lua]]
'''function''' readInteger(''Address'') ''':''' integer
+
'''function''' readInteger(''Address'' [ , ''Flag'']) ''':''' integer
  
 
Reads a DWORD (4 bytes) at the given address and interprets them as an integer
 
Reads a DWORD (4 bytes) at the given address and interprets them as an integer
Line 13: Line 13:
 
|[[CEAddressString]] or Integer
 
|[[CEAddressString]] or Integer
 
|The address to read
 
|The address to read
 +
|-
 +
|Flag
 +
|[[Boolean]]
 +
|If 'true', CE will interpret value as signed. If false or missing, CE will interpret value as unsigned.
 
|}
 
|}
  

Revision as of 21:27, 29 May 2025

function readInteger(Address [ , Flag]) : integer

Reads a DWORD (4 bytes) at the given address and interprets them as an integer

Function Parameters

Parameter Type Description
Address CEAddressString or Integer The address to read
Flag Boolean If 'true', CE will interpret value as signed. If false or missing, CE will interpret value as unsigned.


Main Pages

Core Lua documentation entry points

Lua
Script Engine

Related Functions