Difference between revisions of "Lua:readInteger"
Jump to navigation
Jump to search
m (moved readInteger to Lua:readInteger) |
(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. |
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 |