Search results

  1. S

    Paladins & Realm Royale Source Hack | Odin

    The developer of popular hacks for Paladins & Realm Royale games is sharing the well-known source code of Odin. Credits: Wooteck
  2. S

    MW2 Leaked Source Cheat | Aimbot, Visuals

    Credits: Ethannni9i
  3. S

    Sea of Thieves External Source ESP Hack

    Sea of Thieves Source ESP hack that allows players to see the location of in-game resources such as treasure, barrels, or other items. Credits: FunnyMoney0
  4. S

    CSGO Source Cheat CSGO Python cheat - esp, triggerbot, radarhack

    Credits: ScreenFrisk https://github.com/screenfriskofficial/SFHproject Authorization is present (you can cut it out if you use it personally)
  5. S

    CSGO Source Cheat BebraWare simple legit cheat csgo source code + DLL

    Credits: BebraWareCheat - ~~Aimbot~~ - ~~Triggerbot~~ - 2D BOX ESP - Corner Box Esp - Glow - Anti-Flash - ~~Bunnyhop~~ - Fov Changer - Thirdperson - Crosshair - RCS - RadarHack - And More
  6. S

    CSGO Source Cheat Pandora semi-fix source

    Download: https://mega.nz/file/wSwD1YzQ#EpYnmnilFQfpiuFSqQVGSOLwq10e2BYVz0CiZPKnK84 Credits: dex0xdb
  7. S

    ImGUI Blur

    To achieve a blur effect on an ImGUI element, you can use an ImGUI add-on library called "ImGuizmo" which provides a variety of additional graphical features, including blurring. Here's how you can use ImGuizmo to apply a blur effect to an ImGUI element: Download the ImGuizmo library: You can...
  8. S

    C/C++ Creating a Key Authentication System in C++

    A key authentication system can be implemented in C++ by following these basic steps: Generate a set of unique keys: This can be done by using a cryptographic hash function to generate random keys that are unique to each user. These keys can be stored in a database or a text file. Implement a...
  9. S

    C/C++ Standard ImGui functionality + 10 examples of Imgui functions

    ImGui is a powerful and flexible library that provides many features and functionalities for creating user interfaces. Some of the standard ImGui functionality includes: Window creation and management - Allows for the creation and management of windows in the user interface. Widgets - Provides...
  10. S

    C/C++ AddRectMultiColorRounded ImGui

    AddRectMultiColorRounded is an ImGui function that allows you to draw a rectangle with multiple colors and rounded corners. Here's an example of how to use it: ImGui::GetWindowDrawList()->AddRectMultiColor( ImVec2(100, 100), // top-left corner ImVec2(200, 200), // bottom-right corner...
  11. S

    How to get offsets from the csgo game - hazedumper

    Offsets are specific memory addresses used by a program to locate specific values or data structures in the memory of another program. In the context of a game like CS:GO, offsets can be used to locate information such as player positions, health, ammo, and other game-related data. I recommend...
  12. S

    C/C++ Link to the site in the Imgui button

    Here's an example of how to create a button with a link to a website in ImGui: ImGui::Button("Click Me!"); if (ImGui::IsItemHovered() && ImGui::IsMouseClicked(0)) { // Open the link in the default browser std::system("start https://ssource.net"); } In this example, we create a button...
  13. S

    Lua How to create a script for the game Roblox

    Creating a script for the game Roblox involves using a programming language called Lua. Here is a basic overview of the steps involved in creating your own script: Install a Lua editor: To create a Roblox script, you will need a text editor or Integrated Development Environment (IDE) that...
  14. S

    C/C++ WebSocket client in C++

    To create a WebSocket client in C++ using the WebSocket++ library, you can follow these steps: Install the WebSocket++ library: First, you'll need to download and install the WebSocket++ library from its website or through a package manager. Include the necessary headers: In your C++ code...
  15. S

    Python Creating a movie download function for Telegram

    To create a movie download function for a Telegram bot, you'll need to use the Telegram Bot API and a library for HTTP requests. Here's an example in Python using the requests library: import requests # Replace YOUR_BOT_TOKEN with your actual bot token BOT_TOKEN = 'YOUR_BOT_TOKEN' # Define a...
  16. S

    C/C++ ImGui 10+ buttons with anims.

    ImGui (short for Immediate Mode GUI) is a user interface library designed for creating graphical user interfaces in games and other real-time applications. Here's an example of how you could create 10+ buttons using ImGui in C++: Developer: annihilatorq
  17. S

    C/C++ Multicolor loading circle

    Here's an example of how you could create a multicolor loading circle using ImGui in C++: #include <imgui.h> void MyImGuiFunction() { // Start a new ImGui window ImGui::Begin("My Window"); // Set up the loading circle parameters const float circleRadius = 20.0f; const...
  18. S

    C/C++ Imgui gradient text

    Here's an example of how you could create gradient text using ImGui in C++: #include <imgui.h> void MyImGuiFunction() { // Start a new ImGui window ImGui::Begin("My Window"); // Set up the text parameters const char* text = "Gradient Text"; const ImVec2 textPos =...
Top