├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── AFKJ-Cheeto.sln ├── LICENSE ├── README.md ├── cheat ├── AFKJ-Cheeto.vcxproj ├── AFKJ-Cheeto.vcxproj.filters ├── res │ ├── AFKJ-Cheeto.rc │ ├── demo00.png │ └── resource.h ├── src │ ├── ConfigEntry.hpp │ ├── ConfigManager.hpp │ ├── HookManager.h │ ├── Hotkey.cpp │ ├── Hotkey.h │ ├── HotkeyManager.hpp │ ├── Memory.cpp │ ├── Memory.h │ ├── Module.h │ ├── ModuleManager.h │ ├── Render │ │ ├── Backend │ │ │ ├── DX11Hook.cpp │ │ │ ├── DX11Hook.h │ │ │ ├── DX12Hook.cpp │ │ │ └── DX12Hook.h │ │ ├── Gui │ │ │ ├── fonts │ │ │ │ ├── DejaVuSansMono.hpp │ │ │ │ ├── Rubik.hpp │ │ │ │ ├── binary_to_compressed.exe │ │ │ │ ├── compress.bat │ │ │ │ └── cousine.hpp │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ └── utils │ │ │ │ ├── color.hpp │ │ │ │ ├── gui-util.cpp │ │ │ │ └── gui-util.hpp │ │ ├── Renderer.cpp │ │ └── Renderer.h │ ├── Singleton.h │ ├── Unity │ │ └── unity-methods.hpp │ ├── Utils.cpp │ ├── Utils.h │ ├── appdata │ │ ├── helpers.cpp │ │ ├── helpers.h │ │ ├── il2cpp-api-functions-ptr.h │ │ ├── il2cpp-api-functions.h │ │ ├── il2cpp-appdata.h │ │ ├── il2cpp-functions.h │ │ ├── il2cpp-init.cpp │ │ ├── il2cpp-init.h │ │ ├── il2cpp-metadata-version.h │ │ ├── il2cpp-types-ptr.h │ │ └── il2cpp-types.h │ ├── cheat │ │ ├── cheat.cpp │ │ ├── cheat.h │ │ ├── features │ │ │ ├── Debug.cpp │ │ │ ├── Debug.h │ │ │ ├── LuaEditor.cpp │ │ │ └── LuaEditor.h │ │ └── vars.h │ ├── dllmain.cpp │ ├── events.cpp │ ├── events.h │ ├── events │ │ ├── event.hpp │ │ ├── handlers │ │ │ ├── abstracteventhandler.hpp │ │ │ ├── eventhandlerptr.h │ │ │ ├── functoreventhandler.hpp │ │ │ ├── handlercast.hpp │ │ │ ├── helpers │ │ │ │ ├── innerholder.hpp │ │ │ │ └── objectsaver.hpp │ │ │ └── methodeventhandler.hpp │ │ ├── helpers │ │ │ └── is_equatable.hpp │ │ └── joins │ │ │ ├── abstracteventjoin.cpp │ │ │ ├── abstracteventjoin.h │ │ │ ├── eventjoinwrapper.cpp │ │ │ ├── eventjoinwrapper.h │ │ │ ├── eventjoinwrapper.hpp │ │ │ ├── handlereventjoin.h │ │ │ └── handlereventjoin.hpp │ ├── game-utils.hpp │ ├── global.h │ ├── main.cpp │ └── main.h └── vendor │ ├── UnityResolve │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ └── UnityResolve.hpp │ ├── detours │ ├── detours-x64.lib │ ├── detours-x86.lib │ ├── detours.h │ └── detver.h │ └── xorstr │ └── xorstr.h └── injector ├── Injector.vcxproj ├── Injector.vcxproj.filters └── src ├── config.hpp ├── inject.cpp ├── inject.h ├── load-library.cpp ├── load-library.h ├── main.cpp ├── util.cpp └── util.h /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/.gitmodules -------------------------------------------------------------------------------- /AFKJ-Cheeto.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/AFKJ-Cheeto.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/README.md -------------------------------------------------------------------------------- /cheat/AFKJ-Cheeto.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/AFKJ-Cheeto.vcxproj -------------------------------------------------------------------------------- /cheat/AFKJ-Cheeto.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/AFKJ-Cheeto.vcxproj.filters -------------------------------------------------------------------------------- /cheat/res/AFKJ-Cheeto.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/res/AFKJ-Cheeto.rc -------------------------------------------------------------------------------- /cheat/res/demo00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/res/demo00.png -------------------------------------------------------------------------------- /cheat/res/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/res/resource.h -------------------------------------------------------------------------------- /cheat/src/ConfigEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/ConfigEntry.hpp -------------------------------------------------------------------------------- /cheat/src/ConfigManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/ConfigManager.hpp -------------------------------------------------------------------------------- /cheat/src/HookManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/HookManager.h -------------------------------------------------------------------------------- /cheat/src/Hotkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Hotkey.cpp -------------------------------------------------------------------------------- /cheat/src/Hotkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Hotkey.h -------------------------------------------------------------------------------- /cheat/src/HotkeyManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/HotkeyManager.hpp -------------------------------------------------------------------------------- /cheat/src/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Memory.cpp -------------------------------------------------------------------------------- /cheat/src/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Memory.h -------------------------------------------------------------------------------- /cheat/src/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Module.h -------------------------------------------------------------------------------- /cheat/src/ModuleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/ModuleManager.h -------------------------------------------------------------------------------- /cheat/src/Render/Backend/DX11Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Backend/DX11Hook.cpp -------------------------------------------------------------------------------- /cheat/src/Render/Backend/DX11Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Backend/DX11Hook.h -------------------------------------------------------------------------------- /cheat/src/Render/Backend/DX12Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Backend/DX12Hook.cpp -------------------------------------------------------------------------------- /cheat/src/Render/Backend/DX12Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Backend/DX12Hook.h -------------------------------------------------------------------------------- /cheat/src/Render/Gui/fonts/DejaVuSansMono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Gui/fonts/DejaVuSansMono.hpp -------------------------------------------------------------------------------- /cheat/src/Render/Gui/fonts/Rubik.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Gui/fonts/Rubik.hpp -------------------------------------------------------------------------------- /cheat/src/Render/Gui/fonts/binary_to_compressed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Gui/fonts/binary_to_compressed.exe -------------------------------------------------------------------------------- /cheat/src/Render/Gui/fonts/compress.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Gui/fonts/compress.bat -------------------------------------------------------------------------------- /cheat/src/Render/Gui/fonts/cousine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Gui/fonts/cousine.hpp -------------------------------------------------------------------------------- /cheat/src/Render/Gui/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Gui/gui.cpp -------------------------------------------------------------------------------- /cheat/src/Render/Gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Gui/gui.h -------------------------------------------------------------------------------- /cheat/src/Render/Gui/utils/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Gui/utils/color.hpp -------------------------------------------------------------------------------- /cheat/src/Render/Gui/utils/gui-util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Gui/utils/gui-util.cpp -------------------------------------------------------------------------------- /cheat/src/Render/Gui/utils/gui-util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Gui/utils/gui-util.hpp -------------------------------------------------------------------------------- /cheat/src/Render/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Renderer.cpp -------------------------------------------------------------------------------- /cheat/src/Render/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Render/Renderer.h -------------------------------------------------------------------------------- /cheat/src/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Singleton.h -------------------------------------------------------------------------------- /cheat/src/Unity/unity-methods.hpp: -------------------------------------------------------------------------------- 1 | #include "UnityResolve.hpp" 2 | 3 | namespace unity 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /cheat/src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Utils.cpp -------------------------------------------------------------------------------- /cheat/src/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/Utils.h -------------------------------------------------------------------------------- /cheat/src/appdata/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/appdata/helpers.cpp -------------------------------------------------------------------------------- /cheat/src/appdata/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/appdata/helpers.h -------------------------------------------------------------------------------- /cheat/src/appdata/il2cpp-api-functions-ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/appdata/il2cpp-api-functions-ptr.h -------------------------------------------------------------------------------- /cheat/src/appdata/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/appdata/il2cpp-api-functions.h -------------------------------------------------------------------------------- /cheat/src/appdata/il2cpp-appdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/appdata/il2cpp-appdata.h -------------------------------------------------------------------------------- /cheat/src/appdata/il2cpp-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/appdata/il2cpp-functions.h -------------------------------------------------------------------------------- /cheat/src/appdata/il2cpp-init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/appdata/il2cpp-init.cpp -------------------------------------------------------------------------------- /cheat/src/appdata/il2cpp-init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/appdata/il2cpp-init.h -------------------------------------------------------------------------------- /cheat/src/appdata/il2cpp-metadata-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/appdata/il2cpp-metadata-version.h -------------------------------------------------------------------------------- /cheat/src/appdata/il2cpp-types-ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/appdata/il2cpp-types-ptr.h -------------------------------------------------------------------------------- /cheat/src/appdata/il2cpp-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/appdata/il2cpp-types.h -------------------------------------------------------------------------------- /cheat/src/cheat/cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/cheat/cheat.cpp -------------------------------------------------------------------------------- /cheat/src/cheat/cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/cheat/cheat.h -------------------------------------------------------------------------------- /cheat/src/cheat/features/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/cheat/features/Debug.cpp -------------------------------------------------------------------------------- /cheat/src/cheat/features/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/cheat/features/Debug.h -------------------------------------------------------------------------------- /cheat/src/cheat/features/LuaEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/cheat/features/LuaEditor.cpp -------------------------------------------------------------------------------- /cheat/src/cheat/features/LuaEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/cheat/features/LuaEditor.h -------------------------------------------------------------------------------- /cheat/src/cheat/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/cheat/vars.h -------------------------------------------------------------------------------- /cheat/src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/dllmain.cpp -------------------------------------------------------------------------------- /cheat/src/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events.cpp -------------------------------------------------------------------------------- /cheat/src/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events.h -------------------------------------------------------------------------------- /cheat/src/events/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/event.hpp -------------------------------------------------------------------------------- /cheat/src/events/handlers/abstracteventhandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/handlers/abstracteventhandler.hpp -------------------------------------------------------------------------------- /cheat/src/events/handlers/eventhandlerptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/handlers/eventhandlerptr.h -------------------------------------------------------------------------------- /cheat/src/events/handlers/functoreventhandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/handlers/functoreventhandler.hpp -------------------------------------------------------------------------------- /cheat/src/events/handlers/handlercast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/handlers/handlercast.hpp -------------------------------------------------------------------------------- /cheat/src/events/handlers/helpers/innerholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/handlers/helpers/innerholder.hpp -------------------------------------------------------------------------------- /cheat/src/events/handlers/helpers/objectsaver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/handlers/helpers/objectsaver.hpp -------------------------------------------------------------------------------- /cheat/src/events/handlers/methodeventhandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/handlers/methodeventhandler.hpp -------------------------------------------------------------------------------- /cheat/src/events/helpers/is_equatable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/helpers/is_equatable.hpp -------------------------------------------------------------------------------- /cheat/src/events/joins/abstracteventjoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/joins/abstracteventjoin.cpp -------------------------------------------------------------------------------- /cheat/src/events/joins/abstracteventjoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/joins/abstracteventjoin.h -------------------------------------------------------------------------------- /cheat/src/events/joins/eventjoinwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/joins/eventjoinwrapper.cpp -------------------------------------------------------------------------------- /cheat/src/events/joins/eventjoinwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/joins/eventjoinwrapper.h -------------------------------------------------------------------------------- /cheat/src/events/joins/eventjoinwrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/joins/eventjoinwrapper.hpp -------------------------------------------------------------------------------- /cheat/src/events/joins/handlereventjoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/joins/handlereventjoin.h -------------------------------------------------------------------------------- /cheat/src/events/joins/handlereventjoin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/events/joins/handlereventjoin.hpp -------------------------------------------------------------------------------- /cheat/src/game-utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/game-utils.hpp -------------------------------------------------------------------------------- /cheat/src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/global.h -------------------------------------------------------------------------------- /cheat/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/src/main.cpp -------------------------------------------------------------------------------- /cheat/src/main.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | 4 | void Run(HMODULE hModule); -------------------------------------------------------------------------------- /cheat/vendor/UnityResolve/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/vendor/UnityResolve/.gitignore -------------------------------------------------------------------------------- /cheat/vendor/UnityResolve/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/vendor/UnityResolve/LICENSE -------------------------------------------------------------------------------- /cheat/vendor/UnityResolve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/vendor/UnityResolve/README.md -------------------------------------------------------------------------------- /cheat/vendor/UnityResolve/UnityResolve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/vendor/UnityResolve/UnityResolve.hpp -------------------------------------------------------------------------------- /cheat/vendor/detours/detours-x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/vendor/detours/detours-x64.lib -------------------------------------------------------------------------------- /cheat/vendor/detours/detours-x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/vendor/detours/detours-x86.lib -------------------------------------------------------------------------------- /cheat/vendor/detours/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/vendor/detours/detours.h -------------------------------------------------------------------------------- /cheat/vendor/detours/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/vendor/detours/detver.h -------------------------------------------------------------------------------- /cheat/vendor/xorstr/xorstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/cheat/vendor/xorstr/xorstr.h -------------------------------------------------------------------------------- /injector/Injector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/injector/Injector.vcxproj -------------------------------------------------------------------------------- /injector/Injector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/injector/Injector.vcxproj.filters -------------------------------------------------------------------------------- /injector/src/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/injector/src/config.hpp -------------------------------------------------------------------------------- /injector/src/inject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/injector/src/inject.cpp -------------------------------------------------------------------------------- /injector/src/inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/injector/src/inject.h -------------------------------------------------------------------------------- /injector/src/load-library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/injector/src/load-library.cpp -------------------------------------------------------------------------------- /injector/src/load-library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/injector/src/load-library.h -------------------------------------------------------------------------------- /injector/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/injector/src/main.cpp -------------------------------------------------------------------------------- /injector/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/injector/src/util.cpp -------------------------------------------------------------------------------- /injector/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taiga74164/AFKJ-Lua-Editor/HEAD/injector/src/util.h --------------------------------------------------------------------------------