Speed hack in CSSi See this but i don't know how to start.. Help me please.. int iFrameCounter = 0; void DoSpeed(int iRate) { if(iRate < 1) { return; } if(iRate > 20) { return; } //Speed up once every X frames if(iFrameCounter >= (21 - iRate)) { *pSpeedCounter -= 1; // *(DWORD*)0x159D67C -= 1; iFrameCounter = 0; } else { iFrameCounter++; }
Code: //Speed up once every X frames if(iFrameCounter >= (21 - iRate)) { *pSpeedCounter -= 1; // *(DWORD*)0x159D67C -= 1; iFrameCounter = 0; } In that line.
What do you mean you don't know where to start? You don't know how to add it so it works or you don't know what it is?
i mean that i will make a hack using C++ what command will i start? is it : include <d3d9.h> ?? Teach me how to make a speed hack thats all..