Difference between revisions of "Lua:writeInteger"
Jump to navigation
Jump to search
m (moved writeInteger to Lua:writeInteger) |
m |
||
| Line 1: | Line 1: | ||
[[Category:Lua]] | [[Category:Lua]] | ||
| − | '''function''' writeInteger(''Address'', ''Value''): Boolean | + | '''function''' writeInteger(''Address'', ''Value'') ''':''' Boolean |
| − | Writes a | + | Writes a 32-bit integer to the specified address in the currently opened (target) process. |
| + | Returns true on success. | ||
===Function Parameters=== | ===Function Parameters=== | ||
| − | {|width="85%" cellpadding="10 | + | {|width="85%" cellpadding="10%" cellspacing="0" border="0" |
!align="left"|Parameter | !align="left"|Parameter | ||
!align="left"|Type | !align="left"|Type | ||
| Line 11: | Line 12: | ||
|- | |- | ||
|Address | |Address | ||
| − | |[[CEAddressString]] | + | |Integer or [[CEAddressString]] |
| − | |The address | + | |The address in the target process to write to. |
|- | |- | ||
|Value | |Value | ||
|Integer | |Integer | ||
| − | |The value to write | + | |The 32-bit integer value to write. |
|} | |} | ||
| + | ===Returns=== | ||
| + | Boolean — true if the write was successful, false otherwise. | ||
| + | |||
| + | ===Examples=== | ||
| + | <pre> | ||
| + | -- Write a 32-bit integer to address 0x123456 | ||
| + | local success = writeInteger(0x123456, 123456789) | ||
| + | print("Write successful:", success) | ||
| + | |||
| + | -- Write to a CEAddressString | ||
| + | writeInteger("game.exe+1234", 987654321) | ||
| + | </pre> | ||
{{LuaSeeAlso}} | {{LuaSeeAlso}} | ||
Revision as of 17:04, 11 July 2025
function writeInteger(Address, Value) : Boolean
Writes a 32-bit integer to the specified address in the currently opened (target) process. Returns true on success.
Function Parameters
| Parameter | Type | Description |
|---|---|---|
| Address | Integer or CEAddressString | The address in the target process to write to. |
| Value | Integer | The 32-bit integer value to write. |
Returns
Boolean — true if the write was successful, false otherwise.
Examples
-- Write a 32-bit integer to address 0x123456
local success = writeInteger(0x123456, 123456789)
print("Write successful:", success)
-- Write to a CEAddressString
writeInteger("game.exe+1234", 987654321)