Guest User

Untitled

a guest
Dec 13th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // address to edit
  2. var address = new IntPtr(0x001D7AB4);
  3.  
  4. // Open process with MemorySharp
  5. using (var m = new MemorySharp(Process.GetCurrentProcess()))
  6. {
  7. // Edit address
  8. m[address].WriteString("write something in hex offset of memory location");
  9. }
Add Comment
Please, Sign In to add comment