Announcement

Collapse
No announcement yet.

How to use ReClass to hack games

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • How to use ReClass to hack games

    ReClass is a tool similar to Cheat Engine Data Dissector, what is nice about it is it will spit out C classes that you use in your code. You just typecast a class pointer to an address and then you can access the member variables very easily in an internal hack. Here is a tutorial on it's basic usage



    ReClass usage Example:

    ReClass generated class:
    Code:
    class playerent
    {
    public:
    	char _0x0000[4];
    	vec vHead; //0x0004 
    	char _0x0010[36];
    	vec vLocation; //0x0034 
    	vec vViewAngle; //0x0040 
    	char _0x004C[37];
    	BYTE bScoping; //0x0071 
    	char _0x0072[134];
    	__int32 health; //0x00F8 
    	__int32 armor; //0x00FC 
    	char _0x0100[292];
    	BYTE bAttacking; //0x0224 
    	char name[16]; //0x0225 
    	char _0x0235[247];
    	BYTE team; //0x032C 
    	char _0x032D[11];
    	BYTE state; //0x0338 
    	char _0x0339[59];
    	weapon* weapon; //0x0374 
    	char _0x0378[520];
    };

    typecasting a pointer to the address:
    Code:
    playerent * localPlayer = (playerent*)*(DWORD*)(0x509B74);

    Accessing the member variables:
    Code:
    localPlayer->vHead.x = 999;
    Last edited by [GH]Rake; 04-14-2016, 09:03:14 AM.
Working...
X