├── .gitignore ├── IDA-LeagueUpdater ├── IDA-LeagueUpdater.pyproj └── IDA_LeagueUpdater.py ├── ImGui ├── ImGui.vcxproj ├── ImGui.vcxproj.filters ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_draw.cpp ├── imgui_impl_dx9.cpp ├── imgui_impl_dx9.h ├── imgui_impl_win32.cpp ├── imgui_impl_win32.h ├── imgui_internal.h ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h └── imstb_truetype.h ├── Internal ├── BuffEntry.cpp ├── BuffEntry.h ├── BuffManager.cpp ├── BuffManager.h ├── CObject.cpp ├── CObject.h ├── CObjectManager.h ├── CSpellDataInst.h ├── CallBackIntStates.h ├── Callbacks.cpp ├── Callbacks.h ├── Capture.cpp ├── Capture.h ├── ClassWrapper.h ├── DXGICapture.cpp ├── DXGICapture.h ├── Direct3D12Capture.cpp ├── Direct3D12Capture.h ├── Direct3D9Capture.cpp ├── Direct3D9Capture.h ├── DllMain.cpp ├── DriverController.cpp ├── DriverController.h ├── ESpellSlot.h ├── Engine.cpp ├── Engine.h ├── ExampleAppLog.h ├── FuncHook.cpp ├── FuncHook.h ├── Globals.h ├── HealthPrediction.cpp ├── HealthPrediction.h ├── HeavensGateHook.cpp ├── HeavensGateHook.h ├── Hooks.h ├── ImRenderer.cpp ├── ImRenderer.h ├── Internal.vcxproj ├── Internal.vcxproj.filters ├── LUA.cpp ├── LUA.h ├── LUA │ ├── include │ │ ├── lauxlib.h │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ └── lualib.h │ └── lua54.lib ├── LeagueFunctions.cpp ├── LeagueFunctions.h ├── LeagueHooks.cpp ├── LeagueHooks.h ├── Misc.cpp ├── Misc.h ├── Offsets.h ├── Orbwalker.cpp ├── Orbwalker.h ├── PIDManager.cpp ├── PIDManager.h ├── SDK.h ├── SpellCastInfo.h ├── SpellData.h ├── SpellInfo.h ├── SpellSlot.h ├── StaticLists.h ├── TargetSelector.cpp ├── TargetSelector.h ├── UnitComponentInfo.h ├── UnitComponentInfoProperties.h ├── Utils.h ├── Vector.h ├── VectorLong.h ├── Win32Exception.cpp ├── Win32Exception.h ├── ZycoreExportConfig.h ├── ZydisExportConfig.h ├── d3dx12.h ├── defs.h ├── driver.h ├── encryption.hpp ├── fnv_hash.hpp ├── game_classes.cpp ├── hideModule.h ├── images │ ├── barrier.png │ ├── barrier_cd.png │ ├── cleanse.png │ ├── cleanse_cd.png │ ├── exhaust.png │ ├── exhaust_cd.png │ ├── flash.png │ ├── flash_cd.png │ ├── ghost.png │ ├── ghost_cd.png │ ├── heal.png │ ├── heal_cd.png │ ├── ignite.png │ ├── ignite_cd.png │ ├── smite.png │ ├── smite_cd.png │ ├── teleport.png │ └── teleport_cd.png ├── include │ ├── Zycore │ │ ├── API │ │ │ ├── Memory.h │ │ │ ├── Synchronization.h │ │ │ ├── Terminal.h │ │ │ └── Thread.h │ │ ├── Allocator.h │ │ ├── ArgParse.h │ │ ├── Bitset.h │ │ ├── Comparison.h │ │ ├── Defines.h │ │ ├── Format.h │ │ ├── LibC.h │ │ ├── List.h │ │ ├── Object.h │ │ ├── Status.h │ │ ├── String.h │ │ ├── Types.h │ │ ├── Vector.h │ │ └── Zycore.h │ └── Zydis │ │ ├── Decoder.h │ │ ├── DecoderTypes.h │ │ ├── Formatter.h │ │ ├── FormatterBuffer.h │ │ ├── Generated │ │ ├── EnumISAExt.h │ │ ├── EnumISASet.h │ │ ├── EnumInstructionCategory.h │ │ ├── EnumMnemonic.h │ │ └── EnumRegister.h │ │ ├── Internal │ │ ├── DecoderData.h │ │ ├── FormatterATT.h │ │ ├── FormatterBase.h │ │ ├── FormatterIntel.h │ │ ├── SharedData.h │ │ └── String.h │ │ ├── MetaInfo.h │ │ ├── Mnemonic.h │ │ ├── Register.h │ │ ├── SharedTypes.h │ │ ├── ShortString.h │ │ ├── Status.h │ │ ├── Utils.h │ │ ├── Zydis.h │ │ └── src │ │ ├── Decoder.c │ │ ├── DecoderData.c │ │ ├── Formatter.c │ │ ├── FormatterATT.c │ │ ├── FormatterBase.c │ │ ├── FormatterBuffer.c │ │ ├── FormatterIntel.c │ │ ├── Generated │ │ ├── AccessedFlags.inc │ │ ├── DecoderTables.inc │ │ ├── EncodableInstructions.inc │ │ ├── EnumISAExt.inc │ │ ├── EnumISASet.inc │ │ ├── EnumInstructionCategory.inc │ │ ├── EnumMnemonic.inc │ │ ├── EnumRegister.inc │ │ ├── FormatterStrings.inc │ │ ├── InstructionDefinitions.inc │ │ ├── InstructionEncodings.inc │ │ └── OperandDefinitions.inc │ │ ├── MetaInfo.c │ │ ├── Mnemonic.c │ │ ├── Register.c │ │ ├── SharedData.c │ │ ├── String.c │ │ ├── Utils.c │ │ └── Zydis.c ├── inputhook.cpp ├── inputhook.h ├── json.hpp ├── makesyscall.h ├── menu.cpp ├── menu.h ├── skin_changer.cpp ├── skin_changer.hpp ├── skin_database.cpp ├── skin_database.hpp ├── stb_image.h ├── stdafx.h └── syscalls.hpp ├── LeagueDebugger ├── CSpellDataInst.h ├── Capture.cpp ├── Capture.h ├── DXGICapture.cpp ├── DXGICapture.h ├── Direct3D12Capture.cpp ├── Direct3D12Capture.h ├── Direct3D9Capture.cpp ├── Direct3D9Capture.h ├── DllMain.cpp ├── ExampleAppLog.h ├── FW1FontWrapper │ └── fw1.zip ├── FuncHook.cpp ├── FuncHook.h ├── ImRenderer.cpp ├── LeagueDebugger.vcxproj ├── LeagueDebugger.vcxproj.filters ├── LeagueFunctions.cpp ├── LeagueHooks.cpp ├── LeagueHooks.h ├── UltimateHooks.cpp ├── UltimateHooks.h ├── Utils.h ├── Vector.h ├── VectorLong.h ├── Win32Exception.cpp ├── Win32Exception.h ├── ZycoreExportConfig.h ├── ZydisExportConfig.h ├── d3dx12.h ├── defs.h ├── imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── include │ ├── Zycore │ │ ├── API │ │ │ ├── Memory.h │ │ │ ├── Synchronization.h │ │ │ ├── Terminal.h │ │ │ └── Thread.h │ │ ├── Allocator.h │ │ ├── ArgParse.h │ │ ├── Bitset.h │ │ ├── Comparison.h │ │ ├── Defines.h │ │ ├── Format.h │ │ ├── LibC.h │ │ ├── List.h │ │ ├── Object.h │ │ ├── Status.h │ │ ├── String.h │ │ ├── Types.h │ │ ├── Vector.h │ │ └── Zycore.h │ └── Zydis │ │ ├── Decoder.h │ │ ├── DecoderTypes.h │ │ ├── Formatter.h │ │ ├── FormatterBuffer.h │ │ ├── Generated │ │ ├── EnumISAExt.h │ │ ├── EnumISASet.h │ │ ├── EnumInstructionCategory.h │ │ ├── EnumMnemonic.h │ │ └── EnumRegister.h │ │ ├── Internal │ │ ├── DecoderData.h │ │ ├── FormatterATT.h │ │ ├── FormatterBase.h │ │ ├── FormatterIntel.h │ │ ├── SharedData.h │ │ └── String.h │ │ ├── MetaInfo.h │ │ ├── Mnemonic.h │ │ ├── Register.h │ │ ├── SharedTypes.h │ │ ├── ShortString.h │ │ ├── Status.h │ │ ├── Utils.h │ │ ├── Zydis.h │ │ └── src │ │ ├── Decoder.c │ │ ├── DecoderData.c │ │ ├── Formatter.c │ │ ├── FormatterATT.c │ │ ├── FormatterBase.c │ │ ├── FormatterBuffer.c │ │ ├── FormatterIntel.c │ │ ├── Generated │ │ ├── AccessedFlags.inc │ │ ├── DecoderTables.inc │ │ ├── EncodableInstructions.inc │ │ ├── EnumISAExt.inc │ │ ├── EnumISASet.inc │ │ ├── EnumInstructionCategory.inc │ │ ├── EnumMnemonic.inc │ │ ├── EnumRegister.inc │ │ ├── FormatterStrings.inc │ │ ├── InstructionDefinitions.inc │ │ ├── InstructionEncodings.inc │ │ └── OperandDefinitions.inc │ │ ├── MetaInfo.c │ │ ├── Mnemonic.c │ │ ├── Register.c │ │ ├── SharedData.c │ │ ├── String.c │ │ ├── Utils.c │ │ └── Zydis.c ├── inputhook.cpp ├── inputhook.h ├── makesyscall.h ├── menu.cpp ├── menu.h ├── renderer │ ├── ImRenderer.cpp │ └── ImRenderer.h ├── stb_image.h ├── stdafx.h ├── syscalls.hpp └── tools │ ├── ZydisDisasm.c │ ├── ZydisFuzzIn.c │ ├── ZydisInfo.c │ └── ZydisPE.c ├── LeagueInjector ├── LeagueInjector.vcxproj ├── LeagueInjector.vcxproj.filters ├── XorString.h ├── main.cpp └── makesyscall.h ├── LeagueNuke ├── LeagueNuke.vcxproj ├── LeagueNuke.vcxproj.filters └── dllmain.cpp ├── Loader ├── Loader.vcxproj └── Loader.vcxproj.filters ├── README.md ├── V21 ├── Activator.cpp ├── Activator.h ├── AiManager.h ├── BasicPrediction.cpp ├── BasicPrediction.h ├── Brand.cpp ├── Brand.h ├── BuffInstance.cpp ├── BuffInstance.h ├── BuffManager.h ├── BuffScript.cpp ├── BuffScript.h ├── BuffScriptInstance.h ├── Capture.cpp ├── Capture.h ├── CharacterData.h ├── CharacterDataStack.h ├── CharacterProperties.h ├── CheckBox.cpp ├── CheckBox.h ├── ClassData.h ├── ClockFacade.cpp ├── ClockFacade.h ├── ComponentBase.h ├── Config.h ├── Console.cpp ├── Console.h ├── CrashHandler.cpp ├── CrashHandler.h ├── DXGICapture.cpp ├── DXGICapture.h ├── Damage.cpp ├── Damage.h ├── Dependencies │ └── Include │ │ └── json.hpp ├── Detour.cpp ├── DeviceHandler.cpp ├── DeviceHandler.h ├── Direct3D9Capture.cpp ├── Direct3D9Capture.h ├── Draven.cpp ├── Draven.h ├── Draw.cpp ├── Draw.h ├── EnumMacro.h ├── Evade.cpp ├── Evade.h ├── EvadeConstants.h ├── EvadeMath.h ├── EvaderDB.h ├── EventManager.cpp ├── EventManager.h ├── Events.cpp ├── Events.h ├── Experience.h ├── FastMath.h ├── FloatingInfoBar.h ├── FuncHook.cpp ├── FuncHook.h ├── Functions.cpp ├── Functions.h ├── GameClient.cpp ├── GameClient.h ├── GameObject.cpp ├── GameObject.h ├── GameStartData.cpp ├── Geometry.h ├── Globals.cpp ├── Globals.h ├── HashFunctions.cpp ├── HashFunctions.h ├── HealthPrediction.cpp ├── HealthPrediction.h ├── HeavensGateHook.h ├── HeroInventoryCommon.h ├── Hooks.cpp ├── HudCursorTargetLogic.h ├── HudManager.cpp ├── HudManager.h ├── Include │ ├── Zycore │ │ ├── API │ │ │ ├── Memory.h │ │ │ ├── Synchronization.h │ │ │ ├── Terminal.h │ │ │ └── Thread.h │ │ ├── Allocator.h │ │ ├── ArgParse.h │ │ ├── Bitset.h │ │ ├── Comparison.h │ │ ├── Defines.h │ │ ├── Format.h │ │ ├── LibC.h │ │ ├── List.h │ │ ├── Object.h │ │ ├── Status.h │ │ ├── String.h │ │ ├── Types.h │ │ ├── Vector.h │ │ └── Zycore.h │ └── Zydis │ │ ├── Decoder.h │ │ ├── DecoderTypes.h │ │ ├── Formatter.h │ │ ├── FormatterBuffer.h │ │ ├── Generated │ │ ├── EnumISAExt.h │ │ ├── EnumISASet.h │ │ ├── EnumInstructionCategory.h │ │ ├── EnumMnemonic.h │ │ └── EnumRegister.h │ │ ├── Internal │ │ ├── DecoderData.h │ │ ├── FormatterATT.h │ │ ├── FormatterBase.h │ │ ├── FormatterIntel.h │ │ ├── SharedData.h │ │ └── String.h │ │ ├── MetaInfo.h │ │ ├── Mnemonic.h │ │ ├── Register.h │ │ ├── SharedTypes.h │ │ ├── ShortString.h │ │ ├── Status.h │ │ ├── Utils.h │ │ ├── Zydis.h │ │ └── src │ │ ├── Decoder.c │ │ ├── DecoderData.c │ │ ├── Formatter.c │ │ ├── FormatterATT.c │ │ ├── FormatterBase.c │ │ ├── FormatterBuffer.c │ │ ├── FormatterIntel.c │ │ ├── Generated │ │ ├── AccessedFlags.inc │ │ ├── DecoderTables.inc │ │ ├── EncodableInstructions.inc │ │ ├── EnumISAExt.inc │ │ ├── EnumISASet.inc │ │ ├── EnumInstructionCategory.inc │ │ ├── EnumMnemonic.inc │ │ ├── EnumRegister.inc │ │ ├── FormatterStrings.inc │ │ ├── InstructionDefinitions.inc │ │ ├── InstructionEncodings.inc │ │ └── OperandDefinitions.inc │ │ ├── MetaInfo.c │ │ ├── Mnemonic.c │ │ ├── Register.c │ │ ├── SharedData.c │ │ ├── String.c │ │ ├── Utils.c │ │ └── Zydis.c ├── Info.cpp ├── Info.h ├── Instances.cpp ├── Instances.h ├── InventorySlot.h ├── ItemData.h ├── ItemInfo.h ├── Jax.cpp ├── Jax.h ├── KeyBind.cpp ├── KeyBind.h ├── LeagueFunctions.cpp ├── LeagueFunctions.h ├── LeagueHooks.cpp ├── LeagueHooks.h ├── List.cpp ├── List.h ├── Lucian.cpp ├── Lucian.h ├── ManagerTemplate.cpp ├── ManagerTemplate.h ├── Menu.cpp ├── Menu.h ├── MenuComponent.cpp ├── MenuComponent.h ├── MenuSettings.cpp ├── MenuSettings.h ├── MissFortune.cpp ├── MissFortune.h ├── MissileClient.h ├── NavGrid.cpp ├── NavGrid.h ├── NavGridCell.h ├── NavGridCellFlags.h ├── NavigationPath.h ├── NetClient.cpp ├── NetClient.h ├── ObjectManager.cpp ├── ObjectManager.h ├── Offsets.h ├── OffsetsChina.h ├── OffsetsGarena.h ├── OffsetsRiot.h ├── Orbwalker.cpp ├── Orbwalker.h ├── PIDManager.cpp ├── PIDManager.h ├── PathControllerCommon.cpp ├── PathControllerCommon.h ├── PathManager.h ├── PluginTemplate.cpp ├── PluginTemplate.h ├── Plugins.cpp ├── Plugins.h ├── Polygons.h ├── Prediction.h ├── Rect.cpp ├── Rect.h ├── RenderLayer.cpp ├── RenderLayer.h ├── Renderer.cpp ├── Renderer.h ├── Riven.cpp ├── Riven.h ├── SkillPrediction.h ├── Skillshot.h ├── SkillshotData.cpp ├── SkillshotData.h ├── SkinChanger.cpp ├── SkinChanger.h ├── Slider.cpp ├── Slider.h ├── SpellCastInfo.cpp ├── SpellCastInfo.h ├── SpellDB.cpp ├── SpellDB.h ├── SpellData.h ├── SpellDataInst.cpp ├── SpellDataInst.h ├── SpellDataResource.h ├── SpellDataScript.h ├── SpellInfo.cpp ├── SpellInfo.h ├── SpellInstanceClient.cpp ├── SpellInstanceClient.h ├── SpellSlots.h ├── SpellbookClient.cpp ├── SpellbookClient.h ├── TargetSelector.cpp ├── TargetSelector.h ├── TeleportEventArgs.h ├── Template.h ├── Twitch.cpp ├── Twitch.h ├── UltimateHooks.cpp ├── UltimateHooks.h ├── UnitInfoComponent.h ├── Utils.h ├── V21.vcxproj ├── V21.vcxproj.filters ├── Vayne.cpp ├── Vayne.h ├── Vector2.cpp ├── Vector2.h ├── Vector3.cpp ├── Vector3.h ├── VirtualTableManager.cpp ├── VirtualTableManager.h ├── Win32Exception.cpp ├── Win32Exception.h ├── Xerath.cpp ├── Xerath.h ├── XorString.h ├── ZycoreExportConfig.h ├── ZydisExportConfig.h ├── clipper.cpp ├── clipper.h ├── d3dx12.h ├── defs.h ├── dllmain.cpp ├── fnv_hash.hpp ├── hideModule.h ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_draw.cpp ├── imgui_impl_dx11.cpp ├── imgui_impl_dx11.h ├── imgui_impl_dx9.cpp ├── imgui_impl_dx9.h ├── imgui_impl_win32.cpp ├── imgui_impl_win32.h ├── imgui_internal.h ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h ├── imstb_truetype.h ├── json.hpp ├── makesyscall.h ├── stdafx.cpp ├── stdafx.h └── syscalls.h ├── Vault21.sln └── imgui ├── imgui_demo.cpp ├── imgui_impl_dx11.cpp ├── imgui_impl_dx11.h └── imgui_tables.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/.gitignore -------------------------------------------------------------------------------- /IDA-LeagueUpdater/IDA-LeagueUpdater.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/IDA-LeagueUpdater/IDA-LeagueUpdater.pyproj -------------------------------------------------------------------------------- /IDA-LeagueUpdater/IDA_LeagueUpdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/IDA-LeagueUpdater/IDA_LeagueUpdater.py -------------------------------------------------------------------------------- /ImGui/ImGui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/ImGui.vcxproj -------------------------------------------------------------------------------- /ImGui/ImGui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/ImGui.vcxproj.filters -------------------------------------------------------------------------------- /ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/imconfig.h -------------------------------------------------------------------------------- /ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/imgui.cpp -------------------------------------------------------------------------------- /ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/imgui.h -------------------------------------------------------------------------------- /ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /ImGui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /ImGui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /ImGui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /ImGui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/imgui_impl_win32.h -------------------------------------------------------------------------------- /ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /Internal/BuffEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/BuffEntry.cpp -------------------------------------------------------------------------------- /Internal/BuffEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/BuffEntry.h -------------------------------------------------------------------------------- /Internal/BuffManager.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /Internal/BuffManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/BuffManager.h -------------------------------------------------------------------------------- /Internal/CObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/CObject.cpp -------------------------------------------------------------------------------- /Internal/CObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/CObject.h -------------------------------------------------------------------------------- /Internal/CObjectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/CObjectManager.h -------------------------------------------------------------------------------- /Internal/CSpellDataInst.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /Internal/CallBackIntStates.h: -------------------------------------------------------------------------------- 1 | #pragma once -------------------------------------------------------------------------------- /Internal/Callbacks.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Internal/Callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Callbacks.h -------------------------------------------------------------------------------- /Internal/Capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Capture.cpp -------------------------------------------------------------------------------- /Internal/Capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Capture.h -------------------------------------------------------------------------------- /Internal/ClassWrapper.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class Wrapper 4 | { 5 | 6 | }; -------------------------------------------------------------------------------- /Internal/DXGICapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/DXGICapture.cpp -------------------------------------------------------------------------------- /Internal/DXGICapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/DXGICapture.h -------------------------------------------------------------------------------- /Internal/Direct3D12Capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Direct3D12Capture.cpp -------------------------------------------------------------------------------- /Internal/Direct3D12Capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Direct3D12Capture.h -------------------------------------------------------------------------------- /Internal/Direct3D9Capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Direct3D9Capture.cpp -------------------------------------------------------------------------------- /Internal/Direct3D9Capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Direct3D9Capture.h -------------------------------------------------------------------------------- /Internal/DllMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/DllMain.cpp -------------------------------------------------------------------------------- /Internal/DriverController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/DriverController.cpp -------------------------------------------------------------------------------- /Internal/DriverController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/DriverController.h -------------------------------------------------------------------------------- /Internal/ESpellSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/ESpellSlot.h -------------------------------------------------------------------------------- /Internal/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Engine.cpp -------------------------------------------------------------------------------- /Internal/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Engine.h -------------------------------------------------------------------------------- /Internal/ExampleAppLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/ExampleAppLog.h -------------------------------------------------------------------------------- /Internal/FuncHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/FuncHook.cpp -------------------------------------------------------------------------------- /Internal/FuncHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/FuncHook.h -------------------------------------------------------------------------------- /Internal/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Globals.h -------------------------------------------------------------------------------- /Internal/HealthPrediction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/HealthPrediction.cpp -------------------------------------------------------------------------------- /Internal/HealthPrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/HealthPrediction.h -------------------------------------------------------------------------------- /Internal/HeavensGateHook.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Internal/HeavensGateHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/HeavensGateHook.h -------------------------------------------------------------------------------- /Internal/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Hooks.h -------------------------------------------------------------------------------- /Internal/ImRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/ImRenderer.cpp -------------------------------------------------------------------------------- /Internal/ImRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/ImRenderer.h -------------------------------------------------------------------------------- /Internal/Internal.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Internal.vcxproj -------------------------------------------------------------------------------- /Internal/Internal.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Internal.vcxproj.filters -------------------------------------------------------------------------------- /Internal/LUA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/LUA.cpp -------------------------------------------------------------------------------- /Internal/LUA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/LUA.h -------------------------------------------------------------------------------- /Internal/LUA/include/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/LUA/include/lauxlib.h -------------------------------------------------------------------------------- /Internal/LUA/include/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/LUA/include/lua.h -------------------------------------------------------------------------------- /Internal/LUA/include/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/LUA/include/lua.hpp -------------------------------------------------------------------------------- /Internal/LUA/include/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/LUA/include/luaconf.h -------------------------------------------------------------------------------- /Internal/LUA/include/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/LUA/include/lualib.h -------------------------------------------------------------------------------- /Internal/LUA/lua54.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/LUA/lua54.lib -------------------------------------------------------------------------------- /Internal/LeagueFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/LeagueFunctions.cpp -------------------------------------------------------------------------------- /Internal/LeagueFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/LeagueFunctions.h -------------------------------------------------------------------------------- /Internal/LeagueHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/LeagueHooks.cpp -------------------------------------------------------------------------------- /Internal/LeagueHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/LeagueHooks.h -------------------------------------------------------------------------------- /Internal/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Misc.cpp -------------------------------------------------------------------------------- /Internal/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Misc.h -------------------------------------------------------------------------------- /Internal/Offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Offsets.h -------------------------------------------------------------------------------- /Internal/Orbwalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Orbwalker.cpp -------------------------------------------------------------------------------- /Internal/Orbwalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Orbwalker.h -------------------------------------------------------------------------------- /Internal/PIDManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/PIDManager.cpp -------------------------------------------------------------------------------- /Internal/PIDManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/PIDManager.h -------------------------------------------------------------------------------- /Internal/SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/SDK.h -------------------------------------------------------------------------------- /Internal/SpellCastInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/SpellCastInfo.h -------------------------------------------------------------------------------- /Internal/SpellData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/SpellData.h -------------------------------------------------------------------------------- /Internal/SpellInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/SpellInfo.h -------------------------------------------------------------------------------- /Internal/SpellSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/SpellSlot.h -------------------------------------------------------------------------------- /Internal/StaticLists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/StaticLists.h -------------------------------------------------------------------------------- /Internal/TargetSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/TargetSelector.cpp -------------------------------------------------------------------------------- /Internal/TargetSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/TargetSelector.h -------------------------------------------------------------------------------- /Internal/UnitComponentInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/UnitComponentInfo.h -------------------------------------------------------------------------------- /Internal/UnitComponentInfoProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/UnitComponentInfoProperties.h -------------------------------------------------------------------------------- /Internal/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Utils.h -------------------------------------------------------------------------------- /Internal/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Vector.h -------------------------------------------------------------------------------- /Internal/VectorLong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/VectorLong.h -------------------------------------------------------------------------------- /Internal/Win32Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Win32Exception.cpp -------------------------------------------------------------------------------- /Internal/Win32Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/Win32Exception.h -------------------------------------------------------------------------------- /Internal/ZycoreExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/ZycoreExportConfig.h -------------------------------------------------------------------------------- /Internal/ZydisExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/ZydisExportConfig.h -------------------------------------------------------------------------------- /Internal/d3dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/d3dx12.h -------------------------------------------------------------------------------- /Internal/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/defs.h -------------------------------------------------------------------------------- /Internal/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/driver.h -------------------------------------------------------------------------------- /Internal/encryption.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/encryption.hpp -------------------------------------------------------------------------------- /Internal/fnv_hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/fnv_hash.hpp -------------------------------------------------------------------------------- /Internal/game_classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/game_classes.cpp -------------------------------------------------------------------------------- /Internal/hideModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/hideModule.h -------------------------------------------------------------------------------- /Internal/images/barrier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/barrier.png -------------------------------------------------------------------------------- /Internal/images/barrier_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/barrier_cd.png -------------------------------------------------------------------------------- /Internal/images/cleanse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/cleanse.png -------------------------------------------------------------------------------- /Internal/images/cleanse_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/cleanse_cd.png -------------------------------------------------------------------------------- /Internal/images/exhaust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/exhaust.png -------------------------------------------------------------------------------- /Internal/images/exhaust_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/exhaust_cd.png -------------------------------------------------------------------------------- /Internal/images/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/flash.png -------------------------------------------------------------------------------- /Internal/images/flash_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/flash_cd.png -------------------------------------------------------------------------------- /Internal/images/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/ghost.png -------------------------------------------------------------------------------- /Internal/images/ghost_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/ghost_cd.png -------------------------------------------------------------------------------- /Internal/images/heal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/heal.png -------------------------------------------------------------------------------- /Internal/images/heal_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/heal_cd.png -------------------------------------------------------------------------------- /Internal/images/ignite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/ignite.png -------------------------------------------------------------------------------- /Internal/images/ignite_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/ignite_cd.png -------------------------------------------------------------------------------- /Internal/images/smite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/smite.png -------------------------------------------------------------------------------- /Internal/images/smite_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/smite_cd.png -------------------------------------------------------------------------------- /Internal/images/teleport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/teleport.png -------------------------------------------------------------------------------- /Internal/images/teleport_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/images/teleport_cd.png -------------------------------------------------------------------------------- /Internal/include/Zycore/API/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/API/Memory.h -------------------------------------------------------------------------------- /Internal/include/Zycore/API/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/API/Synchronization.h -------------------------------------------------------------------------------- /Internal/include/Zycore/API/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/API/Terminal.h -------------------------------------------------------------------------------- /Internal/include/Zycore/API/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/API/Thread.h -------------------------------------------------------------------------------- /Internal/include/Zycore/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/Allocator.h -------------------------------------------------------------------------------- /Internal/include/Zycore/ArgParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/ArgParse.h -------------------------------------------------------------------------------- /Internal/include/Zycore/Bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/Bitset.h -------------------------------------------------------------------------------- /Internal/include/Zycore/Comparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/Comparison.h -------------------------------------------------------------------------------- /Internal/include/Zycore/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/Defines.h -------------------------------------------------------------------------------- /Internal/include/Zycore/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/Format.h -------------------------------------------------------------------------------- /Internal/include/Zycore/LibC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/LibC.h -------------------------------------------------------------------------------- /Internal/include/Zycore/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/List.h -------------------------------------------------------------------------------- /Internal/include/Zycore/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/Object.h -------------------------------------------------------------------------------- /Internal/include/Zycore/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/Status.h -------------------------------------------------------------------------------- /Internal/include/Zycore/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/String.h -------------------------------------------------------------------------------- /Internal/include/Zycore/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/Types.h -------------------------------------------------------------------------------- /Internal/include/Zycore/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/Vector.h -------------------------------------------------------------------------------- /Internal/include/Zycore/Zycore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zycore/Zycore.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Decoder.h -------------------------------------------------------------------------------- /Internal/include/Zydis/DecoderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/DecoderTypes.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Formatter.h -------------------------------------------------------------------------------- /Internal/include/Zydis/FormatterBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/FormatterBuffer.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Generated/EnumISAExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Generated/EnumISAExt.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Generated/EnumISASet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Generated/EnumISASet.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Generated/EnumInstructionCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Generated/EnumInstructionCategory.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Generated/EnumMnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Generated/EnumMnemonic.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Generated/EnumRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Generated/EnumRegister.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Internal/DecoderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Internal/DecoderData.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Internal/FormatterATT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Internal/FormatterATT.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Internal/FormatterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Internal/FormatterBase.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Internal/FormatterIntel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Internal/FormatterIntel.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Internal/SharedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Internal/SharedData.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Internal/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Internal/String.h -------------------------------------------------------------------------------- /Internal/include/Zydis/MetaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/MetaInfo.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Mnemonic.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Register.h -------------------------------------------------------------------------------- /Internal/include/Zydis/SharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/SharedTypes.h -------------------------------------------------------------------------------- /Internal/include/Zydis/ShortString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/ShortString.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Status.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Utils.h -------------------------------------------------------------------------------- /Internal/include/Zydis/Zydis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/Zydis.h -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Decoder.c -------------------------------------------------------------------------------- /Internal/include/Zydis/src/DecoderData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/DecoderData.c -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Formatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Formatter.c -------------------------------------------------------------------------------- /Internal/include/Zydis/src/FormatterATT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/FormatterATT.c -------------------------------------------------------------------------------- /Internal/include/Zydis/src/FormatterBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/FormatterBase.c -------------------------------------------------------------------------------- /Internal/include/Zydis/src/FormatterBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/FormatterBuffer.c -------------------------------------------------------------------------------- /Internal/include/Zydis/src/FormatterIntel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/FormatterIntel.c -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Generated/AccessedFlags.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Generated/AccessedFlags.inc -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Generated/DecoderTables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Generated/DecoderTables.inc -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Generated/EncodableInstructions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Generated/EncodableInstructions.inc -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Generated/EnumISAExt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Generated/EnumISAExt.inc -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Generated/EnumISASet.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Generated/EnumISASet.inc -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Generated/EnumInstructionCategory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Generated/EnumInstructionCategory.inc -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Generated/EnumMnemonic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Generated/EnumMnemonic.inc -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Generated/EnumRegister.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Generated/EnumRegister.inc -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Generated/FormatterStrings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Generated/FormatterStrings.inc -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Generated/InstructionDefinitions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Generated/InstructionDefinitions.inc -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Generated/InstructionEncodings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Generated/InstructionEncodings.inc -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Generated/OperandDefinitions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Generated/OperandDefinitions.inc -------------------------------------------------------------------------------- /Internal/include/Zydis/src/MetaInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/MetaInfo.c -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Mnemonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Mnemonic.c -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Register.c -------------------------------------------------------------------------------- /Internal/include/Zydis/src/SharedData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/SharedData.c -------------------------------------------------------------------------------- /Internal/include/Zydis/src/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/String.c -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Utils.c -------------------------------------------------------------------------------- /Internal/include/Zydis/src/Zydis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/include/Zydis/src/Zydis.c -------------------------------------------------------------------------------- /Internal/inputhook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/inputhook.cpp -------------------------------------------------------------------------------- /Internal/inputhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/inputhook.h -------------------------------------------------------------------------------- /Internal/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/json.hpp -------------------------------------------------------------------------------- /Internal/makesyscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/makesyscall.h -------------------------------------------------------------------------------- /Internal/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/menu.cpp -------------------------------------------------------------------------------- /Internal/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/menu.h -------------------------------------------------------------------------------- /Internal/skin_changer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/skin_changer.cpp -------------------------------------------------------------------------------- /Internal/skin_changer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/skin_changer.hpp -------------------------------------------------------------------------------- /Internal/skin_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/skin_database.cpp -------------------------------------------------------------------------------- /Internal/skin_database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/skin_database.hpp -------------------------------------------------------------------------------- /Internal/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/stb_image.h -------------------------------------------------------------------------------- /Internal/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/stdafx.h -------------------------------------------------------------------------------- /Internal/syscalls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Internal/syscalls.hpp -------------------------------------------------------------------------------- /LeagueDebugger/CSpellDataInst.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /LeagueDebugger/Capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/Capture.cpp -------------------------------------------------------------------------------- /LeagueDebugger/Capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/Capture.h -------------------------------------------------------------------------------- /LeagueDebugger/DXGICapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/DXGICapture.cpp -------------------------------------------------------------------------------- /LeagueDebugger/DXGICapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/DXGICapture.h -------------------------------------------------------------------------------- /LeagueDebugger/Direct3D12Capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/Direct3D12Capture.cpp -------------------------------------------------------------------------------- /LeagueDebugger/Direct3D12Capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/Direct3D12Capture.h -------------------------------------------------------------------------------- /LeagueDebugger/Direct3D9Capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/Direct3D9Capture.cpp -------------------------------------------------------------------------------- /LeagueDebugger/Direct3D9Capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/Direct3D9Capture.h -------------------------------------------------------------------------------- /LeagueDebugger/DllMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/DllMain.cpp -------------------------------------------------------------------------------- /LeagueDebugger/ExampleAppLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/ExampleAppLog.h -------------------------------------------------------------------------------- /LeagueDebugger/FW1FontWrapper/fw1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/FW1FontWrapper/fw1.zip -------------------------------------------------------------------------------- /LeagueDebugger/FuncHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/FuncHook.cpp -------------------------------------------------------------------------------- /LeagueDebugger/FuncHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/FuncHook.h -------------------------------------------------------------------------------- /LeagueDebugger/ImRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/ImRenderer.cpp -------------------------------------------------------------------------------- /LeagueDebugger/LeagueDebugger.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/LeagueDebugger.vcxproj -------------------------------------------------------------------------------- /LeagueDebugger/LeagueDebugger.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/LeagueDebugger.vcxproj.filters -------------------------------------------------------------------------------- /LeagueDebugger/LeagueFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/LeagueFunctions.cpp -------------------------------------------------------------------------------- /LeagueDebugger/LeagueHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/LeagueHooks.cpp -------------------------------------------------------------------------------- /LeagueDebugger/LeagueHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/LeagueHooks.h -------------------------------------------------------------------------------- /LeagueDebugger/UltimateHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/UltimateHooks.cpp -------------------------------------------------------------------------------- /LeagueDebugger/UltimateHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/UltimateHooks.h -------------------------------------------------------------------------------- /LeagueDebugger/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/Utils.h -------------------------------------------------------------------------------- /LeagueDebugger/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/Vector.h -------------------------------------------------------------------------------- /LeagueDebugger/VectorLong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/VectorLong.h -------------------------------------------------------------------------------- /LeagueDebugger/Win32Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/Win32Exception.cpp -------------------------------------------------------------------------------- /LeagueDebugger/Win32Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/Win32Exception.h -------------------------------------------------------------------------------- /LeagueDebugger/ZycoreExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/ZycoreExportConfig.h -------------------------------------------------------------------------------- /LeagueDebugger/ZydisExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/ZydisExportConfig.h -------------------------------------------------------------------------------- /LeagueDebugger/d3dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/d3dx12.h -------------------------------------------------------------------------------- /LeagueDebugger/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/defs.h -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imconfig.h -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imgui.cpp -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imgui.h -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imgui_internal.h -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /LeagueDebugger/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/API/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/API/Memory.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/API/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/API/Synchronization.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/API/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/API/Terminal.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/API/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/API/Thread.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/Allocator.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/ArgParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/ArgParse.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/Bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/Bitset.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/Comparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/Comparison.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/Defines.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/Format.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/LibC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/LibC.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/List.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/Object.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/Status.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/String.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/Types.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/Vector.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zycore/Zycore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zycore/Zycore.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Decoder.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/DecoderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/DecoderTypes.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Formatter.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/FormatterBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/FormatterBuffer.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Generated/EnumISAExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Generated/EnumISAExt.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Generated/EnumISASet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Generated/EnumISASet.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Generated/EnumInstructionCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Generated/EnumInstructionCategory.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Generated/EnumMnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Generated/EnumMnemonic.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Generated/EnumRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Generated/EnumRegister.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Internal/DecoderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Internal/DecoderData.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Internal/FormatterATT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Internal/FormatterATT.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Internal/FormatterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Internal/FormatterBase.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Internal/FormatterIntel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Internal/FormatterIntel.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Internal/SharedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Internal/SharedData.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Internal/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Internal/String.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/MetaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/MetaInfo.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Mnemonic.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Register.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/SharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/SharedTypes.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/ShortString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/ShortString.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Status.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Utils.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/Zydis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/Zydis.h -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Decoder.c -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/DecoderData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/DecoderData.c -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Formatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Formatter.c -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/FormatterATT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/FormatterATT.c -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/FormatterBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/FormatterBase.c -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/FormatterBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/FormatterBuffer.c -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/FormatterIntel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/FormatterIntel.c -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Generated/AccessedFlags.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Generated/AccessedFlags.inc -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Generated/DecoderTables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Generated/DecoderTables.inc -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Generated/EncodableInstructions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Generated/EncodableInstructions.inc -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Generated/EnumISAExt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Generated/EnumISAExt.inc -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Generated/EnumISASet.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Generated/EnumISASet.inc -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Generated/EnumInstructionCategory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Generated/EnumInstructionCategory.inc -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Generated/EnumMnemonic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Generated/EnumMnemonic.inc -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Generated/EnumRegister.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Generated/EnumRegister.inc -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Generated/FormatterStrings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Generated/FormatterStrings.inc -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Generated/InstructionDefinitions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Generated/InstructionDefinitions.inc -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Generated/InstructionEncodings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Generated/InstructionEncodings.inc -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Generated/OperandDefinitions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Generated/OperandDefinitions.inc -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/MetaInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/MetaInfo.c -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Mnemonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Mnemonic.c -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Register.c -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/SharedData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/SharedData.c -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/String.c -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Utils.c -------------------------------------------------------------------------------- /LeagueDebugger/include/Zydis/src/Zydis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/include/Zydis/src/Zydis.c -------------------------------------------------------------------------------- /LeagueDebugger/inputhook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/inputhook.cpp -------------------------------------------------------------------------------- /LeagueDebugger/inputhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/inputhook.h -------------------------------------------------------------------------------- /LeagueDebugger/makesyscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/makesyscall.h -------------------------------------------------------------------------------- /LeagueDebugger/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/menu.cpp -------------------------------------------------------------------------------- /LeagueDebugger/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/menu.h -------------------------------------------------------------------------------- /LeagueDebugger/renderer/ImRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/renderer/ImRenderer.cpp -------------------------------------------------------------------------------- /LeagueDebugger/renderer/ImRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/renderer/ImRenderer.h -------------------------------------------------------------------------------- /LeagueDebugger/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/stb_image.h -------------------------------------------------------------------------------- /LeagueDebugger/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/stdafx.h -------------------------------------------------------------------------------- /LeagueDebugger/syscalls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/syscalls.hpp -------------------------------------------------------------------------------- /LeagueDebugger/tools/ZydisDisasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/tools/ZydisDisasm.c -------------------------------------------------------------------------------- /LeagueDebugger/tools/ZydisFuzzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/tools/ZydisFuzzIn.c -------------------------------------------------------------------------------- /LeagueDebugger/tools/ZydisInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/tools/ZydisInfo.c -------------------------------------------------------------------------------- /LeagueDebugger/tools/ZydisPE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueDebugger/tools/ZydisPE.c -------------------------------------------------------------------------------- /LeagueInjector/LeagueInjector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueInjector/LeagueInjector.vcxproj -------------------------------------------------------------------------------- /LeagueInjector/LeagueInjector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueInjector/LeagueInjector.vcxproj.filters -------------------------------------------------------------------------------- /LeagueInjector/XorString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueInjector/XorString.h -------------------------------------------------------------------------------- /LeagueInjector/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueInjector/main.cpp -------------------------------------------------------------------------------- /LeagueInjector/makesyscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueInjector/makesyscall.h -------------------------------------------------------------------------------- /LeagueNuke/LeagueNuke.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueNuke/LeagueNuke.vcxproj -------------------------------------------------------------------------------- /LeagueNuke/LeagueNuke.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueNuke/LeagueNuke.vcxproj.filters -------------------------------------------------------------------------------- /LeagueNuke/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/LeagueNuke/dllmain.cpp -------------------------------------------------------------------------------- /Loader/Loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Loader/Loader.vcxproj -------------------------------------------------------------------------------- /Loader/Loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Loader/Loader.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/README.md -------------------------------------------------------------------------------- /V21/Activator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Activator.cpp -------------------------------------------------------------------------------- /V21/Activator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Activator.h -------------------------------------------------------------------------------- /V21/AiManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/AiManager.h -------------------------------------------------------------------------------- /V21/BasicPrediction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/BasicPrediction.cpp -------------------------------------------------------------------------------- /V21/BasicPrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/BasicPrediction.h -------------------------------------------------------------------------------- /V21/Brand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Brand.cpp -------------------------------------------------------------------------------- /V21/Brand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Brand.h -------------------------------------------------------------------------------- /V21/BuffInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/BuffInstance.cpp -------------------------------------------------------------------------------- /V21/BuffInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/BuffInstance.h -------------------------------------------------------------------------------- /V21/BuffManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/BuffManager.h -------------------------------------------------------------------------------- /V21/BuffScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/BuffScript.cpp -------------------------------------------------------------------------------- /V21/BuffScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/BuffScript.h -------------------------------------------------------------------------------- /V21/BuffScriptInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/BuffScriptInstance.h -------------------------------------------------------------------------------- /V21/Capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Capture.cpp -------------------------------------------------------------------------------- /V21/Capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Capture.h -------------------------------------------------------------------------------- /V21/CharacterData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/CharacterData.h -------------------------------------------------------------------------------- /V21/CharacterDataStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/CharacterDataStack.h -------------------------------------------------------------------------------- /V21/CharacterProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/CharacterProperties.h -------------------------------------------------------------------------------- /V21/CheckBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/CheckBox.cpp -------------------------------------------------------------------------------- /V21/CheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/CheckBox.h -------------------------------------------------------------------------------- /V21/ClassData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/ClassData.h -------------------------------------------------------------------------------- /V21/ClockFacade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/ClockFacade.cpp -------------------------------------------------------------------------------- /V21/ClockFacade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/ClockFacade.h -------------------------------------------------------------------------------- /V21/ComponentBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/ComponentBase.h -------------------------------------------------------------------------------- /V21/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Config.h -------------------------------------------------------------------------------- /V21/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Console.cpp -------------------------------------------------------------------------------- /V21/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Console.h -------------------------------------------------------------------------------- /V21/CrashHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/CrashHandler.cpp -------------------------------------------------------------------------------- /V21/CrashHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/CrashHandler.h -------------------------------------------------------------------------------- /V21/DXGICapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/DXGICapture.cpp -------------------------------------------------------------------------------- /V21/DXGICapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/DXGICapture.h -------------------------------------------------------------------------------- /V21/Damage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Damage.cpp -------------------------------------------------------------------------------- /V21/Damage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Damage.h -------------------------------------------------------------------------------- /V21/Dependencies/Include/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Dependencies/Include/json.hpp -------------------------------------------------------------------------------- /V21/Detour.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /V21/DeviceHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/DeviceHandler.cpp -------------------------------------------------------------------------------- /V21/DeviceHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/DeviceHandler.h -------------------------------------------------------------------------------- /V21/Direct3D9Capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Direct3D9Capture.cpp -------------------------------------------------------------------------------- /V21/Direct3D9Capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Direct3D9Capture.h -------------------------------------------------------------------------------- /V21/Draven.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Draven.cpp -------------------------------------------------------------------------------- /V21/Draven.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Draven.h -------------------------------------------------------------------------------- /V21/Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Draw.cpp -------------------------------------------------------------------------------- /V21/Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Draw.h -------------------------------------------------------------------------------- /V21/EnumMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/EnumMacro.h -------------------------------------------------------------------------------- /V21/Evade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Evade.cpp -------------------------------------------------------------------------------- /V21/Evade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Evade.h -------------------------------------------------------------------------------- /V21/EvadeConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/EvadeConstants.h -------------------------------------------------------------------------------- /V21/EvadeMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/EvadeMath.h -------------------------------------------------------------------------------- /V21/EvaderDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/EvaderDB.h -------------------------------------------------------------------------------- /V21/EventManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/EventManager.cpp -------------------------------------------------------------------------------- /V21/EventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/EventManager.h -------------------------------------------------------------------------------- /V21/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Events.cpp -------------------------------------------------------------------------------- /V21/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Events.h -------------------------------------------------------------------------------- /V21/Experience.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Experience.h -------------------------------------------------------------------------------- /V21/FastMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/FastMath.h -------------------------------------------------------------------------------- /V21/FloatingInfoBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/FloatingInfoBar.h -------------------------------------------------------------------------------- /V21/FuncHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/FuncHook.cpp -------------------------------------------------------------------------------- /V21/FuncHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/FuncHook.h -------------------------------------------------------------------------------- /V21/Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Functions.cpp -------------------------------------------------------------------------------- /V21/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Functions.h -------------------------------------------------------------------------------- /V21/GameClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/GameClient.cpp -------------------------------------------------------------------------------- /V21/GameClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/GameClient.h -------------------------------------------------------------------------------- /V21/GameObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/GameObject.cpp -------------------------------------------------------------------------------- /V21/GameObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/GameObject.h -------------------------------------------------------------------------------- /V21/GameStartData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/GameStartData.cpp -------------------------------------------------------------------------------- /V21/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Geometry.h -------------------------------------------------------------------------------- /V21/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Globals.cpp -------------------------------------------------------------------------------- /V21/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Globals.h -------------------------------------------------------------------------------- /V21/HashFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/HashFunctions.cpp -------------------------------------------------------------------------------- /V21/HashFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/HashFunctions.h -------------------------------------------------------------------------------- /V21/HealthPrediction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/HealthPrediction.cpp -------------------------------------------------------------------------------- /V21/HealthPrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/HealthPrediction.h -------------------------------------------------------------------------------- /V21/HeavensGateHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/HeavensGateHook.h -------------------------------------------------------------------------------- /V21/HeroInventoryCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/HeroInventoryCommon.h -------------------------------------------------------------------------------- /V21/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Hooks.cpp -------------------------------------------------------------------------------- /V21/HudCursorTargetLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/HudCursorTargetLogic.h -------------------------------------------------------------------------------- /V21/HudManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/HudManager.cpp -------------------------------------------------------------------------------- /V21/HudManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/HudManager.h -------------------------------------------------------------------------------- /V21/Include/Zycore/API/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/API/Memory.h -------------------------------------------------------------------------------- /V21/Include/Zycore/API/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/API/Synchronization.h -------------------------------------------------------------------------------- /V21/Include/Zycore/API/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/API/Terminal.h -------------------------------------------------------------------------------- /V21/Include/Zycore/API/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/API/Thread.h -------------------------------------------------------------------------------- /V21/Include/Zycore/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/Allocator.h -------------------------------------------------------------------------------- /V21/Include/Zycore/ArgParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/ArgParse.h -------------------------------------------------------------------------------- /V21/Include/Zycore/Bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/Bitset.h -------------------------------------------------------------------------------- /V21/Include/Zycore/Comparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/Comparison.h -------------------------------------------------------------------------------- /V21/Include/Zycore/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/Defines.h -------------------------------------------------------------------------------- /V21/Include/Zycore/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/Format.h -------------------------------------------------------------------------------- /V21/Include/Zycore/LibC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/LibC.h -------------------------------------------------------------------------------- /V21/Include/Zycore/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/List.h -------------------------------------------------------------------------------- /V21/Include/Zycore/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/Object.h -------------------------------------------------------------------------------- /V21/Include/Zycore/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/Status.h -------------------------------------------------------------------------------- /V21/Include/Zycore/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/String.h -------------------------------------------------------------------------------- /V21/Include/Zycore/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/Types.h -------------------------------------------------------------------------------- /V21/Include/Zycore/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/Vector.h -------------------------------------------------------------------------------- /V21/Include/Zycore/Zycore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zycore/Zycore.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Decoder.h -------------------------------------------------------------------------------- /V21/Include/Zydis/DecoderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/DecoderTypes.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Formatter.h -------------------------------------------------------------------------------- /V21/Include/Zydis/FormatterBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/FormatterBuffer.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Generated/EnumISAExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Generated/EnumISAExt.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Generated/EnumISASet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Generated/EnumISASet.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Generated/EnumInstructionCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Generated/EnumInstructionCategory.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Generated/EnumMnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Generated/EnumMnemonic.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Generated/EnumRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Generated/EnumRegister.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Internal/DecoderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Internal/DecoderData.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Internal/FormatterATT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Internal/FormatterATT.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Internal/FormatterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Internal/FormatterBase.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Internal/FormatterIntel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Internal/FormatterIntel.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Internal/SharedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Internal/SharedData.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Internal/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Internal/String.h -------------------------------------------------------------------------------- /V21/Include/Zydis/MetaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/MetaInfo.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Mnemonic.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Register.h -------------------------------------------------------------------------------- /V21/Include/Zydis/SharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/SharedTypes.h -------------------------------------------------------------------------------- /V21/Include/Zydis/ShortString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/ShortString.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Status.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Utils.h -------------------------------------------------------------------------------- /V21/Include/Zydis/Zydis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/Zydis.h -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Decoder.c -------------------------------------------------------------------------------- /V21/Include/Zydis/src/DecoderData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/DecoderData.c -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Formatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Formatter.c -------------------------------------------------------------------------------- /V21/Include/Zydis/src/FormatterATT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/FormatterATT.c -------------------------------------------------------------------------------- /V21/Include/Zydis/src/FormatterBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/FormatterBase.c -------------------------------------------------------------------------------- /V21/Include/Zydis/src/FormatterBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/FormatterBuffer.c -------------------------------------------------------------------------------- /V21/Include/Zydis/src/FormatterIntel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/FormatterIntel.c -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Generated/AccessedFlags.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Generated/AccessedFlags.inc -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Generated/DecoderTables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Generated/DecoderTables.inc -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Generated/EncodableInstructions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Generated/EncodableInstructions.inc -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Generated/EnumISAExt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Generated/EnumISAExt.inc -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Generated/EnumISASet.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Generated/EnumISASet.inc -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Generated/EnumInstructionCategory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Generated/EnumInstructionCategory.inc -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Generated/EnumMnemonic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Generated/EnumMnemonic.inc -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Generated/EnumRegister.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Generated/EnumRegister.inc -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Generated/FormatterStrings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Generated/FormatterStrings.inc -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Generated/InstructionDefinitions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Generated/InstructionDefinitions.inc -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Generated/InstructionEncodings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Generated/InstructionEncodings.inc -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Generated/OperandDefinitions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Generated/OperandDefinitions.inc -------------------------------------------------------------------------------- /V21/Include/Zydis/src/MetaInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/MetaInfo.c -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Mnemonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Mnemonic.c -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Register.c -------------------------------------------------------------------------------- /V21/Include/Zydis/src/SharedData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/SharedData.c -------------------------------------------------------------------------------- /V21/Include/Zydis/src/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/String.c -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Utils.c -------------------------------------------------------------------------------- /V21/Include/Zydis/src/Zydis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Include/Zydis/src/Zydis.c -------------------------------------------------------------------------------- /V21/Info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Info.cpp -------------------------------------------------------------------------------- /V21/Info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Info.h -------------------------------------------------------------------------------- /V21/Instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Instances.cpp -------------------------------------------------------------------------------- /V21/Instances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Instances.h -------------------------------------------------------------------------------- /V21/InventorySlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/InventorySlot.h -------------------------------------------------------------------------------- /V21/ItemData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/ItemData.h -------------------------------------------------------------------------------- /V21/ItemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/ItemInfo.h -------------------------------------------------------------------------------- /V21/Jax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Jax.cpp -------------------------------------------------------------------------------- /V21/Jax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Jax.h -------------------------------------------------------------------------------- /V21/KeyBind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/KeyBind.cpp -------------------------------------------------------------------------------- /V21/KeyBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/KeyBind.h -------------------------------------------------------------------------------- /V21/LeagueFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/LeagueFunctions.cpp -------------------------------------------------------------------------------- /V21/LeagueFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/LeagueFunctions.h -------------------------------------------------------------------------------- /V21/LeagueHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/LeagueHooks.cpp -------------------------------------------------------------------------------- /V21/LeagueHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/LeagueHooks.h -------------------------------------------------------------------------------- /V21/List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/List.cpp -------------------------------------------------------------------------------- /V21/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/List.h -------------------------------------------------------------------------------- /V21/Lucian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Lucian.cpp -------------------------------------------------------------------------------- /V21/Lucian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Lucian.h -------------------------------------------------------------------------------- /V21/ManagerTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/ManagerTemplate.cpp -------------------------------------------------------------------------------- /V21/ManagerTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/ManagerTemplate.h -------------------------------------------------------------------------------- /V21/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Menu.cpp -------------------------------------------------------------------------------- /V21/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Menu.h -------------------------------------------------------------------------------- /V21/MenuComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/MenuComponent.cpp -------------------------------------------------------------------------------- /V21/MenuComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/MenuComponent.h -------------------------------------------------------------------------------- /V21/MenuSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/MenuSettings.cpp -------------------------------------------------------------------------------- /V21/MenuSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/MenuSettings.h -------------------------------------------------------------------------------- /V21/MissFortune.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/MissFortune.cpp -------------------------------------------------------------------------------- /V21/MissFortune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/MissFortune.h -------------------------------------------------------------------------------- /V21/MissileClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/MissileClient.h -------------------------------------------------------------------------------- /V21/NavGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/NavGrid.cpp -------------------------------------------------------------------------------- /V21/NavGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/NavGrid.h -------------------------------------------------------------------------------- /V21/NavGridCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/NavGridCell.h -------------------------------------------------------------------------------- /V21/NavGridCellFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/NavGridCellFlags.h -------------------------------------------------------------------------------- /V21/NavigationPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/NavigationPath.h -------------------------------------------------------------------------------- /V21/NetClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/NetClient.cpp -------------------------------------------------------------------------------- /V21/NetClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/NetClient.h -------------------------------------------------------------------------------- /V21/ObjectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/ObjectManager.cpp -------------------------------------------------------------------------------- /V21/ObjectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/ObjectManager.h -------------------------------------------------------------------------------- /V21/Offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Offsets.h -------------------------------------------------------------------------------- /V21/OffsetsChina.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /V21/OffsetsGarena.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /V21/OffsetsRiot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/OffsetsRiot.h -------------------------------------------------------------------------------- /V21/Orbwalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Orbwalker.cpp -------------------------------------------------------------------------------- /V21/Orbwalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Orbwalker.h -------------------------------------------------------------------------------- /V21/PIDManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/PIDManager.cpp -------------------------------------------------------------------------------- /V21/PIDManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/PIDManager.h -------------------------------------------------------------------------------- /V21/PathControllerCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/PathControllerCommon.cpp -------------------------------------------------------------------------------- /V21/PathControllerCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/PathControllerCommon.h -------------------------------------------------------------------------------- /V21/PathManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/PathManager.h -------------------------------------------------------------------------------- /V21/PluginTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/PluginTemplate.cpp -------------------------------------------------------------------------------- /V21/PluginTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/PluginTemplate.h -------------------------------------------------------------------------------- /V21/Plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Plugins.cpp -------------------------------------------------------------------------------- /V21/Plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Plugins.h -------------------------------------------------------------------------------- /V21/Polygons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Polygons.h -------------------------------------------------------------------------------- /V21/Prediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Prediction.h -------------------------------------------------------------------------------- /V21/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Rect.cpp -------------------------------------------------------------------------------- /V21/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Rect.h -------------------------------------------------------------------------------- /V21/RenderLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/RenderLayer.cpp -------------------------------------------------------------------------------- /V21/RenderLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/RenderLayer.h -------------------------------------------------------------------------------- /V21/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Renderer.cpp -------------------------------------------------------------------------------- /V21/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Renderer.h -------------------------------------------------------------------------------- /V21/Riven.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Riven.cpp -------------------------------------------------------------------------------- /V21/Riven.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Riven.h -------------------------------------------------------------------------------- /V21/SkillPrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SkillPrediction.h -------------------------------------------------------------------------------- /V21/Skillshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Skillshot.h -------------------------------------------------------------------------------- /V21/SkillshotData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SkillshotData.cpp -------------------------------------------------------------------------------- /V21/SkillshotData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SkillshotData.h -------------------------------------------------------------------------------- /V21/SkinChanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SkinChanger.cpp -------------------------------------------------------------------------------- /V21/SkinChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SkinChanger.h -------------------------------------------------------------------------------- /V21/Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Slider.cpp -------------------------------------------------------------------------------- /V21/Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Slider.h -------------------------------------------------------------------------------- /V21/SpellCastInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellCastInfo.cpp -------------------------------------------------------------------------------- /V21/SpellCastInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellCastInfo.h -------------------------------------------------------------------------------- /V21/SpellDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellDB.cpp -------------------------------------------------------------------------------- /V21/SpellDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellDB.h -------------------------------------------------------------------------------- /V21/SpellData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellData.h -------------------------------------------------------------------------------- /V21/SpellDataInst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellDataInst.cpp -------------------------------------------------------------------------------- /V21/SpellDataInst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellDataInst.h -------------------------------------------------------------------------------- /V21/SpellDataResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellDataResource.h -------------------------------------------------------------------------------- /V21/SpellDataScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellDataScript.h -------------------------------------------------------------------------------- /V21/SpellInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellInfo.cpp -------------------------------------------------------------------------------- /V21/SpellInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellInfo.h -------------------------------------------------------------------------------- /V21/SpellInstanceClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellInstanceClient.cpp -------------------------------------------------------------------------------- /V21/SpellInstanceClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellInstanceClient.h -------------------------------------------------------------------------------- /V21/SpellSlots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellSlots.h -------------------------------------------------------------------------------- /V21/SpellbookClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellbookClient.cpp -------------------------------------------------------------------------------- /V21/SpellbookClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/SpellbookClient.h -------------------------------------------------------------------------------- /V21/TargetSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/TargetSelector.cpp -------------------------------------------------------------------------------- /V21/TargetSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/TargetSelector.h -------------------------------------------------------------------------------- /V21/TeleportEventArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/TeleportEventArgs.h -------------------------------------------------------------------------------- /V21/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Template.h -------------------------------------------------------------------------------- /V21/Twitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Twitch.cpp -------------------------------------------------------------------------------- /V21/Twitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Twitch.h -------------------------------------------------------------------------------- /V21/UltimateHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/UltimateHooks.cpp -------------------------------------------------------------------------------- /V21/UltimateHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/UltimateHooks.h -------------------------------------------------------------------------------- /V21/UnitInfoComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/UnitInfoComponent.h -------------------------------------------------------------------------------- /V21/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Utils.h -------------------------------------------------------------------------------- /V21/V21.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/V21.vcxproj -------------------------------------------------------------------------------- /V21/V21.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/V21.vcxproj.filters -------------------------------------------------------------------------------- /V21/Vayne.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Vayne.cpp -------------------------------------------------------------------------------- /V21/Vayne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Vayne.h -------------------------------------------------------------------------------- /V21/Vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Vector2.cpp -------------------------------------------------------------------------------- /V21/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Vector2.h -------------------------------------------------------------------------------- /V21/Vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Vector3.cpp -------------------------------------------------------------------------------- /V21/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Vector3.h -------------------------------------------------------------------------------- /V21/VirtualTableManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/VirtualTableManager.cpp -------------------------------------------------------------------------------- /V21/VirtualTableManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/VirtualTableManager.h -------------------------------------------------------------------------------- /V21/Win32Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Win32Exception.cpp -------------------------------------------------------------------------------- /V21/Win32Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Win32Exception.h -------------------------------------------------------------------------------- /V21/Xerath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Xerath.cpp -------------------------------------------------------------------------------- /V21/Xerath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/Xerath.h -------------------------------------------------------------------------------- /V21/XorString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/XorString.h -------------------------------------------------------------------------------- /V21/ZycoreExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/ZycoreExportConfig.h -------------------------------------------------------------------------------- /V21/ZydisExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/ZydisExportConfig.h -------------------------------------------------------------------------------- /V21/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/clipper.cpp -------------------------------------------------------------------------------- /V21/clipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/clipper.h -------------------------------------------------------------------------------- /V21/d3dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/d3dx12.h -------------------------------------------------------------------------------- /V21/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/defs.h -------------------------------------------------------------------------------- /V21/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/dllmain.cpp -------------------------------------------------------------------------------- /V21/fnv_hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/fnv_hash.hpp -------------------------------------------------------------------------------- /V21/hideModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/hideModule.h -------------------------------------------------------------------------------- /V21/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imconfig.h -------------------------------------------------------------------------------- /V21/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imgui.cpp -------------------------------------------------------------------------------- /V21/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imgui.h -------------------------------------------------------------------------------- /V21/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imgui_draw.cpp -------------------------------------------------------------------------------- /V21/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /V21/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imgui_impl_dx11.h -------------------------------------------------------------------------------- /V21/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /V21/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imgui_impl_dx9.h -------------------------------------------------------------------------------- /V21/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /V21/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imgui_impl_win32.h -------------------------------------------------------------------------------- /V21/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imgui_internal.h -------------------------------------------------------------------------------- /V21/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imgui_widgets.cpp -------------------------------------------------------------------------------- /V21/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imstb_rectpack.h -------------------------------------------------------------------------------- /V21/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imstb_textedit.h -------------------------------------------------------------------------------- /V21/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/imstb_truetype.h -------------------------------------------------------------------------------- /V21/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/json.hpp -------------------------------------------------------------------------------- /V21/makesyscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/makesyscall.h -------------------------------------------------------------------------------- /V21/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /V21/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/stdafx.h -------------------------------------------------------------------------------- /V21/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/V21/syscalls.h -------------------------------------------------------------------------------- /Vault21.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/Vault21.sln -------------------------------------------------------------------------------- /imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimo-zzz/Vault21/HEAD/imgui/imgui_tables.cpp --------------------------------------------------------------------------------