CS16Client [](https://github.com/Velaron/cs16-client/actions)

October 5, 2025 ยท View on GitHub

Reverse-engineered Counter Strike 1.6 client, designed for mobile platforms and other officially non-supported platforms.

Boosty.to

Support me on Boosty.to, if you like my work and would like to support further development goals, like reverse-engineering other great mods.

Important contributors:

Download

You can download a build at the Releases section, or use these links for common platforms:

Other platforms...

Installation

To run CS16Client you need the latest developer build of Xash3D FWGS. You have to own the game on Steam and copy valve and cstrike folders into your Xash3D FWGS directory. After that, just install the APK and run.

Configuration (CVars)

CVarDefaultMinMaxDescription
hud_color"255 160 0"--HUD color in RGB.
cl_quakeguns001Draw centered weapons.
cl_weaponlag00.0-Enable weapon lag/sway.
xhair_additive001Makes the crosshair additive.
xhair_color"0 255 0 255"--Crosshair's color (RGBA).
xhair_dot001Enables crosshair dot.
xhair_dynamic_move101Jumping, crouching and moving will affect the dynamic crosshair (like cl_dynamiccrosshair).
xhair_dynamic_scale00-Scale of the dynamic crosshair movement.
xhair_gap_useweaponvalue001Makes the crosshair gap scale depend on the active weapon.
xhair_enable001Enables enhanced crosshair.
xhair_gap0015Space between crosshair's lines.
xhair_pad00-Border around crosshair.
xhair_size40-Crosshair size.
xhair_t001Enables T-shaped crosshair.
xhair_thick00-Crosshair thickness.

Building

Clone the source code:

git clone https://github.com/Velaron/cs16-client --recursive

Using CMakePresets.json

cmake --preset <preset-name>
cmake --build build
cmake --install build --prefix <path-to-your-installation>

Windows

cmake -A Win32 -S . -B build
cmake --build build --config Release
cmake --install build --prefix <path-to-your-installation>

Linux and macOS

cmake -S . -B build
cmake --build build --config Release
cmake --install build --prefix <path-to-your-installation>

Android

cd android
./gradlew assembleRelease