- Status
- Offline
- Joined
- Mar 3, 2026
- Messages
- 598
- Reaction score
- 7
Looking for a stealthy way to render external visuals?
Hijacking the Discord overlay is a veteran tactic. It allows you to draw your ESP and menus on a legitimately injected surface that is already part of the game's swapchain, making your overlay significantly harder to detect than a standard transparent "AlwaysOnTop" window. I have been digging into a C# implementation that ditches GDI+ for SkiaSharp, giving you clean, hardware-accelerated drawing.
Core Logic & Features
Implementation Details
The project handles the window lookup and hijack process, providing a usable canvas. The original logic was adapted from a known method of overlay manipulation and ported over to the C# ecosystem for better accessibility in external tools. It is a solid foundation if you are tired of fighting with layered windows and Aero transparency issues.
Source repository:
This base is definitely cleaner than the old GDI pastes floating around. Anyone tested the performance impact on CPU-heavy titles like Tarkov or Rust?
Hijacking the Discord overlay is a veteran tactic. It allows you to draw your ESP and menus on a legitimately injected surface that is already part of the game's swapchain, making your overlay significantly harder to detect than a standard transparent "AlwaysOnTop" window. I have been digging into a C# implementation that ditches GDI+ for SkiaSharp, giving you clean, hardware-accelerated drawing.
Core Logic & Features
- Language: Strictly C# — perfect for those building .NET-based external bases.
- Graphics Engine: Uses SkiaSharp, which is night and day compared to native Windows drawing calls in terms of performance and flicker.
- Bypass Utility: By wrapping your render inside the Discord overlay process, you avoid common detection vectors used by simple anti-cheat heuristics that look for suspicious overlays.
Implementation Details
The project handles the window lookup and hijack process, providing a usable canvas. The original logic was adapted from a known method of overlay manipulation and ported over to the C# ecosystem for better accessibility in external tools. It is a solid foundation if you are tired of fighting with layered windows and Aero transparency issues.
Source repository:
You cant view this link please login.
Does this need to be internal?
No, this is an external method that hijacks the existing Discord overlay process from the outside.
Is it detected?
The hijacking method itself is a classic, but remember that anything public can have its signatures flagged. Analyze the hijacking logic and consider mutating the functions before integrating it into a private project.
Dependencies?
You will need the SkiaSharp NuGet packages and a working Discord installation with the overlay feature enabled for your target game.
No, this is an external method that hijacks the existing Discord overlay process from the outside.
Is it detected?
The hijacking method itself is a classic, but remember that anything public can have its signatures flagged. Analyze the hijacking logic and consider mutating the functions before integrating it into a private project.
Dependencies?
You will need the SkiaSharp NuGet packages and a working Discord installation with the overlay feature enabled for your target game.
This base is definitely cleaner than the old GDI pastes floating around. Anyone tested the performance impact on CPU-heavy titles like Tarkov or Rust?