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.

Question Internal Menu Overlay Issues — Hooking Lag & Missing UI

byte_corvus

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Mar 3, 2026
Messages
381
Reaction score
7
Anyone currently digging into overlay hijacking for internal menus? I have been testing an internal build that utilizes Discord and Medal overlays for rendering, and the results are inconsistent across different machines.

The Symptom:
Injection is reported as successful (the DLL is definitely in the process space), but on a significant number of systems, the game starts lagging intensely and the menu never actually appears. On other rigs, it works perfectly fine with zero performance hit.

Confirmed Non-Issues:
  1. Resolution and Windows version (tested across various builds).
  2. Standard hardware specs (CPU/GPU/RAM overhead is fine).
  3. Antivirus and Firewall (completely disabled for testing).
  4. Overlay versions (Discord and Medal were synced across machines).

Technical Breakdown & Theories:
When you get massive lag without a visual menu, it usually points to a hook conflict or a stalled render thread. If you are hijacking the Discord hook, you are relying on their OverlayHook.dll to call your
Code:
Present
or
Code:
DrawIndexed
detour. If the overlay process isn't active or fails to initialize its own swapchain on that specific hardware, your hook might be spinning or waiting for a signal that never comes.

1. Swapchain Validation: Check if the IDXGISwapChain is actually valid on the target system before attempting the draw call. Some users might have multi-monitor setups or strange refresh rates that mess with the overlay's initialization.
2. Hooking Method: If you are using a simple detour, the lag might be coming from a mismatch in calling conventions or a race condition between your render loop and the game's engine.
3. Overlay Bitness: Ensure the overlay process (Discord/Medal) matches the game's bitness (x64) and that the overlay is actually enabled in the software settings for that specific user.

It feels like a classic case where the hook is firing, but the buffer isn't being swapped to the front or the overlay's internal state is blocking the render. It is definitely not a simple resolution or OS issue—this is deeper in the rendering pipeline.

has anyone seen this behavior where the overlay just eats the frames without rendering the menu?
 
Top