How to hack with C#?

Posts 12 of 2 · Page 1 of 1
How to hack with C#?
Yeah I want to know how to change the memory with C# AND WITH POINTERS!

So my main questions are:

1. How to do basic memory manipulation with C# ?
2. How to use Address + Offset and change it (Changing of static pointers)

Hope you can help me!
Thanks
Quote Originally Posted by Nik08154 View Post
Yeah I want to know how to change the memory with C# AND WITH POINTERS!

So my main questions are:

1. How to do basic memory manipulation with C# ?
2. How to use Address + Offset and change it (Changing of static pointers)

Hope you can help me!
Thanks
1; you need WinAPIs to be able to edit memory in C#...
You need the "WriteProcessMemory" and "ReadProcessMemory"

2;
A very simple example, but a real coder would understand it...
uint Addy = ReadUint(Pointer);
int Money = ReadInt(Addy + MoneyOffset);
Posts 12 of 2 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?