This project repo contains external and internal cheats for Assault Cube based off code from some beginner tutorials.
- This folder contains the source code and a compiled
.exe
file - This cheat just sets your HP to 10000
- After opening Assault Cube, open
main.exe
to run the cheat
- This folder also contains the source code and a compiled
.exe
file - This one is a better version of
external_cheat
since it includes memory manipulation - After opening Assault Cube, open
main.exe
to run the cheat
- This folder contains a Visual Studio 2022 project which features an internal cheat for Assault Cube.
- This cheat contains infinite HP, ammo, grenades and a no recoil cheat (activate with F1-F4 keys)
- The compiled .dll file is in
comp6841-project/internal_cheat/Release/
- The source code is in
comp6841-project/internal_cheat/src/
- To use this, inject the
.dll
file into the Assault Cube client with a DLL injector. I recommend this one: https://github.com/DarthTon/Xenos
- It also contains the same features as
internal_cheat
, but has a GUI - The compiled .dll file is in
comp6841-project/ac_internal_gui/Release/ac_internal_gui.dll
- The source code is in
comp6841-project/ac_internal_gui/src/src/
- The GUI code was based off https://github.com/adafcaefc/Universal-OpenGL-2-Kiero-Hook, which utilises Kiero and ImGUI
external_cheat
andexternal_cheatv2
were compiled with the Windows API from https://www.mingw-w64.org/, following this guideinternal_cheat
andac_internal_gui
were compiled with the Windows API from Visual Studio 2022- Both APIs were slightly different, so both external cheats need to be slightly modified (change
const char *
s toconst wchar_t *
s) to compile with Visual Studio 2022