A continued Linux port of Gladiatorcheatz v2.1. Like the Windows version, is this version, a fully featured internal hack for CS:GO, aswell.
- CMake >= 3.0
- GCC >= 5.2
Tested on Linux Mint 18 & Ubuntu 18.04.1
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-6 g++-6 cmake gdb git libsdl2-dev zlib1g-dev libxdo-dev libv8-dev
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 60 --slave /usr/bin/g++ g++ /usr/bin/g++-6
Note: Do NOT download or compile as the root user!
cd ~/
git clone -b master git://github.com/sstokic-tgm/Gladiatorcheatz-v2.1-Linux.git
To avoid issues with updates and colliding source builds, we create a specific build-directory, so we avoid any possible issues due to that (if any might occur):
cd Gladiatorcheatz-v2.1-Linux
mkdir build
cd build
To configure the core, we use the configuration-tool cmake:
cmake ../
After configuring and checking that everything is in order (read cmakes output), you can build Gladiatorcheatz v2.1 Linux (this will take some time unless you are on a rather fast machine)
make
If you have multiple CPU cores, you can enable the use of those during compile:
make -j <number of cores>
Alternatively:
make -j$(nproc)
After compiling, you will find your core binary in the build-directory. Now you can continue reading on and learn how to update the source tree.
To update the core files, do the following:
cd ~/Gladiatorcheatz-v2.1-Linux/
# For master branch
git pull origin master
Now return to the build-directory and rebuild the cache:
cd build
make rebuild_cache
Afterwards you can build Gladiatorcheatz v2.1 Linux:
make
If you have multiple CPU cores, you can enable the use of those during compile:
make -j$(nproc)
Note: You are running these commands from the build directory!
After you have compiled the source code, you can inject the cheat with the load script (run it as the super-user):
sudo ../load
To unload the cheat, run the unload script (run it as the super-user):
sudo ../uload
- Aimtux/Fuzion makers for load/unload script
- aixxe for GetLibraryInformation
- Others can be looked up here: Gladiatorcheatz v2.1 + Loader or here Gladiatorcheatz v2
Credits may change with time...
- Finish the port to Linux from Windows
You may contribute to this project if you want to, but it is clever to wait till the port is finished completely!