Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/danielkrupinski/goesp

Cross-platform streamproof ESP hack for Counter-Strike: Global Offensive, written in modern C++. Rendering and GUI powered by Dear ImGui + FreeType.
https://github.com/danielkrupinski/goesp

counter-strike counter-strike-global-offensive cpp17 cpp20 csgo csgo-cheat directx directx9 dll dll-injection esp game-hack game-hacking imgui internal json linux nlohmann-json reverse-engineering windows

Last synced: 26 days ago
JSON representation

Cross-platform streamproof ESP hack for Counter-Strike: Global Offensive, written in modern C++. Rendering and GUI powered by Dear ImGui + FreeType.

Awesome Lists containing this project

README

        

# GOESP
[![Windows](https://github.com/danielkrupinski/GOESP/workflows/Windows/badge.svg?branch=master&event=push)](https://github.com/danielkrupinski/GOESP/actions?query=workflow%3AWindows) [![Linux](https://github.com/danielkrupinski/GOESP/workflows/Linux/badge.svg?branch=master&event=push)](https://github.com/danielkrupinski/GOESP/actions?query=workflow%3ALinux)

Cross-platform streamproof ESP hack for CS:GO. Currently supports Windows and Linux.

## Showcase

### Hit Effect (new!)

![Hit Effect](https://i.imgur.com/pQUBuS4.gif)

### Player List

![Player List](https://i.imgur.com/Hvc4Olk.png)

### Menu

![Menu](https://i.imgur.com/3zvz2us.png)

### Purchase List

![Purchase List](https://i.imgur.com/V4lIx1G.png)

### Player ESP

![Player ESP](https://i.imgur.com/l4cOW0c.png)

## Getting started

### Prerequisites

#### Windows
Microsoft Visual Studio 2019 (preferably the latest version), platform toolset v142 and Windows 10 SDK are required in order to compile GOESP. If you don't have ones, you can download VS [here](https://visualstudio.microsoft.com/) (Tools and Windows SDK are installed during Visual Studio Setup).

#### Linux
- CMake 3.13.0+
- gcc and g++ 10 **or** clang 10+
- SDL2 library

Below are example commands for some distributions to install the required packages:
##### Ubuntu
sudo apt-get install cmake gcc-10 g++-10 libsdl2-dev
##### Manjaro
sudo pacman -S cmake gcc g++ sdl2

### Downloading
There are two options of downloading the source code:

#### Without [git](https://git-scm.com)

Choose this option if you want pure source and you're not going to contribute to the repo. Download size ~600 kB.

To download source code this way [click here](https://github.com/danielkrupinski/GOESP/archive/master.zip).

#### With [git](https://git-scm.com)

Choose this option if you're going to contribute to the repo or you want to use version control system. Git is required to step further, if not installed download it [here](https://git-scm.com) or install it from your package manager.

Open git command prompt and enter following command:

git clone https://github.com/danielkrupinski/GOESP.git

`GOESP` folder should have been succesfully created, containing all the source files.

### Building

#### Windows
Open `GOESP.sln` file, select **Release** configuration and press CTRL+B.

#### Linux
Execute the following commands in the main GOESP directory:

mkdir Release
cd Release
cmake -D CMAKE_BUILD_TYPE=Release ..
make -j $(nproc --all)

## FAQ

### How do I open menu?
Press INSERT while focused on CS:GO window.

### Can I use custom font in the ESP?
Of course. After installing new font you have to unload and load GOESP again.

### Does this hack hook any of game engine functions?
Nope. Functions GOESP hooks are:

on windows:
- DirectX Present & Reset from overlay
- SetCursorPos from overlay
- game window WNDPROC

on linux:
- SDL_PollEvent
- SDL_GL_SwapWindow

### How GOESP renders its stuff?
GOESP hooks game overlays and draw things using them. Currently supported overlays are Steam and Discord.

### Is the ESP visible on recording?
Nope, but you have to use 'Game capture' instead of 'Window capture' or 'Desktop capture'. Also remember to uncheck 'Capture external overlays' option in your recording software.

### Can I use this alongside other cheats?
Yes, GOESP shouldn't collide with any other game modification.

## License

> Copyright (c) 2019-2021 Daniel Krupiński

This project is licensed under the [MIT License](https://opensource.org/licenses/mit-license.php) - see the [LICENSE](LICENSE) file for details.