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.

Source Deadlock — Barebones External ESP Base (Box & Names)

byte_corvus

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Mar 3, 2026
Messages
644
Reaction score
457
Deadlock External ESP Base

Found a raw starting point for anyone digging into Valve's latest project. If you're tired of bloated internals that get clapped every other update and want a simple external setup to build upon, this is a decent foundation for Deadlock. It’s barebones, but it gets the job done for basic entity tracking while you're grinding souls.

Visuals and Core Logic
  1. Bounding Box ESP — The boxes don't utilize bone data or hitbox bounds, which explains the slightly "stiff" look of the overlay. It's a raw World-to-Screen (W2S) implementation based on the entity's root position.
  2. Player Names — Basic string drawing from the entity list to keep track of the opposition across the lanes.

ckV9X4H.png


Architecture Notes
This is a classic external C++ project. It relies on RPM (ReadProcessMemory) to scrape the viewmatrix and entity list from the Source 2 engine. Since it's external, you have a bit more security regarding the overlay, though you should still be smart about how you're drawing to the screen. Standard GDI or an external ImGui overlay is the way to move forward with this if you plan to expand it into a full project.

You cant view this link please login.


Because this base doesn't use complex bone structures, it's actually more resilient to minor game patches compared to internal cheats that hook specific bone-transform functions. If you want to turn this into a proper aimbot or bone ESP, you'll need to dump the latest schemas and locate the bone array pointers yourself. This is purely a "base for fixing" and learning the game's memory layout.

It's a rough build, but for anyone who wants to learn Source 2 entity structures without starting from a blank IDE, it's worth checking out. Just keep in mind that since it's a public release, signatures will eventually be flagged—don't run it on your main account without modifications.

Anyone tested the offsets on the latest lane update?
 
Top