https://github.com/8dcc/hl-cheat
Linux cheat for goldsrc games (HL1/CS 1.6/DoD/TFC)
https://github.com/8dcc/hl-cheat
based cheat counter-strike counter-strike-cheat goldsrc half-life half-life-cheat linux linux-cheat sigma-male
Last synced: 4 months ago
JSON representation
Linux cheat for goldsrc games (HL1/CS 1.6/DoD/TFC)
- Host: GitHub
- URL: https://github.com/8dcc/hl-cheat
- Owner: 8dcc
- License: gpl-3.0
- Created: 2023-07-18T20:03:59.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-27T02:00:00.000Z (7 months ago)
- Last Synced: 2025-02-23T12:14:31.793Z (4 months ago)
- Topics: based, cheat, counter-strike, counter-strike-cheat, goldsrc, half-life, half-life-cheat, linux, linux-cheat, sigma-male
- Language: C
- Homepage:
- Size: 3.61 MB
- Stars: 8
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
#+title: Half-Life cheat
#+options: toc:nil
#+startup: showeverything
#+author: 8dcc*Linux cheat for goldsrc games.*
#+TOC: headlines 2
* Description
Simple linux cheat for most goldsrc games, made in C.Supported games:
- [[https://store.steampowered.com/app/70/HalfLife/][Half-Life 1]]
- [[https://store.steampowered.com/app/10/CounterStrike/][Counter-Strike 1.6]]
- [[https://store.steampowered.com/app/20/Team_Fortress_Classic/][Team Fortress Classic]]
- [[https://store.steampowered.com/app/30/Day_of_Defeat/][Day of Defeat]]This project was heavily inspired by [[https://github.com/UnkwUsr/hlhax][UnkwUsr/hlhax]], and would not have been
possible without his help. Make sure to check out his repo too.Also make sure to check out [[https://github.com/deboogerxyz/ahc][deboogerxyz/ahc]].
* Features
| Feature | Command | Values (0..n) |
|------------+---------------+------------------------|
| Bhop | =cv_bhop= | off/on |
| Autostrafe | =cv_autostrafe= | off/rage/legit |
| Aimbot | =cv_aimbot= | off/fov* |
| Autoshoot | =cv_autoshoot= | off/on* |
| ESP | =cv_esp= | off/3d-box/name/all |
| Chams | =cv_chams= | off/players/hands/all* |
| Crosshair | =cv_crosshair= | off/length |
| Tracers | =cv_tracers= | off/on* |#+begin_quote
*Note:* Aimbot FOV goes from 0 (off) to 180 (all enemies)
#+end_quote#+begin_quote
*Note:* If =cv_autoshoot= is enabled, and =cv_aimbot= is enabled, it will stop
attacking if there is no visible target.
#+end_quote#+begin_quote
*Note:* Chams color can be changed from the =h_glColor4f()= function inside
[[https://github.com/8dcc/hl-cheat/blob/main/src/hooks.c][src/hooks.c]]. Since this cheat is not hard to compile, I rather have less
console variables than more customization at runtime.
#+end_quote#+begin_quote
*Note:* Bullet tracer color, width and time can be changed at the bottom of the
=bullet_tracers()= function inside [[https://github.com/8dcc/hl-cheat/blob/main/src/features/misc.c][src/features/misc.c]]. See previous chams note.
#+end_quote* Building
#+begin_src console
$ git clone --recurse-submodules https://github.com/8dcc/hl-cheat
$ cd hl-cheat
$ make
...
#+end_srcNote that you will need to clone with =--recurse-submodules= for the sdk. If you
have already cloned it, you can just:#+begin_src console
$ cd hl-cheat
$ git submodule update --init --recursive
#+end_src* Injecting
Uses the [[https://www.gnu.org/savannah-checkouts/gnu/gdb/index.html][gdb]] debugger for injecting the library.#+begin_src console
$ ./injector.sh
[sudo] password for username:...
hl-cheat loaded!
#+end_src