Recent content by rushensky

  1. rushensky

    Hook WndProc (ImGui)

    LRESULT __stdcall CALLBACK hkWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { if (uMsg == WM_KEYDOWN) { if (wParam == VK_INSERT) m_pDrawMenu->IsVisible = !m_pDrawMenu->IsVisible; } if (ImGui_ImplWin32_WndProcHandler(hWnd, uMsg, wParam, lParam) &&...
  2. rushensky

    Box smooth fade

    When a player becomes invalid, the box fades out smoothly. Not very useful function, but it looks nice :p // Expression float Interp(float s1, float s2, float s3, float f1, float f3) { if (s2 == s1) return f1; if (s2 == s3) return f3; if (s3 == s1)...
  3. rushensky

    Ideal RCS Standalone (cs1.6)

    Demonstration:
  4. rushensky

    Ideal RCS Standalone (cs1.6)

    You can try to use this code in cs go cheats void CLegitBot::RCSStandalone(usercmd_s* cmd) { if (!(m_pWeapons->IsCurWeaponRifle() || m_pWeapons->IsCurWeaponMachineGun() || m_pWeapons->IsCurWeaponSubMachineGun())) return; static QAngle returnangles; bool m_IsWork =...
  5. rushensky

    Stereon - cs:go simple hack

    very cool
Top