Hello Guys,
I just started my job at a big IT Company in Germany and finally got the Java support of employees which can actually help me with some crazy shit. I just started to write a WoW Bot in Java.
YES, I choose Java, because of the.. aw. the real programmers of you know why. I hope you can help me with something that I don't know how the C# handles things.
I am running the JNA / JNI on my Framework. I already found some tutorials on the internet, but they are only for C# / C++ / AutoIt. The point is that you have access in Kernel32 and User32 Libs of WIndows with the JNA. Now my Problem. I ported the most things by myself to Java already.Success here
In the MSDN Docs are the functions WriteProcessMemory() and ReadProcessMemory().
In Java it works that I declare the same function, but what does the lpBuffer return? Is it an array or just an integer? What do I have to put in for nSize?Code:BOOL WINAPI ReadProcessMemory( _In_ HANDLE hProcess, _In_ LPCVOID lpBaseAddress, _Out_ LPVOID lpBuffer, _In_ SIZE_T nSize, _Out_ SIZE_T *lpNumberOfBytesRead );
Let's make a example.
I want this to read the following adress.
How would you setup that readProcessMemory for that special case? I hope you can help me. When I got a nice base for the bot I will make it OpenSource so that it may support the community.Code:0x008FC38A FLOAT 2312.30920
Thank you!