Skip to content

Commit 72733c9

Browse files
authored
README.md
description & small documentation
1 parent 7169e8f commit 72733c9

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# LuaRT-Process-Module
2+
13/06/2023 23:46 (11:46 PM) GMT-3
3+
I made this simple module for LuaRT and then I pubilshed it on github,
4+
5+
with this module you can read and write process memory through Lua 5.4.
6+
thanks to LuaRT you can really do a module for this!
7+
8+
METHODS:
9+
process.process.FindWindow(windowName) --> windowName: string (the window to find, no need to include .exe!)
10+
; find the window process
11+
; returns a userdata of the process and returns the process ID.
12+
13+
process.WriteProcessMemory(processID,address,string) --> processID: number (the target process ID), address: dword or number (the address to write to), string: string (bytes to be written)
14+
; write a string to a process's memory.
15+
16+
process.ReadProcessMemory(processID,address,size) --> processID: number (the target process ID), address: dword or number (the address to be read), size: number (the size in bytes to read)
17+
; read a address of the process's memory
18+
; returns a string of the content.
19+
20+
thank you for reading... this module doesn't kinda work well but it's still usable.

0 commit comments

Comments
 (0)