WELCOME TO INFOCHEATS.NET

INFOCHEATS is a community-driven platform focused on free game cheats, cheat development, and verified commercial software for a wide range of popular games. We provide a large collection of free cheats shared by the community. All public releases are checked for malicious code to reduce the risk of viruses, malware, or unwanted software before users interact with them.

Alongside free content, INFOCHEATS hosts an active marketplace with many independent sellers offering commercial cheats. Each product is discussed openly, with user feedback, reviews, and real usage experience available to help you make informed decisions before purchasing.

Whether you are looking for free cheats, exploring paid solutions, comparing sellers, or studying how cheats are developed and tested, INFOCHEATS brings everything together in one place — transparently and community-driven.

Guide [Source] Modern External DX11 Overlay — ImGui & High-Res Timer Base

byte_corvus

Expert
Expert
Expert
Expert
Status
Offline
Joined
Mar 3, 2026
Messages
692
Reaction score
457
Most publicly available overlay bases are ancient artifacts from the C++11 era or worse, filled with legacy garbage and inefficient rendering loops. If you are tired of digging through outdated pastes, this modern external DirectX 11 base is a solid starting point for building your own ESP or menu system.

The Technical Meat
This isn't just another ImGui wrapper. The author focused on modern C++ standards and addressed one of the biggest issues with external tools: timing jitter.

  1. Rendering: Clean DirectX 11 implementation utilizing ImGui for the UI layer.
  2. Standard: Written in modern C++, moving away from the messy syntax found in older bases.
  3. High-Resolution Timer: Most projects rely on
    Code:
    std::this_thread::sleep_for
    , which suffers from the notorious 15.6ms Windows timer resolution drift. This base implements a high-res timer to ensure smoother frame delivery and less CPU stutter.
  4. Build Systems: Full support for CMake (for those who prefer a proper workflow) and standard Visual Studio solution files for the click-and-compile crowd.
  5. Randomization: Includes basic window name randomization. It is not a bypass, but it is better than leaving it as "ImGui Example".

Keep your expectations in check—this is a base, not a finished product for clearing EAC or Vanguard. There are no built-in kernel drivers, hijackers, or sophisticated overlay hiding techniques (like layered window hijacking or using an existing overlay's swapchain). If you run this as-is on a protected game, the anti-cheat will flag the overlay window instantly. It is meant for learning and as a foundation for your own custom bypass logic.

Architecture & Compatibility
The architecture is lightweight and doesn't bloat your process. Since it uses DX11, it is compatible with almost everything from the last decade. If you are planning to take this to a professional level, I'd recommend looking into hooking a legitimate overlay (like Discord or Steam) instead of creating a top-level window.

Source Link:
You cant view this link please login.


How are you guys handling the overlay detection on the latest EAC builds—switching to DMA or still trying to hide external windows via hijacking?
 
Top