cs2go is a simple external ESP for Counter-Strike 2, written in Go.
To build this project, you will need to download and install Go from the official website: https://go.dev/doc/install.
Once you have installed Go, follow these steps:
- Download the source code and extract the ZIP file to a directory of your choice.
- Open the directory in your terminal or command prompt.
- Make sure your environment variables
GOOS
is set towindows
andGOARCH
is set toamd64
. You can set these variables by running the following commands:set GOOS=windows set GOARCH=amd64
- Build the project using the following command:
The
go build -ldflags "-s -w"
ldflags
are optional and remove debugger functionality and strip the binary resulting in smaller file size. - Run the program while in a match to use.
Check out this video for an example of cs2go in action:
Thank you for using cs2go!