├── Bytesa.h ├── ImGui ├── code_editor.cpp ├── code_editor.h ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_freetype.cpp ├── imgui_freetype.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 │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ └── ftstdlib.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── ftcolor.h │ │ ├── ftdriver.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftfntfmt.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftparams.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ └── tttags.h │ └── ft2build.h ├── pack.rar └── win32 │ └── freetype.lib ├── ImGuiConnect.h ├── LICENSE ├── Legendware.sln ├── Legendware.vcxproj ├── Legendware.vcxproj.filters ├── Legendware.vcxproj.user ├── Lua-5.3.5.pdb ├── Lua.lib ├── cheats ├── autowall │ ├── autowall.cpp │ └── autowall.h ├── fakewalk │ ├── slowwalk.cpp │ └── slowwalk.h ├── lagcompensation │ ├── animation_system.cpp │ ├── animation_system.h │ ├── local_animations.cpp │ ├── local_animations.h │ ├── resolver.cpp │ └── resolver.h ├── legitbot │ ├── legitbot.cpp │ └── legitbot.h ├── menu.cpp ├── menu.h ├── misc │ ├── airstrafe.cpp │ ├── airstrafe.h │ ├── bunnyhop.cpp │ ├── bunnyhop.h │ ├── fakelag.cpp │ ├── fakelag.h │ ├── key_binds.cpp │ ├── key_binds.h │ ├── logs.cpp │ ├── logs.h │ ├── misc.cpp │ ├── misc.h │ ├── prediction_system.cpp │ ├── prediction_system.h │ ├── spammers.cpp │ └── spammers.h ├── ragebot │ ├── aim.cpp │ ├── aim.h │ ├── aimbot.cpp │ ├── aimbot.h │ ├── antiaim.cpp │ ├── antiaim.h │ ├── knifebot.cpp │ ├── knifebot.h │ ├── zeusbot.cpp │ └── zeusbot.h └── visuals │ ├── GrenadePrediction.cpp │ ├── GrenadePrediction.h │ ├── bullet_tracers.cpp │ ├── bullet_tracers.h │ ├── dormant_esp.cpp │ ├── dormant_esp.h │ ├── nightmode.cpp │ ├── nightmode.h │ ├── other_esp.cpp │ ├── other_esp.h │ ├── player_esp.cpp │ ├── player_esp.h │ ├── radar.h │ ├── world_esp.cpp │ └── world_esp.h ├── configs ├── base64.h ├── configs.cpp └── configs.h ├── constchars.h ├── detours.h ├── detours.lib ├── detours.pdb ├── hooks ├── hooks.cpp ├── hooks.hpp ├── hooks │ ├── hooked_beginframe.cpp │ ├── hooked_createmove.cpp │ ├── hooked_dme.cpp │ ├── hooked_drawfog.cpp │ ├── hooked_events.cpp │ ├── hooked_findmdl.cpp │ ├── hooked_fsn.cpp │ ├── hooked_getmaterial.cpp │ ├── hooked_isconnected.cpp │ ├── hooked_ishltv.cpp │ ├── hooked_listleavesinbox.cpp │ ├── hooked_lockcursor.cpp │ ├── hooked_overrideview.cpp │ ├── hooked_painttraverse.cpp │ ├── hooked_player.cpp │ ├── hooked_postscreeneffects.cpp │ ├── hooked_runcommand.cpp │ ├── hooked_sceneend.cpp │ ├── hooked_senddatagram.cpp │ └── hooked_trace.cpp ├── vfunc_hook.cpp └── vfunc_hook.hpp ├── includes.hpp ├── lua ├── CLuaHook.cpp ├── CLuaHook.h ├── Clua.cpp ├── Clua.h ├── lua │ ├── Lua-5.3.5.vcxproj │ ├── Lua-5.3.5.vcxproj.filters │ ├── Lua-5.3.5.vcxproj.user │ ├── Makefile │ ├── README │ ├── Release │ │ ├── Lua-5.3.5.lib │ │ ├── Lua-5.3.5.log │ │ ├── Lua-5.3.5.pdb │ │ ├── Lua-5.3.5.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Lib-link.read.1.tlog │ │ │ ├── Lib-link.write.1.tlog │ │ │ ├── Lib.command.1.tlog │ │ │ └── Lua-5.3.5.lastbuildstate │ │ ├── Lua-5.3.5.vcxproj.FileListAbsolute.txt │ │ ├── lapi.obj │ │ ├── lauxlib.obj │ │ ├── lbaselib.obj │ │ ├── lbitlib.obj │ │ ├── lcode.obj │ │ ├── lcorolib.obj │ │ ├── lctype.obj │ │ ├── ldblib.obj │ │ ├── ldebug.obj │ │ ├── ldo.obj │ │ ├── ldump.obj │ │ ├── lfunc.obj │ │ ├── lgc.obj │ │ ├── linit.obj │ │ ├── liolib.obj │ │ ├── llex.obj │ │ ├── lmathlib.obj │ │ ├── lmem.obj │ │ ├── loadlib.obj │ │ ├── lobject.obj │ │ ├── lopcodes.obj │ │ ├── loslib.obj │ │ ├── lparser.obj │ │ ├── lstate.obj │ │ ├── lstring.obj │ │ ├── lstrlib.obj │ │ ├── ltable.obj │ │ ├── ltablib.obj │ │ ├── ltm.obj │ │ ├── lua.obj │ │ ├── luac.obj │ │ ├── lundump.obj │ │ ├── lutf8lib.obj │ │ ├── lvm.obj │ │ └── lzio.obj │ ├── doc │ │ ├── contents.html │ │ ├── index.css │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── luac.1 │ │ ├── manual.css │ │ ├── manual.html │ │ ├── osi-certified-72x60.png │ │ └── readme.html │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lbitlib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lprefix.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lutf8lib.c │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ └── lzio.h ├── menu_item.h └── sol.hpp ├── main.cpp ├── nSkinz ├── SkinChanger.cpp ├── SkinChanger.h ├── Utilities │ ├── Platform.cpp │ ├── Platform.hpp │ └── vmt_smart_hook.hpp ├── item_definitions.cpp └── item_definitions.hpp ├── resources ├── custom_sounds.cpp ├── custom_sounds.hpp └── sounds.hpp ├── sdk ├── ItemSchema.h ├── Memory.cpp ├── Memory.h ├── interfaces │ ├── CClientState.hpp │ ├── CInput.hpp │ ├── IAppSystem.hpp │ ├── IBaseClientDll.hpp │ ├── IClientEntity.hpp │ ├── IClientEntityList.hpp │ ├── IClientMode.hpp │ ├── IClientNetworkable.hpp │ ├── IClientRenderable.hpp │ ├── IClientThinkable.hpp │ ├── IClientUnknown.hpp │ ├── ICollideable.hpp │ ├── IConVar.hpp │ ├── ICvar.hpp │ ├── IEngineSound.hpp │ ├── IEngineTrace.hpp │ ├── IGameEventManager.hpp │ ├── IInputSystem.hpp │ ├── ILocalize.hpp │ ├── IMDLCache.hpp │ ├── IMaterialSystem.hpp │ ├── IMoveHelper.hpp │ ├── IPanel.hpp │ ├── IPhysics.hpp │ ├── IPrediction.hpp │ ├── IRenderView.hpp │ ├── ISoundServices.hpp │ ├── ISurface.hpp │ ├── IVDebugOverlay.hpp │ ├── IVEngineClient.hpp │ ├── IVModelInfoClient.hpp │ ├── IVModelRender.hpp │ ├── IViewRenderBeams.hpp │ └── memalloc.h ├── math │ ├── QAngle.hpp │ ├── VMatrix.cpp │ ├── VMatrix.hpp │ ├── Vector.hpp │ ├── Vector2D.cpp │ ├── Vector2D.hpp │ ├── Vector4D.cpp │ └── Vector4D.hpp ├── misc │ ├── BaseHandle.hpp │ ├── BeamInfo_t.hpp │ ├── CBoneAccessor.hpp │ ├── CUserCmd.hpp │ ├── C_CSPlayerResource.h │ ├── ClientClass.hpp │ ├── Color.cpp │ ├── Color.hpp │ ├── Convar.cpp │ ├── Convar.hpp │ ├── EHandle.hpp │ ├── Enums.hpp │ ├── FnvHash.hpp │ ├── GlobalVars.hpp │ ├── IHandleEntity.hpp │ ├── KeyValues.hpp │ ├── Recv.hpp │ ├── Studio.hpp │ ├── UtlBuffer.cpp │ ├── UtlBuffer.hpp │ ├── UtlMemory.hpp │ ├── UtlString.cpp │ ├── UtlString.hpp │ ├── UtlVector.hpp │ ├── UtlVectorSimple.hpp │ ├── bf_write.h │ ├── characterset.cpp │ ├── characterset.hpp │ ├── checksum_crc.cpp │ ├── checksum_crc.hpp │ ├── checksum_md5.cpp │ ├── checksum_md5.hpp │ ├── datamap.h │ ├── glow_outline_effect.hpp │ ├── platform.hpp │ ├── threadtools.cpp │ ├── threadtools.h │ └── vfunc.hpp ├── structs.cpp └── structs.hpp ├── utils ├── anti_debug.h ├── crypt_str.h ├── csgo.cpp ├── csgo.hpp ├── ctx.cpp ├── ctx.hpp ├── draw_manager.cpp ├── draw_manager.h ├── imports.h ├── json.hpp ├── m128.h ├── math.cpp ├── math.hpp ├── md5.cpp ├── md5.h ├── netmanager.cpp ├── netmanager.hpp ├── protect.h ├── recv.cpp ├── recv.h ├── sha-256.cpp ├── sha-256.h ├── singleton.h ├── twofish.cpp ├── twofish.h ├── util.cpp └── util.hpp └── version.h /Bytesa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/Bytesa.h -------------------------------------------------------------------------------- /ImGui/code_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/code_editor.cpp -------------------------------------------------------------------------------- /ImGui/code_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/code_editor.h -------------------------------------------------------------------------------- /ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imconfig.h -------------------------------------------------------------------------------- /ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imgui.cpp -------------------------------------------------------------------------------- /ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imgui.h -------------------------------------------------------------------------------- /ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /ImGui/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imgui_freetype.cpp -------------------------------------------------------------------------------- /ImGui/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imgui_freetype.h -------------------------------------------------------------------------------- /ImGui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /ImGui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /ImGui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /ImGui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imgui_impl_win32.h -------------------------------------------------------------------------------- /ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /ImGui/include/freetype/config/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/config/ftconfig.h -------------------------------------------------------------------------------- /ImGui/include/freetype/config/ftheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/config/ftheader.h -------------------------------------------------------------------------------- /ImGui/include/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/config/ftmodule.h -------------------------------------------------------------------------------- /ImGui/include/freetype/config/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/config/ftoption.h -------------------------------------------------------------------------------- /ImGui/include/freetype/config/ftstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/config/ftstdlib.h -------------------------------------------------------------------------------- /ImGui/include/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/freetype.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftadvanc.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftbbox.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftbitmap.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftbzip2.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftcache.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftchapters.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftcid.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftcolor.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftdriver.h -------------------------------------------------------------------------------- /ImGui/include/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/fterrdef.h -------------------------------------------------------------------------------- /ImGui/include/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/fterrors.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftfntfmt.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftgasp.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftglyph.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftgxval.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftgzip.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftimage.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftincrem.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftlist.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftmac.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftmm.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftmodapi.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftmoderr.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftotval.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftoutln.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftparams.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftrender.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftsizes.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftsnames.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftstroke.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftsynth.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftsystem.h -------------------------------------------------------------------------------- /ImGui/include/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/fttrigon.h -------------------------------------------------------------------------------- /ImGui/include/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/fttypes.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /ImGui/include/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/t1tables.h -------------------------------------------------------------------------------- /ImGui/include/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/ttnameid.h -------------------------------------------------------------------------------- /ImGui/include/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/tttables.h -------------------------------------------------------------------------------- /ImGui/include/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/freetype/tttags.h -------------------------------------------------------------------------------- /ImGui/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/include/ft2build.h -------------------------------------------------------------------------------- /ImGui/pack.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/pack.rar -------------------------------------------------------------------------------- /ImGui/win32/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGui/win32/freetype.lib -------------------------------------------------------------------------------- /ImGuiConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/ImGuiConnect.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/LICENSE -------------------------------------------------------------------------------- /Legendware.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/Legendware.sln -------------------------------------------------------------------------------- /Legendware.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/Legendware.vcxproj -------------------------------------------------------------------------------- /Legendware.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/Legendware.vcxproj.filters -------------------------------------------------------------------------------- /Legendware.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/Legendware.vcxproj.user -------------------------------------------------------------------------------- /Lua-5.3.5.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/Lua-5.3.5.pdb -------------------------------------------------------------------------------- /Lua.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/Lua.lib -------------------------------------------------------------------------------- /cheats/autowall/autowall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/autowall/autowall.cpp -------------------------------------------------------------------------------- /cheats/autowall/autowall.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cheats/fakewalk/slowwalk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/fakewalk/slowwalk.cpp -------------------------------------------------------------------------------- /cheats/fakewalk/slowwalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/fakewalk/slowwalk.h -------------------------------------------------------------------------------- /cheats/lagcompensation/animation_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/lagcompensation/animation_system.cpp -------------------------------------------------------------------------------- /cheats/lagcompensation/animation_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/lagcompensation/animation_system.h -------------------------------------------------------------------------------- /cheats/lagcompensation/local_animations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/lagcompensation/local_animations.cpp -------------------------------------------------------------------------------- /cheats/lagcompensation/local_animations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/lagcompensation/local_animations.h -------------------------------------------------------------------------------- /cheats/lagcompensation/resolver.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cheats/lagcompensation/resolver.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cheats/legitbot/legitbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/legitbot/legitbot.cpp -------------------------------------------------------------------------------- /cheats/legitbot/legitbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/legitbot/legitbot.h -------------------------------------------------------------------------------- /cheats/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/menu.cpp -------------------------------------------------------------------------------- /cheats/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/menu.h -------------------------------------------------------------------------------- /cheats/misc/airstrafe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/airstrafe.cpp -------------------------------------------------------------------------------- /cheats/misc/airstrafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/airstrafe.h -------------------------------------------------------------------------------- /cheats/misc/bunnyhop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/bunnyhop.cpp -------------------------------------------------------------------------------- /cheats/misc/bunnyhop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/bunnyhop.h -------------------------------------------------------------------------------- /cheats/misc/fakelag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/fakelag.cpp -------------------------------------------------------------------------------- /cheats/misc/fakelag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/fakelag.h -------------------------------------------------------------------------------- /cheats/misc/key_binds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/key_binds.cpp -------------------------------------------------------------------------------- /cheats/misc/key_binds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/key_binds.h -------------------------------------------------------------------------------- /cheats/misc/logs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/logs.cpp -------------------------------------------------------------------------------- /cheats/misc/logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/logs.h -------------------------------------------------------------------------------- /cheats/misc/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/misc.cpp -------------------------------------------------------------------------------- /cheats/misc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/misc.h -------------------------------------------------------------------------------- /cheats/misc/prediction_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/prediction_system.cpp -------------------------------------------------------------------------------- /cheats/misc/prediction_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/prediction_system.h -------------------------------------------------------------------------------- /cheats/misc/spammers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/spammers.cpp -------------------------------------------------------------------------------- /cheats/misc/spammers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/misc/spammers.h -------------------------------------------------------------------------------- /cheats/ragebot/aim.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cheats/ragebot/aim.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cheats/ragebot/aimbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/ragebot/aimbot.cpp -------------------------------------------------------------------------------- /cheats/ragebot/aimbot.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cheats/ragebot/antiaim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/ragebot/antiaim.cpp -------------------------------------------------------------------------------- /cheats/ragebot/antiaim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/ragebot/antiaim.h -------------------------------------------------------------------------------- /cheats/ragebot/knifebot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/ragebot/knifebot.cpp -------------------------------------------------------------------------------- /cheats/ragebot/knifebot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/ragebot/knifebot.h -------------------------------------------------------------------------------- /cheats/ragebot/zeusbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/ragebot/zeusbot.cpp -------------------------------------------------------------------------------- /cheats/ragebot/zeusbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/ragebot/zeusbot.h -------------------------------------------------------------------------------- /cheats/visuals/GrenadePrediction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/GrenadePrediction.cpp -------------------------------------------------------------------------------- /cheats/visuals/GrenadePrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/GrenadePrediction.h -------------------------------------------------------------------------------- /cheats/visuals/bullet_tracers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/bullet_tracers.cpp -------------------------------------------------------------------------------- /cheats/visuals/bullet_tracers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/bullet_tracers.h -------------------------------------------------------------------------------- /cheats/visuals/dormant_esp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/dormant_esp.cpp -------------------------------------------------------------------------------- /cheats/visuals/dormant_esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/dormant_esp.h -------------------------------------------------------------------------------- /cheats/visuals/nightmode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/nightmode.cpp -------------------------------------------------------------------------------- /cheats/visuals/nightmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/nightmode.h -------------------------------------------------------------------------------- /cheats/visuals/other_esp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/other_esp.cpp -------------------------------------------------------------------------------- /cheats/visuals/other_esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/other_esp.h -------------------------------------------------------------------------------- /cheats/visuals/player_esp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/player_esp.cpp -------------------------------------------------------------------------------- /cheats/visuals/player_esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/player_esp.h -------------------------------------------------------------------------------- /cheats/visuals/radar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/radar.h -------------------------------------------------------------------------------- /cheats/visuals/world_esp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/world_esp.cpp -------------------------------------------------------------------------------- /cheats/visuals/world_esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/cheats/visuals/world_esp.h -------------------------------------------------------------------------------- /configs/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/configs/base64.h -------------------------------------------------------------------------------- /configs/configs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/configs/configs.cpp -------------------------------------------------------------------------------- /configs/configs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/configs/configs.h -------------------------------------------------------------------------------- /constchars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/constchars.h -------------------------------------------------------------------------------- /detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/detours.h -------------------------------------------------------------------------------- /detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/detours.lib -------------------------------------------------------------------------------- /detours.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/detours.pdb -------------------------------------------------------------------------------- /hooks/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks.cpp -------------------------------------------------------------------------------- /hooks/hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks.hpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_beginframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_beginframe.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_createmove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_createmove.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_dme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_dme.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_drawfog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_drawfog.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_events.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_findmdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_findmdl.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_fsn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_fsn.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_getmaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_getmaterial.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_isconnected.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_isconnected.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_ishltv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_ishltv.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_listleavesinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_listleavesinbox.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_lockcursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_lockcursor.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_overrideview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_overrideview.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_painttraverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_painttraverse.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_player.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_postscreeneffects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_postscreeneffects.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_runcommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_runcommand.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_sceneend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_sceneend.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_senddatagram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_senddatagram.cpp -------------------------------------------------------------------------------- /hooks/hooks/hooked_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/hooks/hooked_trace.cpp -------------------------------------------------------------------------------- /hooks/vfunc_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/vfunc_hook.cpp -------------------------------------------------------------------------------- /hooks/vfunc_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/hooks/vfunc_hook.hpp -------------------------------------------------------------------------------- /includes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/includes.hpp -------------------------------------------------------------------------------- /lua/CLuaHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/CLuaHook.cpp -------------------------------------------------------------------------------- /lua/CLuaHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/CLuaHook.h -------------------------------------------------------------------------------- /lua/Clua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/Clua.cpp -------------------------------------------------------------------------------- /lua/Clua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/Clua.h -------------------------------------------------------------------------------- /lua/lua/Lua-5.3.5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Lua-5.3.5.vcxproj -------------------------------------------------------------------------------- /lua/lua/Lua-5.3.5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Lua-5.3.5.vcxproj.filters -------------------------------------------------------------------------------- /lua/lua/Lua-5.3.5.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Lua-5.3.5.vcxproj.user -------------------------------------------------------------------------------- /lua/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Makefile -------------------------------------------------------------------------------- /lua/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/README -------------------------------------------------------------------------------- /lua/lua/Release/Lua-5.3.5.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/Lua-5.3.5.lib -------------------------------------------------------------------------------- /lua/lua/Release/Lua-5.3.5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/Lua-5.3.5.log -------------------------------------------------------------------------------- /lua/lua/Release/Lua-5.3.5.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/Lua-5.3.5.pdb -------------------------------------------------------------------------------- /lua/lua/Release/Lua-5.3.5.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/Lua-5.3.5.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /lua/lua/Release/Lua-5.3.5.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/Lua-5.3.5.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /lua/lua/Release/Lua-5.3.5.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/Lua-5.3.5.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /lua/lua/Release/Lua-5.3.5.tlog/Lib-link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/Lua-5.3.5.tlog/Lib-link.read.1.tlog -------------------------------------------------------------------------------- /lua/lua/Release/Lua-5.3.5.tlog/Lib-link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/Lua-5.3.5.tlog/Lib-link.write.1.tlog -------------------------------------------------------------------------------- /lua/lua/Release/Lua-5.3.5.tlog/Lib.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/Lua-5.3.5.tlog/Lib.command.1.tlog -------------------------------------------------------------------------------- /lua/lua/Release/Lua-5.3.5.tlog/Lua-5.3.5.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/Lua-5.3.5.tlog/Lua-5.3.5.lastbuildstate -------------------------------------------------------------------------------- /lua/lua/Release/Lua-5.3.5.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/Lua-5.3.5.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /lua/lua/Release/lapi.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lapi.obj -------------------------------------------------------------------------------- /lua/lua/Release/lauxlib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lauxlib.obj -------------------------------------------------------------------------------- /lua/lua/Release/lbaselib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lbaselib.obj -------------------------------------------------------------------------------- /lua/lua/Release/lbitlib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lbitlib.obj -------------------------------------------------------------------------------- /lua/lua/Release/lcode.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lcode.obj -------------------------------------------------------------------------------- /lua/lua/Release/lcorolib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lcorolib.obj -------------------------------------------------------------------------------- /lua/lua/Release/lctype.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lctype.obj -------------------------------------------------------------------------------- /lua/lua/Release/ldblib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/ldblib.obj -------------------------------------------------------------------------------- /lua/lua/Release/ldebug.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/ldebug.obj -------------------------------------------------------------------------------- /lua/lua/Release/ldo.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/ldo.obj -------------------------------------------------------------------------------- /lua/lua/Release/ldump.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/ldump.obj -------------------------------------------------------------------------------- /lua/lua/Release/lfunc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lfunc.obj -------------------------------------------------------------------------------- /lua/lua/Release/lgc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lgc.obj -------------------------------------------------------------------------------- /lua/lua/Release/linit.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/linit.obj -------------------------------------------------------------------------------- /lua/lua/Release/liolib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/liolib.obj -------------------------------------------------------------------------------- /lua/lua/Release/llex.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/llex.obj -------------------------------------------------------------------------------- /lua/lua/Release/lmathlib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lmathlib.obj -------------------------------------------------------------------------------- /lua/lua/Release/lmem.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lmem.obj -------------------------------------------------------------------------------- /lua/lua/Release/loadlib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/loadlib.obj -------------------------------------------------------------------------------- /lua/lua/Release/lobject.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lobject.obj -------------------------------------------------------------------------------- /lua/lua/Release/lopcodes.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lopcodes.obj -------------------------------------------------------------------------------- /lua/lua/Release/loslib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/loslib.obj -------------------------------------------------------------------------------- /lua/lua/Release/lparser.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lparser.obj -------------------------------------------------------------------------------- /lua/lua/Release/lstate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lstate.obj -------------------------------------------------------------------------------- /lua/lua/Release/lstring.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lstring.obj -------------------------------------------------------------------------------- /lua/lua/Release/lstrlib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lstrlib.obj -------------------------------------------------------------------------------- /lua/lua/Release/ltable.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/ltable.obj -------------------------------------------------------------------------------- /lua/lua/Release/ltablib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/ltablib.obj -------------------------------------------------------------------------------- /lua/lua/Release/ltm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/ltm.obj -------------------------------------------------------------------------------- /lua/lua/Release/lua.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lua.obj -------------------------------------------------------------------------------- /lua/lua/Release/luac.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/luac.obj -------------------------------------------------------------------------------- /lua/lua/Release/lundump.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lundump.obj -------------------------------------------------------------------------------- /lua/lua/Release/lutf8lib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lutf8lib.obj -------------------------------------------------------------------------------- /lua/lua/Release/lvm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lvm.obj -------------------------------------------------------------------------------- /lua/lua/Release/lzio.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/Release/lzio.obj -------------------------------------------------------------------------------- /lua/lua/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/doc/contents.html -------------------------------------------------------------------------------- /lua/lua/doc/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/doc/index.css -------------------------------------------------------------------------------- /lua/lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/doc/logo.gif -------------------------------------------------------------------------------- /lua/lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/doc/lua.1 -------------------------------------------------------------------------------- /lua/lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/doc/lua.css -------------------------------------------------------------------------------- /lua/lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/doc/luac.1 -------------------------------------------------------------------------------- /lua/lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/doc/manual.css -------------------------------------------------------------------------------- /lua/lua/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/doc/manual.html -------------------------------------------------------------------------------- /lua/lua/doc/osi-certified-72x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/doc/osi-certified-72x60.png -------------------------------------------------------------------------------- /lua/lua/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/doc/readme.html -------------------------------------------------------------------------------- /lua/lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/Makefile -------------------------------------------------------------------------------- /lua/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lapi.c -------------------------------------------------------------------------------- /lua/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lapi.h -------------------------------------------------------------------------------- /lua/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lauxlib.c -------------------------------------------------------------------------------- /lua/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lauxlib.h -------------------------------------------------------------------------------- /lua/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lbaselib.c -------------------------------------------------------------------------------- /lua/lua/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lbitlib.c -------------------------------------------------------------------------------- /lua/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lcode.c -------------------------------------------------------------------------------- /lua/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lcode.h -------------------------------------------------------------------------------- /lua/lua/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lcorolib.c -------------------------------------------------------------------------------- /lua/lua/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lctype.c -------------------------------------------------------------------------------- /lua/lua/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lctype.h -------------------------------------------------------------------------------- /lua/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/ldblib.c -------------------------------------------------------------------------------- /lua/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/ldebug.c -------------------------------------------------------------------------------- /lua/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/ldebug.h -------------------------------------------------------------------------------- /lua/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/ldo.c -------------------------------------------------------------------------------- /lua/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/ldo.h -------------------------------------------------------------------------------- /lua/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/ldump.c -------------------------------------------------------------------------------- /lua/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lfunc.c -------------------------------------------------------------------------------- /lua/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lfunc.h -------------------------------------------------------------------------------- /lua/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lgc.c -------------------------------------------------------------------------------- /lua/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lgc.h -------------------------------------------------------------------------------- /lua/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/linit.c -------------------------------------------------------------------------------- /lua/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/liolib.c -------------------------------------------------------------------------------- /lua/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/llex.c -------------------------------------------------------------------------------- /lua/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/llex.h -------------------------------------------------------------------------------- /lua/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/llimits.h -------------------------------------------------------------------------------- /lua/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lmathlib.c -------------------------------------------------------------------------------- /lua/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lmem.c -------------------------------------------------------------------------------- /lua/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lmem.h -------------------------------------------------------------------------------- /lua/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/loadlib.c -------------------------------------------------------------------------------- /lua/lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lobject.c -------------------------------------------------------------------------------- /lua/lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lobject.h -------------------------------------------------------------------------------- /lua/lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lopcodes.c -------------------------------------------------------------------------------- /lua/lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lopcodes.h -------------------------------------------------------------------------------- /lua/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/loslib.c -------------------------------------------------------------------------------- /lua/lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lparser.c -------------------------------------------------------------------------------- /lua/lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lparser.h -------------------------------------------------------------------------------- /lua/lua/src/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lprefix.h -------------------------------------------------------------------------------- /lua/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lstate.c -------------------------------------------------------------------------------- /lua/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lstate.h -------------------------------------------------------------------------------- /lua/lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lstring.c -------------------------------------------------------------------------------- /lua/lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lstring.h -------------------------------------------------------------------------------- /lua/lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lstrlib.c -------------------------------------------------------------------------------- /lua/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/ltable.c -------------------------------------------------------------------------------- /lua/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/ltable.h -------------------------------------------------------------------------------- /lua/lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/ltablib.c -------------------------------------------------------------------------------- /lua/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/ltm.c -------------------------------------------------------------------------------- /lua/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/ltm.h -------------------------------------------------------------------------------- /lua/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lua.c -------------------------------------------------------------------------------- /lua/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lua.h -------------------------------------------------------------------------------- /lua/lua/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lua.hpp -------------------------------------------------------------------------------- /lua/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/luac.c -------------------------------------------------------------------------------- /lua/lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/luaconf.h -------------------------------------------------------------------------------- /lua/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lualib.h -------------------------------------------------------------------------------- /lua/lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lundump.c -------------------------------------------------------------------------------- /lua/lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lundump.h -------------------------------------------------------------------------------- /lua/lua/src/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lutf8lib.c -------------------------------------------------------------------------------- /lua/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lvm.c -------------------------------------------------------------------------------- /lua/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lvm.h -------------------------------------------------------------------------------- /lua/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lzio.c -------------------------------------------------------------------------------- /lua/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/lua/src/lzio.h -------------------------------------------------------------------------------- /lua/menu_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/menu_item.h -------------------------------------------------------------------------------- /lua/sol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/lua/sol.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/main.cpp -------------------------------------------------------------------------------- /nSkinz/SkinChanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/nSkinz/SkinChanger.cpp -------------------------------------------------------------------------------- /nSkinz/SkinChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/nSkinz/SkinChanger.h -------------------------------------------------------------------------------- /nSkinz/Utilities/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/nSkinz/Utilities/Platform.cpp -------------------------------------------------------------------------------- /nSkinz/Utilities/Platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/nSkinz/Utilities/Platform.hpp -------------------------------------------------------------------------------- /nSkinz/Utilities/vmt_smart_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/nSkinz/Utilities/vmt_smart_hook.hpp -------------------------------------------------------------------------------- /nSkinz/item_definitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/nSkinz/item_definitions.cpp -------------------------------------------------------------------------------- /nSkinz/item_definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/nSkinz/item_definitions.hpp -------------------------------------------------------------------------------- /resources/custom_sounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/resources/custom_sounds.cpp -------------------------------------------------------------------------------- /resources/custom_sounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/resources/custom_sounds.hpp -------------------------------------------------------------------------------- /resources/sounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/resources/sounds.hpp -------------------------------------------------------------------------------- /sdk/ItemSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/ItemSchema.h -------------------------------------------------------------------------------- /sdk/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/Memory.cpp -------------------------------------------------------------------------------- /sdk/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/Memory.h -------------------------------------------------------------------------------- /sdk/interfaces/CClientState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/CClientState.hpp -------------------------------------------------------------------------------- /sdk/interfaces/CInput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/CInput.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IAppSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IAppSystem.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IBaseClientDll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IBaseClientDll.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IClientEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IClientEntity.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IClientEntityList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IClientEntityList.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IClientMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IClientMode.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IClientNetworkable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IClientNetworkable.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IClientRenderable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IClientRenderable.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IClientThinkable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IClientThinkable.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IClientUnknown.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IClientUnknown.hpp -------------------------------------------------------------------------------- /sdk/interfaces/ICollideable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/ICollideable.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IConVar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IConVar.hpp -------------------------------------------------------------------------------- /sdk/interfaces/ICvar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/ICvar.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IEngineSound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IEngineSound.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IEngineTrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IEngineTrace.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IGameEventManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IGameEventManager.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IInputSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IInputSystem.hpp -------------------------------------------------------------------------------- /sdk/interfaces/ILocalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/ILocalize.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IMDLCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IMDLCache.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IMaterialSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IMaterialSystem.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IMoveHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IMoveHelper.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IPanel.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IPhysics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IPhysics.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IPrediction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IPrediction.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IRenderView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IRenderView.hpp -------------------------------------------------------------------------------- /sdk/interfaces/ISoundServices.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/ISoundServices.hpp -------------------------------------------------------------------------------- /sdk/interfaces/ISurface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/ISurface.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IVDebugOverlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IVDebugOverlay.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IVEngineClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IVEngineClient.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IVModelInfoClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IVModelInfoClient.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IVModelRender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IVModelRender.hpp -------------------------------------------------------------------------------- /sdk/interfaces/IViewRenderBeams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/IViewRenderBeams.hpp -------------------------------------------------------------------------------- /sdk/interfaces/memalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/interfaces/memalloc.h -------------------------------------------------------------------------------- /sdk/math/QAngle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/math/QAngle.hpp -------------------------------------------------------------------------------- /sdk/math/VMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/math/VMatrix.cpp -------------------------------------------------------------------------------- /sdk/math/VMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/math/VMatrix.hpp -------------------------------------------------------------------------------- /sdk/math/Vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/math/Vector.hpp -------------------------------------------------------------------------------- /sdk/math/Vector2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/math/Vector2D.cpp -------------------------------------------------------------------------------- /sdk/math/Vector2D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/math/Vector2D.hpp -------------------------------------------------------------------------------- /sdk/math/Vector4D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/math/Vector4D.cpp -------------------------------------------------------------------------------- /sdk/math/Vector4D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/math/Vector4D.hpp -------------------------------------------------------------------------------- /sdk/misc/BaseHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/BaseHandle.hpp -------------------------------------------------------------------------------- /sdk/misc/BeamInfo_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/BeamInfo_t.hpp -------------------------------------------------------------------------------- /sdk/misc/CBoneAccessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/CBoneAccessor.hpp -------------------------------------------------------------------------------- /sdk/misc/CUserCmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/CUserCmd.hpp -------------------------------------------------------------------------------- /sdk/misc/C_CSPlayerResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/C_CSPlayerResource.h -------------------------------------------------------------------------------- /sdk/misc/ClientClass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/ClientClass.hpp -------------------------------------------------------------------------------- /sdk/misc/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/Color.cpp -------------------------------------------------------------------------------- /sdk/misc/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/Color.hpp -------------------------------------------------------------------------------- /sdk/misc/Convar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/Convar.cpp -------------------------------------------------------------------------------- /sdk/misc/Convar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/Convar.hpp -------------------------------------------------------------------------------- /sdk/misc/EHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/EHandle.hpp -------------------------------------------------------------------------------- /sdk/misc/Enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/Enums.hpp -------------------------------------------------------------------------------- /sdk/misc/FnvHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/FnvHash.hpp -------------------------------------------------------------------------------- /sdk/misc/GlobalVars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/GlobalVars.hpp -------------------------------------------------------------------------------- /sdk/misc/IHandleEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/IHandleEntity.hpp -------------------------------------------------------------------------------- /sdk/misc/KeyValues.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/KeyValues.hpp -------------------------------------------------------------------------------- /sdk/misc/Recv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/Recv.hpp -------------------------------------------------------------------------------- /sdk/misc/Studio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/Studio.hpp -------------------------------------------------------------------------------- /sdk/misc/UtlBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/UtlBuffer.cpp -------------------------------------------------------------------------------- /sdk/misc/UtlBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/UtlBuffer.hpp -------------------------------------------------------------------------------- /sdk/misc/UtlMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/UtlMemory.hpp -------------------------------------------------------------------------------- /sdk/misc/UtlString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/UtlString.cpp -------------------------------------------------------------------------------- /sdk/misc/UtlString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/UtlString.hpp -------------------------------------------------------------------------------- /sdk/misc/UtlVector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/UtlVector.hpp -------------------------------------------------------------------------------- /sdk/misc/UtlVectorSimple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/UtlVectorSimple.hpp -------------------------------------------------------------------------------- /sdk/misc/bf_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/bf_write.h -------------------------------------------------------------------------------- /sdk/misc/characterset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/characterset.cpp -------------------------------------------------------------------------------- /sdk/misc/characterset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/characterset.hpp -------------------------------------------------------------------------------- /sdk/misc/checksum_crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/checksum_crc.cpp -------------------------------------------------------------------------------- /sdk/misc/checksum_crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/checksum_crc.hpp -------------------------------------------------------------------------------- /sdk/misc/checksum_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/checksum_md5.cpp -------------------------------------------------------------------------------- /sdk/misc/checksum_md5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/checksum_md5.hpp -------------------------------------------------------------------------------- /sdk/misc/datamap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/datamap.h -------------------------------------------------------------------------------- /sdk/misc/glow_outline_effect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/glow_outline_effect.hpp -------------------------------------------------------------------------------- /sdk/misc/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/platform.hpp -------------------------------------------------------------------------------- /sdk/misc/threadtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/threadtools.cpp -------------------------------------------------------------------------------- /sdk/misc/threadtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/threadtools.h -------------------------------------------------------------------------------- /sdk/misc/vfunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/misc/vfunc.hpp -------------------------------------------------------------------------------- /sdk/structs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/structs.cpp -------------------------------------------------------------------------------- /sdk/structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/sdk/structs.hpp -------------------------------------------------------------------------------- /utils/anti_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/anti_debug.h -------------------------------------------------------------------------------- /utils/crypt_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/crypt_str.h -------------------------------------------------------------------------------- /utils/csgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/csgo.cpp -------------------------------------------------------------------------------- /utils/csgo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/csgo.hpp -------------------------------------------------------------------------------- /utils/ctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/ctx.cpp -------------------------------------------------------------------------------- /utils/ctx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/ctx.hpp -------------------------------------------------------------------------------- /utils/draw_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/draw_manager.cpp -------------------------------------------------------------------------------- /utils/draw_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/draw_manager.h -------------------------------------------------------------------------------- /utils/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/imports.h -------------------------------------------------------------------------------- /utils/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/json.hpp -------------------------------------------------------------------------------- /utils/m128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/m128.h -------------------------------------------------------------------------------- /utils/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/math.cpp -------------------------------------------------------------------------------- /utils/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/math.hpp -------------------------------------------------------------------------------- /utils/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/md5.cpp -------------------------------------------------------------------------------- /utils/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/md5.h -------------------------------------------------------------------------------- /utils/netmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/netmanager.cpp -------------------------------------------------------------------------------- /utils/netmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/netmanager.hpp -------------------------------------------------------------------------------- /utils/protect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/protect.h -------------------------------------------------------------------------------- /utils/recv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/recv.cpp -------------------------------------------------------------------------------- /utils/recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/recv.h -------------------------------------------------------------------------------- /utils/sha-256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/sha-256.cpp -------------------------------------------------------------------------------- /utils/sha-256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/sha-256.h -------------------------------------------------------------------------------- /utils/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/singleton.h -------------------------------------------------------------------------------- /utils/twofish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/twofish.cpp -------------------------------------------------------------------------------- /utils/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/twofish.h -------------------------------------------------------------------------------- /utils/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/util.cpp -------------------------------------------------------------------------------- /utils/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/utils/util.hpp -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSGOLeaks/Legendware-V3/HEAD/version.h --------------------------------------------------------------------------------