process-read-write allow you to read and write bytes from another processes, it also enables you to monitor a specefic process using ptrace, geting a real-time list a list of all the system calls made by that process.
use process_read_write;fnmain(){let pid:i32=1234;// id of app
let addr:usize=0x70eb856006c0;// address of value to change
let new_value =[0xff,0xff,0xff,0x7f];// the value the insert into the new address
//let pid = process_read_write::get_proc_by_name("SomeRandomGame");
let pid =process_read_write::get_proc_by_id(pid);process_read_write::write_addr(pid,addr,&new_value);}