Crossfire speedhack source

02/20/2016 07:39 Hotsause03#1
This is a public source.
I Hope This Will Help
Code:
#define dw_pWeaponMgr 0x15ECE34 //  8B 0D ?? ?? ?? ?? 8B 04 B1 D9 E8
#define MoveSpeedPenalty 0xD00

VOID SpeedHack()
{
    DWORD CShellBase = (DWORD)GetModuleHandleA("CShell.dll");
    if(!CShellBase) return;
    DWORD pWeaponMgr        = *(DWORD*)(CShellBase+dw_pWeaponMgr);
    for(int i=0; i<=999; i++)
    {
        DWORD Weapon = *(DWORD*)(pWeaponMgr + (4*i));
        if(Weapon != 0)
        {
            if(GetAsyncKeyState(VK_SHIFT))
            {
                *(float*)(Weapon + MoveSpeedPenalty) = -1.0f;
            }
        }
    }
}
Works 100%

Credits To:
02/20/2016 08:16 deanchester_29#2
how to use this?
02/20/2016 09:09 Hotsause03#3
Quote:
Originally Posted by deanchester_29 View Post
how to use this?
build in C++

Quote:
Originally Posted by deanchester_29 View Post
how to use this?
build in C
02/20/2016 11:14 Moope#4
where do u found it? is the addy up to date?

i will check this out monday, but i think its not working ;) becouse CShell String is unctypted.. and so on