Difference between revisions of "Lua:readInteger"

From Cheat Engine
Jump to navigation Jump to search
(bKBAtQAhCUI)
m (Reverted edits by 91.193.12.4 (Talk) to last revision by Dark Byte)
Line 1: Line 1:
What a pleasure to meet someone who thinks so calrley
+
'''function''' readInteger(''Address'')
 +
 
 +
Reads the 4 bytes at the given address and interprets them as an integer
 +
 
 +
===Function Parameters===
 +
{|width="85%" cellpadding="10%" cellpadding="5%" cellspacing="0" border="0"
 +
!align="left"|Parameter
 +
!align="left"|Type
 +
!style="width: 80%;background-color:white;" align="left"|Description
 +
|-
 +
|Address
 +
|[[CEAddressString]] or Integer
 +
|The address to read
 +
|}
 +
 
 +
 
 +
== See also ==
 +
* [[readBytes]]
 +
* [[readFloat]]
 +
* [[readDouble]]
 +
* [[readString]]
 +
* [[Lua]]

Revision as of 14:39, 13 May 2012

function readInteger(Address)

Reads the 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


See also