External multihack for Counter-Strike 1.6 (Build 8684) written in Go
- Player boxes with team colors
- Health bars
- Player names
- Distance display
- Configurable hotkey and colors
- FOV-based target selection
- Smooth aiming
- Lock-on target tracking
- Configurable FOV radius and smoothness
- Automatic fire when crosshair is over an enemy
- Configurable activation key
- Random delay to reduce detection
- Built with veil — a transparent GDI overlay library for Windows
- Click-through, always-on-top
- 60fps repaint loop
Tested on FunGun — Clean ✅
- Counter-Strike 1.6 Steam (Build 8684)
- Windows 10/11
- Go 1.21+
git clone https://github.com/Cameliuu/zenith
cd zenith
go build -ldflags="-H windowsgui" -o zenith.exe .- Launch CS 1.6
- Run
zenith.exe - Use hotkeys to toggle features
| Key | Feature |
|---|---|
| F2 | Toggle ESP |
| F3 | Toggle Aimbot |
| F4 | Toggle Triggerbot |
zenith/
├── engine/ — game loop, entity reading, feature logic
│ ├── aimbot/ — aimbot logic
│ ├── config/ — feature configuration
│ ├── entity/ — entity reading from memory
│ ├── overlay/ — W2S, coordinate utils
│ └── offsets/ — memory offsets for build 8684
├── memory/ — ReadProcessMemory/WriteProcessMemory wrappers
└── input/ — key binding utilities
Built on top of veil — a transparent Windows overlay library also written in Go.
For educational purposes only.

