This repository was archived by the owner on Mar 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Functions (Memory)
ZTz edited this page Feb 21, 2022
·
2 revisions
Home ▸ Lua Api ▸ Functions ▸ Functions (Memory)
Read memory.
memRead(address, len);Paramenters:
- address: a address to read
- len: length of data to read
Returns: a string with the data
Write memory.
memWrite(address, data, len);Paramenters:
- address: a address to write
- data: data to write
- len: length of data to write
Scan all address signatures according to the pattern.
patternScan(pattern, offset);Paramenters:
- pattern: a pattern to search
- offset: offset to add to the final address
Get address by symbol.
getAddressFromSymbol(address);Paramenters:
- symbol: a symbol to search
Compare a address with given pattern.
compareData(address, pattern);Paramenters:
- address: a address to compare with pattern
- pattern: a pattern to compare