Inject."Engine.exe" CreateHack.NoRecoil == 0x0ff2b /*CreateHack makes a function called NoRecoil with the adress 0x0ff2b and can be told to Freeze, Pause(seconds) or whatever...*/ CreateHack.NoSpread == 0x0ff2c /*Same as top but NoSpread not NoRecioil (for the Choobs)*/ If.KeyDown(VK_NUMPAD1) NoRecoil.Freeze /*If Numpad1 is pressed, the address at NoRecoil gets frozen */ If.KeyDown(VK_NUMPAD2) NoSpread.Freeze /Same as up there
EXPLANATION: The two hex addresses I used were totally random I just made up on the spot. ----------------------------------------------------------------------- I don't really make hacks thats not my thing, but CreateHack makes a new function or whatever you VB people call it, and then the == declares the address that the hack your doing is stored at, such as the recoil address, the spread address, or the bone addresses for like aimbots. ----------------------------------------------------------------------- The If.KeyDown is saying if you press a button, some event happens. In C++ this would be equal to if(GetAsyncKeyState(VK_NUMPAD1)) ----------------------------------------------------------------------- The NoRecoil.Freeze tells to Freeze the value at the address that NoRecoil occurs at.