├── HWID spoofer ├── .vs │ └── HWID spoofer │ │ └── v16 │ │ └── .suo ├── App.config ├── HWID spoofer.csproj ├── HWID spoofer.sln ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── README.md ├── Random ├── Bypass.bat ├── Dump Offsets.bat ├── DumpSVGs.js ├── Dumps │ ├── Season 10 │ │ ├── v3.0.1.177.ini │ │ ├── v3.0.1.177.md │ │ ├── v3.0.1.235.ini │ │ ├── v3.0.1.235.md │ │ ├── v3.0.2.267.ini │ │ ├── v3.0.2.267.md │ │ ├── v3.0.5.217.ini │ │ ├── v3.0.5.217.md │ │ ├── v3.0.9.135.ini │ │ └── v3.0.9.135.md │ ├── Season 3 │ │ ├── v3.0.9.1094.ini │ │ └── v3.0.9.1094.md │ └── Season 9 │ │ ├── v3.0.7.214.ini │ │ ├── v3.0.7.214.md │ │ ├── v3.0.8.247.ini │ │ └── v3.0.8.247.md └── svgs │ ├── 30-30_Repeater_Icon.svg │ ├── Alternator_SMG_Icon.svg │ ├── Auto_Icon.svg │ ├── Backpack_lvl1.svg │ ├── Backpack_lvl2.svg │ ├── Backpack_lvl3.svg │ ├── Barrel_Stabilizer.svg │ ├── Bocek_Compound_Bow_Icon.svg │ ├── Body_Shield.svg │ ├── Boosted_Loader.svg │ ├── Burst_Icon.svg │ ├── Charge_Rifle_Icon.svg │ ├── Choke_Active_Icon.svg │ ├── Deadeye%27s_Tempo.svg │ ├── Devotion_LMG_Icon.svg │ ├── Disruptor_Rounds.svg │ ├── EVA-8_Auto_Icon.svg │ ├── Energy_Ammo.svg │ ├── Evo_Shield.svg │ ├── Extended_Energy_Mag.svg │ ├── Extended_Heavy_Mag.svg │ ├── Extended_Light_Mag.svg │ ├── Extended_Sniper_Mag.svg │ ├── G7_Scout_Icon.svg │ ├── HAVOC_Rifle_Icon.svg │ ├── Heat_Shield.svg │ ├── Heavy_Rounds.svg │ ├── Helmet.svg │ ├── Hemlok_Burst_AR_Icon.svg │ ├── Knockdown_Shield.svg │ ├── Kraber_.50-Cal_Sniper_Icon.svg │ ├── L-STAR_EMG_Icon.svg │ ├── Light_Rounds.svg │ ├── Longbow_DMR_Icon.svg │ ├── M600_Spitfire_Icon.svg │ ├── Mastiff_Shotgun_Icon.svg │ ├── Med_Kit.svg │ ├── Mobile_Respawn_Beacon.svg │ ├── Modded_Loader.svg │ ├── Mozambique_Shotgun_Icon.svg │ ├── Optics_Slot.svg │ ├── P2020_Icon.svg │ ├── Peacekeeper_Icon.svg │ ├── Phoenix_Kit.svg │ ├── Prowler_Burst_PDW_Icon.svg │ ├── R-301_Carbine_Icon.svg │ ├── R-99_SMG_Icon.svg │ ├── RE-45_Auto_Icon.svg │ ├── Rampage_Icon.svg │ ├── Sentinel_Icon.svg │ ├── Shatter_Caps.svg │ ├── Shield_Battery.svg │ ├── Shield_Cell.svg │ ├── Shotgun_Bolt.svg │ ├── Shotgun_Shells.svg │ ├── Single-fire_Icon.svg │ ├── Sniper_Ammo.svg │ ├── Sniper_Stock.svg │ ├── Standard_Stock.svg │ ├── Syringe.svg │ ├── Triple_Take_Icon.svg │ ├── Turbocharger.svg │ ├── Ultimate_Accelerant.svg │ ├── VK-47_Flatline_Icon.svg │ ├── Volt_SMG_Icon.svg │ └── Wingman_Icon.svg ├── UC-Apex-Remastered ├── .gitignore ├── Driver │ ├── Driver.inf │ ├── Driver.vcxproj │ ├── Driver.vcxproj.filters │ ├── Driver.vcxproj.user │ ├── Temp.html │ ├── Util.c │ ├── Util.h │ ├── func-hook.c │ ├── func-hook.h │ ├── globals.c │ ├── globals.h │ ├── main.c │ ├── main.h │ └── structs.h ├── UC-Apex-Remastered.sln └── UC-Apex-Remastered │ ├── Drawings.cpp │ ├── Drawings.h │ ├── Driver.h │ ├── Item_IDs.h │ ├── Modules.cpp │ ├── Modules.h │ ├── Player.cpp │ ├── Player.h │ ├── UC-Apex-Remastered.vcxproj │ ├── UC-Apex-Remastered.vcxproj.filters │ ├── UC-Apex-Remastered.vcxproj.user │ ├── Util.cpp │ ├── Util.h │ ├── XorStr.hpp │ ├── defs.h │ ├── globals.cpp │ ├── globals.h │ ├── imgui │ ├── Comfortaa-Bold.h │ ├── Comfortaa-Regular.h │ ├── FontAwesome.h │ ├── IconsFontAwesome.h │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_memory_editor.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ ├── imstb_truetype.h │ └── unknownController.h │ ├── main.cpp │ ├── offsets.h │ ├── overlay.cpp │ ├── overlay.h │ ├── prediction.h │ └── singleton.hpp └── apexbot ├── .gitignore ├── license.txt ├── offsets ├── .gitignore ├── Cargo.toml ├── index.html ├── readme.md └── src │ ├── analysis │ ├── classes.rs │ ├── concommands.rs │ ├── convars.rs │ ├── datamaps.rs │ ├── globals.rs │ ├── interfaces.rs │ ├── kbuttons.rs │ ├── misc.rs │ ├── mod.rs │ ├── recvtables.rs │ └── string_tables.rs │ ├── lib.rs │ └── main.rs ├── readme.md └── src ├── aimassist.cpp ├── aimassist.hpp ├── apexbot.cpp ├── cheats.cpp ├── cheats.hpp ├── config.cpp ├── config.hpp ├── context.cpp ├── context.hpp ├── data.hpp ├── entities.cpp ├── entities.hpp ├── hash.hpp ├── highlight.cpp ├── highlight.hpp ├── items.cpp ├── items.hpp ├── pid.hpp ├── process.cpp ├── process.hpp ├── scripts.cpp ├── scripts.hpp ├── sdk.hpp ├── solver.cpp ├── solver.hpp ├── state.cpp ├── state.hpp └── stdafx.cpp /HWID spoofer/.vs/HWID spoofer/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/HWID spoofer/.vs/HWID spoofer/v16/.suo -------------------------------------------------------------------------------- /HWID spoofer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/HWID spoofer/App.config -------------------------------------------------------------------------------- /HWID spoofer/HWID spoofer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/HWID spoofer/HWID spoofer.csproj -------------------------------------------------------------------------------- /HWID spoofer/HWID spoofer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/HWID spoofer/HWID spoofer.sln -------------------------------------------------------------------------------- /HWID spoofer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/HWID spoofer/Program.cs -------------------------------------------------------------------------------- /HWID spoofer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/HWID spoofer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/README.md -------------------------------------------------------------------------------- /Random/Bypass.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Bypass.bat -------------------------------------------------------------------------------- /Random/Dump Offsets.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dump Offsets.bat -------------------------------------------------------------------------------- /Random/DumpSVGs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/DumpSVGs.js -------------------------------------------------------------------------------- /Random/Dumps/Season 10/v3.0.1.177.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 10/v3.0.1.177.ini -------------------------------------------------------------------------------- /Random/Dumps/Season 10/v3.0.1.177.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 10/v3.0.1.177.md -------------------------------------------------------------------------------- /Random/Dumps/Season 10/v3.0.1.235.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 10/v3.0.1.235.ini -------------------------------------------------------------------------------- /Random/Dumps/Season 10/v3.0.1.235.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 10/v3.0.1.235.md -------------------------------------------------------------------------------- /Random/Dumps/Season 10/v3.0.2.267.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 10/v3.0.2.267.ini -------------------------------------------------------------------------------- /Random/Dumps/Season 10/v3.0.2.267.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 10/v3.0.2.267.md -------------------------------------------------------------------------------- /Random/Dumps/Season 10/v3.0.5.217.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 10/v3.0.5.217.ini -------------------------------------------------------------------------------- /Random/Dumps/Season 10/v3.0.5.217.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 10/v3.0.5.217.md -------------------------------------------------------------------------------- /Random/Dumps/Season 10/v3.0.9.135.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 10/v3.0.9.135.ini -------------------------------------------------------------------------------- /Random/Dumps/Season 10/v3.0.9.135.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 10/v3.0.9.135.md -------------------------------------------------------------------------------- /Random/Dumps/Season 3/v3.0.9.1094.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 3/v3.0.9.1094.ini -------------------------------------------------------------------------------- /Random/Dumps/Season 3/v3.0.9.1094.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 3/v3.0.9.1094.md -------------------------------------------------------------------------------- /Random/Dumps/Season 9/v3.0.7.214.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 9/v3.0.7.214.ini -------------------------------------------------------------------------------- /Random/Dumps/Season 9/v3.0.7.214.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 9/v3.0.7.214.md -------------------------------------------------------------------------------- /Random/Dumps/Season 9/v3.0.8.247.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 9/v3.0.8.247.ini -------------------------------------------------------------------------------- /Random/Dumps/Season 9/v3.0.8.247.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/Dumps/Season 9/v3.0.8.247.md -------------------------------------------------------------------------------- /Random/svgs/30-30_Repeater_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/30-30_Repeater_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Alternator_SMG_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Alternator_SMG_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Auto_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Auto_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Backpack_lvl1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Backpack_lvl1.svg -------------------------------------------------------------------------------- /Random/svgs/Backpack_lvl2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Backpack_lvl2.svg -------------------------------------------------------------------------------- /Random/svgs/Backpack_lvl3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Backpack_lvl3.svg -------------------------------------------------------------------------------- /Random/svgs/Barrel_Stabilizer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Barrel_Stabilizer.svg -------------------------------------------------------------------------------- /Random/svgs/Bocek_Compound_Bow_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Bocek_Compound_Bow_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Body_Shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Body_Shield.svg -------------------------------------------------------------------------------- /Random/svgs/Boosted_Loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Boosted_Loader.svg -------------------------------------------------------------------------------- /Random/svgs/Burst_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Burst_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Charge_Rifle_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Charge_Rifle_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Choke_Active_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Choke_Active_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Deadeye%27s_Tempo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Deadeye%27s_Tempo.svg -------------------------------------------------------------------------------- /Random/svgs/Devotion_LMG_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Devotion_LMG_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Disruptor_Rounds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Disruptor_Rounds.svg -------------------------------------------------------------------------------- /Random/svgs/EVA-8_Auto_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/EVA-8_Auto_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Energy_Ammo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Energy_Ammo.svg -------------------------------------------------------------------------------- /Random/svgs/Evo_Shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Evo_Shield.svg -------------------------------------------------------------------------------- /Random/svgs/Extended_Energy_Mag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Extended_Energy_Mag.svg -------------------------------------------------------------------------------- /Random/svgs/Extended_Heavy_Mag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Extended_Heavy_Mag.svg -------------------------------------------------------------------------------- /Random/svgs/Extended_Light_Mag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Extended_Light_Mag.svg -------------------------------------------------------------------------------- /Random/svgs/Extended_Sniper_Mag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Extended_Sniper_Mag.svg -------------------------------------------------------------------------------- /Random/svgs/G7_Scout_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/G7_Scout_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/HAVOC_Rifle_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/HAVOC_Rifle_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Heat_Shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Heat_Shield.svg -------------------------------------------------------------------------------- /Random/svgs/Heavy_Rounds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Heavy_Rounds.svg -------------------------------------------------------------------------------- /Random/svgs/Helmet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Helmet.svg -------------------------------------------------------------------------------- /Random/svgs/Hemlok_Burst_AR_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Hemlok_Burst_AR_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Knockdown_Shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Knockdown_Shield.svg -------------------------------------------------------------------------------- /Random/svgs/Kraber_.50-Cal_Sniper_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Kraber_.50-Cal_Sniper_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/L-STAR_EMG_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/L-STAR_EMG_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Light_Rounds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Light_Rounds.svg -------------------------------------------------------------------------------- /Random/svgs/Longbow_DMR_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Longbow_DMR_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/M600_Spitfire_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/M600_Spitfire_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Mastiff_Shotgun_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Mastiff_Shotgun_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Med_Kit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Med_Kit.svg -------------------------------------------------------------------------------- /Random/svgs/Mobile_Respawn_Beacon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Mobile_Respawn_Beacon.svg -------------------------------------------------------------------------------- /Random/svgs/Modded_Loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Modded_Loader.svg -------------------------------------------------------------------------------- /Random/svgs/Mozambique_Shotgun_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Mozambique_Shotgun_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Optics_Slot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Optics_Slot.svg -------------------------------------------------------------------------------- /Random/svgs/P2020_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/P2020_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Peacekeeper_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Peacekeeper_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Phoenix_Kit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Phoenix_Kit.svg -------------------------------------------------------------------------------- /Random/svgs/Prowler_Burst_PDW_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Prowler_Burst_PDW_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/R-301_Carbine_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/R-301_Carbine_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/R-99_SMG_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/R-99_SMG_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/RE-45_Auto_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/RE-45_Auto_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Rampage_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Rampage_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Sentinel_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Sentinel_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Shatter_Caps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Shatter_Caps.svg -------------------------------------------------------------------------------- /Random/svgs/Shield_Battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Shield_Battery.svg -------------------------------------------------------------------------------- /Random/svgs/Shield_Cell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Shield_Cell.svg -------------------------------------------------------------------------------- /Random/svgs/Shotgun_Bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Shotgun_Bolt.svg -------------------------------------------------------------------------------- /Random/svgs/Shotgun_Shells.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Shotgun_Shells.svg -------------------------------------------------------------------------------- /Random/svgs/Single-fire_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Single-fire_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Sniper_Ammo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Sniper_Ammo.svg -------------------------------------------------------------------------------- /Random/svgs/Sniper_Stock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Sniper_Stock.svg -------------------------------------------------------------------------------- /Random/svgs/Standard_Stock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Standard_Stock.svg -------------------------------------------------------------------------------- /Random/svgs/Syringe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Syringe.svg -------------------------------------------------------------------------------- /Random/svgs/Triple_Take_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Triple_Take_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Turbocharger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Turbocharger.svg -------------------------------------------------------------------------------- /Random/svgs/Ultimate_Accelerant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Ultimate_Accelerant.svg -------------------------------------------------------------------------------- /Random/svgs/VK-47_Flatline_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/VK-47_Flatline_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Volt_SMG_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Volt_SMG_Icon.svg -------------------------------------------------------------------------------- /Random/svgs/Wingman_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/Random/svgs/Wingman_Icon.svg -------------------------------------------------------------------------------- /UC-Apex-Remastered/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/.gitignore -------------------------------------------------------------------------------- /UC-Apex-Remastered/Driver/Driver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/Driver/Driver.inf -------------------------------------------------------------------------------- /UC-Apex-Remastered/Driver/Driver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/Driver/Driver.vcxproj -------------------------------------------------------------------------------- /UC-Apex-Remastered/Driver/Driver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/Driver/Driver.vcxproj.filters -------------------------------------------------------------------------------- /UC-Apex-Remastered/Driver/Driver.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/Driver/Driver.vcxproj.user -------------------------------------------------------------------------------- /UC-Apex-Remastered/Driver/Temp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/Driver/Temp.html -------------------------------------------------------------------------------- /UC-Apex-Remastered/Driver/Util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/Driver/Util.c -------------------------------------------------------------------------------- /UC-Apex-Remastered/Driver/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/Driver/Util.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/Driver/func-hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/Driver/func-hook.c -------------------------------------------------------------------------------- /UC-Apex-Remastered/Driver/func-hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/Driver/func-hook.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/Driver/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/Driver/globals.c -------------------------------------------------------------------------------- /UC-Apex-Remastered/Driver/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/Driver/globals.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/Driver/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/Driver/main.c -------------------------------------------------------------------------------- /UC-Apex-Remastered/Driver/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/Driver/main.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/Driver/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/Driver/structs.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered.sln -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/Drawings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/Drawings.cpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/Drawings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/Drawings.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/Driver.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/Item_IDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/Item_IDs.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/Modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/Modules.cpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/Modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/Modules.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/Player.cpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/Player.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/UC-Apex-Remastered.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/UC-Apex-Remastered.vcxproj -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/UC-Apex-Remastered.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/UC-Apex-Remastered.vcxproj.filters -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/UC-Apex-Remastered.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/UC-Apex-Remastered.vcxproj.user -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/Util.cpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/Util.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/XorStr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/XorStr.hpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/defs.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/globals.cpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/globals.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/Comfortaa-Bold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/Comfortaa-Bold.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/Comfortaa-Regular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/Comfortaa-Regular.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/FontAwesome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/FontAwesome.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/IconsFontAwesome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/IconsFontAwesome.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imconfig.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui.cpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_internal.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_memory_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_memory_editor.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/imgui/unknownController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/imgui/unknownController.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/main.cpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/offsets.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/overlay.cpp -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/overlay.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/prediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/prediction.h -------------------------------------------------------------------------------- /UC-Apex-Remastered/UC-Apex-Remastered/singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/UC-Apex-Remastered/UC-Apex-Remastered/singleton.hpp -------------------------------------------------------------------------------- /apexbot/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | .vs/ 3 | -------------------------------------------------------------------------------- /apexbot/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/license.txt -------------------------------------------------------------------------------- /apexbot/offsets/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /apexbot/offsets/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/Cargo.toml -------------------------------------------------------------------------------- /apexbot/offsets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/index.html -------------------------------------------------------------------------------- /apexbot/offsets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/readme.md -------------------------------------------------------------------------------- /apexbot/offsets/src/analysis/classes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/src/analysis/classes.rs -------------------------------------------------------------------------------- /apexbot/offsets/src/analysis/concommands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/src/analysis/concommands.rs -------------------------------------------------------------------------------- /apexbot/offsets/src/analysis/convars.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/src/analysis/convars.rs -------------------------------------------------------------------------------- /apexbot/offsets/src/analysis/datamaps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/src/analysis/datamaps.rs -------------------------------------------------------------------------------- /apexbot/offsets/src/analysis/globals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/src/analysis/globals.rs -------------------------------------------------------------------------------- /apexbot/offsets/src/analysis/interfaces.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/src/analysis/interfaces.rs -------------------------------------------------------------------------------- /apexbot/offsets/src/analysis/kbuttons.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/src/analysis/kbuttons.rs -------------------------------------------------------------------------------- /apexbot/offsets/src/analysis/misc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/src/analysis/misc.rs -------------------------------------------------------------------------------- /apexbot/offsets/src/analysis/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/src/analysis/mod.rs -------------------------------------------------------------------------------- /apexbot/offsets/src/analysis/recvtables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/src/analysis/recvtables.rs -------------------------------------------------------------------------------- /apexbot/offsets/src/analysis/string_tables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/src/analysis/string_tables.rs -------------------------------------------------------------------------------- /apexbot/offsets/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/src/lib.rs -------------------------------------------------------------------------------- /apexbot/offsets/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/offsets/src/main.rs -------------------------------------------------------------------------------- /apexbot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/readme.md -------------------------------------------------------------------------------- /apexbot/src/aimassist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/aimassist.cpp -------------------------------------------------------------------------------- /apexbot/src/aimassist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/aimassist.hpp -------------------------------------------------------------------------------- /apexbot/src/apexbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/apexbot.cpp -------------------------------------------------------------------------------- /apexbot/src/cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/cheats.cpp -------------------------------------------------------------------------------- /apexbot/src/cheats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/cheats.hpp -------------------------------------------------------------------------------- /apexbot/src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/config.cpp -------------------------------------------------------------------------------- /apexbot/src/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/config.hpp -------------------------------------------------------------------------------- /apexbot/src/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/context.cpp -------------------------------------------------------------------------------- /apexbot/src/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/context.hpp -------------------------------------------------------------------------------- /apexbot/src/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/data.hpp -------------------------------------------------------------------------------- /apexbot/src/entities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/entities.cpp -------------------------------------------------------------------------------- /apexbot/src/entities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/entities.hpp -------------------------------------------------------------------------------- /apexbot/src/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/hash.hpp -------------------------------------------------------------------------------- /apexbot/src/highlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/highlight.cpp -------------------------------------------------------------------------------- /apexbot/src/highlight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/highlight.hpp -------------------------------------------------------------------------------- /apexbot/src/items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/items.cpp -------------------------------------------------------------------------------- /apexbot/src/items.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/items.hpp -------------------------------------------------------------------------------- /apexbot/src/pid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/pid.hpp -------------------------------------------------------------------------------- /apexbot/src/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/process.cpp -------------------------------------------------------------------------------- /apexbot/src/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/process.hpp -------------------------------------------------------------------------------- /apexbot/src/scripts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/scripts.cpp -------------------------------------------------------------------------------- /apexbot/src/scripts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/scripts.hpp -------------------------------------------------------------------------------- /apexbot/src/sdk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/sdk.hpp -------------------------------------------------------------------------------- /apexbot/src/solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/solver.cpp -------------------------------------------------------------------------------- /apexbot/src/solver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/solver.hpp -------------------------------------------------------------------------------- /apexbot/src/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/state.cpp -------------------------------------------------------------------------------- /apexbot/src/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/state.hpp -------------------------------------------------------------------------------- /apexbot/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheatingwitdacode/apex-cheating/HEAD/apexbot/src/stdafx.cpp --------------------------------------------------------------------------------