exi

User
User
User
User
Status
Offline
Joined
Oct 22, 2024
Messages
78
Reaction score
10
Hi everyone! Today I want to share with you the source (base) of a cheat for Deadlock. The surs of the cheat base allows coders to simplify creating cheats on the Source 2 engine, because it already contains the necessary basic components, for example hooks, interface, modules. And precisely thanks to its modular structure and a rich set of functions, it helps speed up the process and minimize difficulties in writing hacks for the game Deadlock. Author of the base: W1lliam1337.

free cheat deadlock

View hidden content is available for registered users!


Advantages of this source
  1. Doxygen Documentation;
    With the help of doxygen, the availability of information about all modules is ensured, simplifying their understanding. Because of this, the project becomes more convenient for teamwork and subsequent expansion.
  2. Integrated hook management system;
    Using tokenized identifiers and compile-time checking, the framework offers a safe and simple way to create, manage, and delete hooks.
  3. Flexible interface with ImGui.
    The imported ImGui library allows adding cheat parameters to a convenient graphical menu. This is especially useful for configuring and testing functions in real-time.

Framework structure

Deadlock Cheat Base is organized into several key components:

Core (core):
  1. Bootstrap for basic configuration and system startup.
  2. UI for managing the user interface.
Systems (system modules):
  1. Render for graphics and interface visualization.
  2. Input for handling hotkeys and other commands.
  3. Hooker for managing hooks.
Additional modules: modules for memory and pattern analysis help interact with the game's internal structures.

Third-party libraries:
  1. ImGui for the graphical interface.
  2. MinHook for hooks.
  3. Valve SDK for integration with the Source 2 engine.

Requirements

To work with this base you need:
  1. A compiler (Visual Studio, for example) with support for C++20/23 standards.
  2. A Windows PC with DirectX version 11 support.
  3. Integration of the ImGui library.

Conclusion

So, this hack base is suitable for cheat coders who want to focus on creating good projects without hassles. This framework is simple, flexible in configuration, contains all necessary modules, and I think it will become a reliable foundation for your project.
 
Top