├── README.md ├── ShooterGameCheat.sln └── ShooterGameCheat ├── ShooterGameCheat.vcxproj ├── ShooterGameCheat.vcxproj.filters ├── detours ├── detours.cpp ├── detours.h ├── detver.h ├── disasm.cpp ├── disolarm.cpp ├── disolarm64.cpp ├── disolia64.cpp ├── disolx64.cpp ├── disolx86.cpp ├── image.cpp └── modules.cpp ├── dllmain.cpp ├── game ├── adapt_data.h ├── base_struct.h ├── game.cpp └── game.h ├── shooter_game_cheat.cpp └── utils.h /README.md: -------------------------------------------------------------------------------- 1 | A Simple Cheat for ShooterGame. -------------------------------------------------------------------------------- /ShooterGameCheat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat.sln -------------------------------------------------------------------------------- /ShooterGameCheat/ShooterGameCheat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/ShooterGameCheat.vcxproj -------------------------------------------------------------------------------- /ShooterGameCheat/ShooterGameCheat.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/ShooterGameCheat.vcxproj.filters -------------------------------------------------------------------------------- /ShooterGameCheat/detours/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/detours/detours.cpp -------------------------------------------------------------------------------- /ShooterGameCheat/detours/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/detours/detours.h -------------------------------------------------------------------------------- /ShooterGameCheat/detours/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/detours/detver.h -------------------------------------------------------------------------------- /ShooterGameCheat/detours/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/detours/disasm.cpp -------------------------------------------------------------------------------- /ShooterGameCheat/detours/disolarm.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_ARM_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /ShooterGameCheat/detours/disolarm64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_ARM64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /ShooterGameCheat/detours/disolia64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_IA64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /ShooterGameCheat/detours/disolx64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_X64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /ShooterGameCheat/detours/disolx86.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_X86_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /ShooterGameCheat/detours/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/detours/image.cpp -------------------------------------------------------------------------------- /ShooterGameCheat/detours/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/detours/modules.cpp -------------------------------------------------------------------------------- /ShooterGameCheat/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/dllmain.cpp -------------------------------------------------------------------------------- /ShooterGameCheat/game/adapt_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/game/adapt_data.h -------------------------------------------------------------------------------- /ShooterGameCheat/game/base_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/game/base_struct.h -------------------------------------------------------------------------------- /ShooterGameCheat/game/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/game/game.cpp -------------------------------------------------------------------------------- /ShooterGameCheat/game/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/game/game.h -------------------------------------------------------------------------------- /ShooterGameCheat/shooter_game_cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/shooter_game_cheat.cpp -------------------------------------------------------------------------------- /ShooterGameCheat/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expost/GameCheat/HEAD/ShooterGameCheat/utils.h --------------------------------------------------------------------------------