├── .gitattributes ├── .gitignore ├── Aeonix-External.sln ├── CS2_External ├── Aeonix.rc ├── AimBot.hpp ├── Bone.cpp ├── Bone.h ├── CS2_External.vcxproj ├── CS2_External.vcxproj.filters ├── Cheats.cpp ├── Cheats.h ├── Entity.cpp ├── Entity.h ├── Game.cpp ├── Game.h ├── MenuConfig.hpp ├── Mouse.c ├── Mouse.h ├── OS-ImGui │ ├── OS-ImGui.cpp │ ├── OS-ImGui.h │ ├── OS-ImGui_Base.cpp │ ├── OS-ImGui_Base.h │ ├── OS-ImGui_Exception.hpp │ ├── OS-ImGui_External.cpp │ ├── OS-ImGui_External.h │ ├── OS-ImGui_Struct.h │ └── imgui │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_win32.cpp │ │ ├── imgui_impl_win32.h │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h ├── Offsets.cpp ├── Offsets.h ├── Radar │ ├── Radar.cpp │ └── Radar.h ├── Render.hpp ├── TriggerBot.hpp ├── Utils │ ├── Bomb.hpp │ ├── ConfigMenu.cpp │ ├── ConfigMenu.hpp │ ├── ConfigSaver.cpp │ ├── ConfigSaver.hpp │ ├── Format.hpp │ ├── Globals.hpp │ ├── Globalvars.cpp │ ├── Globalvars.hpp │ ├── ListFeatures.hpp │ ├── MemorySearch.cpp │ ├── ProcessManager.hpp │ ├── Spec.hpp │ ├── Watermarkshit.hpp │ ├── keys.cpp │ └── style.hpp ├── View.hpp ├── font │ ├── IconsFontAwesome5.h │ ├── crosshair.ico │ ├── fa-regular.ttf │ ├── fontArray.h │ ├── sexy.ico │ └── stratum2.ttf ├── globals.cpp ├── main.cpp ├── mathstuff.h └── resource.h ├── LICENSE ├── README.md ├── Screenshot 2023-10-24 163716.png └── TODO /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/.gitignore -------------------------------------------------------------------------------- /Aeonix-External.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/Aeonix-External.sln -------------------------------------------------------------------------------- /CS2_External/Aeonix.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Aeonix.rc -------------------------------------------------------------------------------- /CS2_External/AimBot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/AimBot.hpp -------------------------------------------------------------------------------- /CS2_External/Bone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Bone.cpp -------------------------------------------------------------------------------- /CS2_External/Bone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Bone.h -------------------------------------------------------------------------------- /CS2_External/CS2_External.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/CS2_External.vcxproj -------------------------------------------------------------------------------- /CS2_External/CS2_External.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/CS2_External.vcxproj.filters -------------------------------------------------------------------------------- /CS2_External/Cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Cheats.cpp -------------------------------------------------------------------------------- /CS2_External/Cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Cheats.h -------------------------------------------------------------------------------- /CS2_External/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Entity.cpp -------------------------------------------------------------------------------- /CS2_External/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Entity.h -------------------------------------------------------------------------------- /CS2_External/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Game.cpp -------------------------------------------------------------------------------- /CS2_External/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Game.h -------------------------------------------------------------------------------- /CS2_External/MenuConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/MenuConfig.hpp -------------------------------------------------------------------------------- /CS2_External/Mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Mouse.c -------------------------------------------------------------------------------- /CS2_External/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Mouse.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/OS-ImGui.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/OS-ImGui.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui_Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/OS-ImGui_Base.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/OS-ImGui_Base.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui_Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/OS-ImGui_Exception.hpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui_External.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/OS-ImGui_External.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui_External.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/OS-ImGui_External.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui_Struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/OS-ImGui_Struct.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imconfig.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imgui.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imgui.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imgui_internal.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/OS-ImGui/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /CS2_External/Offsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Offsets.cpp -------------------------------------------------------------------------------- /CS2_External/Offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Offsets.h -------------------------------------------------------------------------------- /CS2_External/Radar/Radar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Radar/Radar.cpp -------------------------------------------------------------------------------- /CS2_External/Radar/Radar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Radar/Radar.h -------------------------------------------------------------------------------- /CS2_External/Render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Render.hpp -------------------------------------------------------------------------------- /CS2_External/TriggerBot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/TriggerBot.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/Bomb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/Bomb.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/ConfigMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/ConfigMenu.cpp -------------------------------------------------------------------------------- /CS2_External/Utils/ConfigMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/ConfigMenu.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/ConfigSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/ConfigSaver.cpp -------------------------------------------------------------------------------- /CS2_External/Utils/ConfigSaver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/ConfigSaver.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/Format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/Format.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/Globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/Globals.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/Globalvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/Globalvars.cpp -------------------------------------------------------------------------------- /CS2_External/Utils/Globalvars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/Globalvars.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/ListFeatures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/ListFeatures.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/MemorySearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/MemorySearch.cpp -------------------------------------------------------------------------------- /CS2_External/Utils/ProcessManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/ProcessManager.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/Spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/Spec.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/Watermarkshit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/Watermarkshit.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/keys.cpp -------------------------------------------------------------------------------- /CS2_External/Utils/style.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/Utils/style.hpp -------------------------------------------------------------------------------- /CS2_External/View.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/View.hpp -------------------------------------------------------------------------------- /CS2_External/font/IconsFontAwesome5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/font/IconsFontAwesome5.h -------------------------------------------------------------------------------- /CS2_External/font/crosshair.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/font/crosshair.ico -------------------------------------------------------------------------------- /CS2_External/font/fa-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/font/fa-regular.ttf -------------------------------------------------------------------------------- /CS2_External/font/fontArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/font/fontArray.h -------------------------------------------------------------------------------- /CS2_External/font/sexy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/font/sexy.ico -------------------------------------------------------------------------------- /CS2_External/font/stratum2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/font/stratum2.ttf -------------------------------------------------------------------------------- /CS2_External/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/globals.cpp -------------------------------------------------------------------------------- /CS2_External/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/main.cpp -------------------------------------------------------------------------------- /CS2_External/mathstuff.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CS2_External/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/CS2_External/resource.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot 2023-10-24 163716.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/Screenshot 2023-10-24 163716.png -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr0go1/Aeonix-Cs2/HEAD/TODO --------------------------------------------------------------------------------