CS2Fixes is a Metamod plugin with fixes and features aimed but not limited to zombie escape. This project also serves as a good example and help for source2mod and other developers.
game/csgo
on your servercfg/cs2fixes/cs2fixes.cfg
, many features are disabled by defaultadmins.cfg.example
to admins.cfg
which can be found in addons/cs2fixes/configs
and follow the instructions within to add adminsYou can find the documentation of the fixes and features here.
Reimplementing all these features as standalone plugins would duplicate quite a lot of code between each. Metamod is not much more than a loader & hook manager, so many common modding features need a fair bit of boilerplate to work with. And since our primary goal is developing CS2Fixes for all zombie escape servers, there is not necessarily a drawback to distributing our work in this form at the moment.
The CS2Fixes name comes from the CSSFixes and CSGOFixes projects, which were primarily aimed at low-level bug fixes and improvements for their respective games. Long term, we see this plugin slimming down and becoming more similar to them. Since as the CS2 modding scene matures, common things like an admin system and RTV become more feasible in source2mod or a similar modding platform.
git clone https://github.com/Source2ZE/CS2Fixes/ && cd CS2Fixes
git submodule update --init --recursive
Requires Docker to be installed. Produces Linux builds only.
docker compose up
Copy the contents of dockerbuild/package/
to your server's game/csgo/
directory.
export MMSOURCE112=/path/to/metamod
export HL2SDKCS2=/path/to/sdk/submodule
mkdir build && cd build
python3 ../configure.py --enable-optimize --sdks cs2
ambuild
Make sure to run in "x64 Native Tools Command Prompt for VS"
set MMSOURCE112=\path\to\metamod
set HL2SDKCS2=\path\to\sdk\submodule
mkdir build && cd build
py ../configure.py --enable-optimize --sdks cs2
ambuild
Copy the contents of build/package/
to your server's game/csgo/
directory.