In this post I discuss some ideas I've had and captured from my little experience in this hard topic.
Tag: c++
Internal vs External Game Hacks
If you're into game hacking then you probably have already heard the terms "Internal" and "External" hacks. In this post I will go over the differences of each with code examples and which to opt for when hacking.
Dynamically Import Functions
This concept is easy to understand and has its uses, such as, calling Windows Native functions, which are functions of Windows that aren't officially documented or to hide Windows API usage.
Calling C++ Functions from Java
Calling C/C++ code in Java is something that can make wonders in an application and it's especially used in Android apps. The truth is, it isn't really that hard to do so.