Memory Hack base Using Classes Help I Don't Get It
Hi dudes,
I finished my first base but it is fuc**n long work to find all the addys so i need to use classes. I thonk that if I use classes i don't need addys right ?
And i tried Brimir's tut but i don't get it. So what should i do?
in the .h file
Code:
class _BasicPlayerInfo
{
public:
float MovementDuckWalkRate;
};
and
in the .cpp file
Code:
DWORD cshell = (DWORD)LoadLibraryA( "CShell.dll" );
_BasicPlayerInfo * BasicPlayerInfo = *(_BasicPlayerInfo ** )(cshell + 0xA021F8);
if(BasicPlayerInfo)
{
BasicPlayerInfo->MovementDuckWalkRate = 1.0f; //crouch speed
}
BTW @
Brimir in your tut for classes you have written "Door map buggen" what is this ?
then what it means and tell me how to make the base with classes ?
With that you can walk through some walls :P
But, then you need to learn C++ or C# or any other language where they use this.
i know C# but i dont know c++ well ok thanks for the info
c++ and C# are similar..... shouldn't be too hard to learn c++ if you know c#