├── .gitattributes ├── .gitignore ├── Baimless.club ├── Arial.hpp ├── AutoAccept.cpp ├── AutoAccept.h ├── B2 Icon.h ├── BAR Icon.h ├── CFixMove.cpp ├── CFixMove.h ├── CommonIncludes.h ├── Config.cpp ├── Config.h ├── Controls.cpp ├── Controls.h ├── DLLMain.cpp ├── Definitions.cpp ├── Definitions.h ├── EnginePrediction.h ├── Entities.cpp ├── Entities.h ├── Features │ ├── Aimbot │ │ ├── Aimbot.cpp │ │ ├── Aimbot.h │ │ ├── Autowall.cpp │ │ ├── Autowall.h │ │ ├── EnginePrediction.h │ │ ├── LagComp.cpp │ │ └── LagComp.h │ ├── AntiAim │ │ ├── AntiAim.cpp │ │ └── AntiAim.h │ ├── Features.h │ ├── Legit │ │ ├── Legitbot.cpp │ │ └── Legitbot.h │ ├── Misc │ │ ├── Misc.cpp │ │ └── Misc.h │ ├── Resolver │ │ ├── Resolver.cpp │ │ └── Resolver.h │ ├── Visuals │ │ ├── ESP.cpp │ │ └── ESP.h │ ├── bulletbeams │ │ ├── BeamInfo.hpp │ │ ├── bullettracers.cpp │ │ └── bullettracers.h │ ├── otheresp │ │ ├── otheresp.cpp │ │ └── otheresp.h │ ├── rankchanger │ │ ├── IMemAlloc.h │ │ ├── ProtobuffMessages.h │ │ ├── Protobuffs.cpp │ │ ├── Protobuffs.h │ │ ├── Protobuffs │ │ │ ├── ProtoField.h │ │ │ ├── ProtoWriter.h │ │ │ ├── ProtobuffMessages.h │ │ │ ├── inventory_changer.h │ │ │ └── profile_info_changer.h │ │ ├── rankchanger.h │ │ └── steam.h │ └── singleston.h ├── Font.hpp ├── Fonts.h ├── GUI.cpp ├── GUI.h ├── GrenadeHelperAPI.cpp ├── GrenadeHelperAPI.h ├── Hooks.cpp ├── Hooks.h ├── Input.cpp ├── Input.h ├── Lucida.hpp ├── Menu.cpp ├── Menu.h ├── MinHook.h ├── Movement.h ├── NetworkStringTable.h ├── Newskinchanger.cpp ├── Newskinchanger.h ├── Nightmode.cpp ├── Nightmode.h ├── OBS ESP.cpp ├── OBS ESP.h ├── Options.cpp ├── Options.hpp ├── Playerlist.h ├── Proxies.h ├── Radar.cpp ├── Radar.h ├── Render.cpp ├── Render.h ├── Render2.cpp ├── Render2.h ├── SDK │ ├── AppSystem.h │ ├── CEntity.cpp │ ├── CEntity.h │ ├── CGlobalVarsBase.h │ ├── CHandle.h │ ├── CInput.h │ ├── CModelRender.h │ ├── CPrediction.h │ ├── ClientClass.h │ ├── Definitions.h │ ├── Hitboxes.h │ ├── IAppSystem.h │ ├── IBaseClientDll.h │ ├── IClientEntity.h │ ├── IClientEntityList.h │ ├── IClientMode.h │ ├── IClientNetworkable.h │ ├── IClientRenderable.h │ ├── IClientThinkable.h │ ├── IClientUnknown.h │ ├── ICvar.h │ ├── IEngineSound.h │ ├── IEngineTrace.h │ ├── IGameEvent.h │ ├── ILocalize.h │ ├── IMDLCache.h │ ├── IMaterial.h │ ├── ISurface.h │ ├── ISurfaceData.h │ ├── IVEngineClient.h │ ├── IVModelInfo.h │ ├── IVModelInfoClient.h │ ├── IVRenderBeam.h │ ├── IVRenderView.h │ ├── IViewRender.h │ ├── InputSystem.h │ ├── KeyValues.h │ ├── PlayerInfo.h │ ├── Recv.h │ ├── UtlVector.h │ ├── VMatrix.h │ ├── Vector.h │ ├── bspflags.h │ └── checksum_crc.hpp ├── Singleton.h ├── Tabs │ ├── tab_Aimbot.cpp │ ├── tab_AntiAim.cpp │ ├── tab_Gloves.cpp │ ├── tab_Knifes.cpp │ ├── tab_Legitbot.cpp │ ├── tab_Login.cpp │ ├── tab_Main.cpp │ ├── tab_Misc.cpp │ ├── tab_Players.cpp │ ├── tab_Ragebot.cpp │ ├── tab_Skin_Changer.cpp │ ├── tab_Skins.cpp │ ├── tab_Visuals.cpp │ └── tab_Weapons.cpp ├── Utils │ ├── Color.h │ ├── GlobalVars.cpp │ ├── GlobalVars.h │ ├── Interfaces.cpp │ ├── Interfaces.h │ ├── Math.cpp │ ├── Math.h │ ├── NetvarManager.cpp │ ├── NetvarManager.h │ ├── SPoint.h │ ├── SRect.h │ ├── Utils.h │ └── XorStr.h ├── Weapons.hpp ├── Window.cpp ├── XorStr.hpp ├── astrium.cpp ├── buffer.c ├── buffer.h ├── detourhooks.h ├── dirent.h ├── fnv.h ├── fnv_hash.hpp ├── fonts │ ├── Seta.hpp │ ├── cousine.hpp │ ├── droid.hpp │ └── fonts.hpp ├── glow.h ├── grenadetracer.cpp ├── grenadetracer.h ├── hde32.c ├── hde32.h ├── hitscan.h ├── hook.c ├── hookknife.cpp ├── hookknife.h ├── http.cpp ├── http.h ├── imgui │ ├── LICENSE.txt │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_widgets.cpp │ ├── impl │ │ ├── imgui_impl_dx9.cpp │ │ ├── imgui_impl_dx9.h │ │ ├── imgui_impl_win32.cpp │ │ └── imgui_impl_win32.h │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── json.h ├── kit_parser.cpp ├── kit_parser.h ├── md5_hash.cpp ├── md5_hash.h ├── newMenu.cpp ├── newMenu.h ├── nlohmann │ └── json.hpp ├── notifies.cpp ├── notifies.h ├── pstdint.h ├── rapidjson │ ├── allocators.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error │ │ ├── en.h │ │ └── error.h │ ├── filereadstream.h │ ├── filewritestream.h │ ├── fwd.h │ ├── internal │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ ├── istreamwrapper.h │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ ├── ostreamwrapper.h │ ├── pointer.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── schema.h │ ├── stream.h │ ├── stringbuffer.h │ └── writer.h ├── skinchanger.cpp ├── skinchanger.h ├── table32.h ├── tinyxml2.cpp ├── tinyxml2.h ├── trampoline.c ├── trampoline.h ├── ui.cpp ├── ui.h ├── uselesshitbytes.h ├── vector2d.h ├── vector3d.cpp ├── vector3d.h ├── vfunct │ ├── vfuncthook.cpp │ └── vfuncthook.h ├── watermark.cpp └── watermark.h ├── Baimless.xyz.sln ├── Baimless.xyz.vcxproj ├── Baimless.xyz.vcxproj.filters ├── DLL ├── Baimless.xyz.dll ├── Baimless.xyz.map ├── Baimless.xyz.vmp.dll ├── Encryptor.exe ├── Fonts │ ├── Arial.ttf │ ├── Verdana.ttf │ ├── astriumwep.ttf │ ├── badcache.ttf │ └── menu_font.ttf ├── Injector.exe └── encrypted.tdes ├── Drop.cpp ├── Drop.h ├── Drops+.cpp ├── Drops+.h ├── README.md ├── Visuals.cpp ├── Visuals.h ├── cthash.h ├── logs.cpp ├── logs.h ├── md5.cpp ├── md5.h ├── random.h ├── sounds.h └── string_obfuscation.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/.gitignore -------------------------------------------------------------------------------- /Baimless.club/Arial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Arial.hpp -------------------------------------------------------------------------------- /Baimless.club/AutoAccept.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Baimless.club/AutoAccept.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Baimless.club/B2 Icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/B2 Icon.h -------------------------------------------------------------------------------- /Baimless.club/BAR Icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/BAR Icon.h -------------------------------------------------------------------------------- /Baimless.club/CFixMove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/CFixMove.cpp -------------------------------------------------------------------------------- /Baimless.club/CFixMove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/CFixMove.h -------------------------------------------------------------------------------- /Baimless.club/CommonIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/CommonIncludes.h -------------------------------------------------------------------------------- /Baimless.club/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Config.cpp -------------------------------------------------------------------------------- /Baimless.club/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Config.h -------------------------------------------------------------------------------- /Baimless.club/Controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Controls.cpp -------------------------------------------------------------------------------- /Baimless.club/Controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Controls.h -------------------------------------------------------------------------------- /Baimless.club/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/DLLMain.cpp -------------------------------------------------------------------------------- /Baimless.club/Definitions.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Baimless.club/Definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Definitions.h -------------------------------------------------------------------------------- /Baimless.club/EnginePrediction.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Baimless.club/Entities.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Baimless.club/Entities.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Baimless.club/Features/Aimbot/Aimbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/Aimbot/Aimbot.cpp -------------------------------------------------------------------------------- /Baimless.club/Features/Aimbot/Aimbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/Aimbot/Aimbot.h -------------------------------------------------------------------------------- /Baimless.club/Features/Aimbot/Autowall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/Aimbot/Autowall.cpp -------------------------------------------------------------------------------- /Baimless.club/Features/Aimbot/Autowall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/Aimbot/Autowall.h -------------------------------------------------------------------------------- /Baimless.club/Features/Aimbot/EnginePrediction.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | 4 | 5 | -------------------------------------------------------------------------------- /Baimless.club/Features/Aimbot/LagComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/Aimbot/LagComp.cpp -------------------------------------------------------------------------------- /Baimless.club/Features/Aimbot/LagComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/Aimbot/LagComp.h -------------------------------------------------------------------------------- /Baimless.club/Features/AntiAim/AntiAim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/AntiAim/AntiAim.cpp -------------------------------------------------------------------------------- /Baimless.club/Features/AntiAim/AntiAim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/AntiAim/AntiAim.h -------------------------------------------------------------------------------- /Baimless.club/Features/Features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/Features.h -------------------------------------------------------------------------------- /Baimless.club/Features/Legit/Legitbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/Legit/Legitbot.cpp -------------------------------------------------------------------------------- /Baimless.club/Features/Legit/Legitbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/Legit/Legitbot.h -------------------------------------------------------------------------------- /Baimless.club/Features/Misc/Misc.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Baimless.club/Features/Misc/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/Misc/Misc.h -------------------------------------------------------------------------------- /Baimless.club/Features/Resolver/Resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/Resolver/Resolver.cpp -------------------------------------------------------------------------------- /Baimless.club/Features/Resolver/Resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/Resolver/Resolver.h -------------------------------------------------------------------------------- /Baimless.club/Features/Visuals/ESP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/Visuals/ESP.cpp -------------------------------------------------------------------------------- /Baimless.club/Features/Visuals/ESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/Visuals/ESP.h -------------------------------------------------------------------------------- /Baimless.club/Features/bulletbeams/BeamInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/bulletbeams/BeamInfo.hpp -------------------------------------------------------------------------------- /Baimless.club/Features/bulletbeams/bullettracers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/bulletbeams/bullettracers.cpp -------------------------------------------------------------------------------- /Baimless.club/Features/bulletbeams/bullettracers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/bulletbeams/bullettracers.h -------------------------------------------------------------------------------- /Baimless.club/Features/otheresp/otheresp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/otheresp/otheresp.cpp -------------------------------------------------------------------------------- /Baimless.club/Features/otheresp/otheresp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/otheresp/otheresp.h -------------------------------------------------------------------------------- /Baimless.club/Features/rankchanger/IMemAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/rankchanger/IMemAlloc.h -------------------------------------------------------------------------------- /Baimless.club/Features/rankchanger/ProtobuffMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/rankchanger/ProtobuffMessages.h -------------------------------------------------------------------------------- /Baimless.club/Features/rankchanger/Protobuffs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/rankchanger/Protobuffs.cpp -------------------------------------------------------------------------------- /Baimless.club/Features/rankchanger/Protobuffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/rankchanger/Protobuffs.h -------------------------------------------------------------------------------- /Baimless.club/Features/rankchanger/Protobuffs/ProtoField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/rankchanger/Protobuffs/ProtoField.h -------------------------------------------------------------------------------- /Baimless.club/Features/rankchanger/Protobuffs/ProtoWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/rankchanger/Protobuffs/ProtoWriter.h -------------------------------------------------------------------------------- /Baimless.club/Features/rankchanger/Protobuffs/ProtobuffMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/rankchanger/Protobuffs/ProtobuffMessages.h -------------------------------------------------------------------------------- /Baimless.club/Features/rankchanger/Protobuffs/inventory_changer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/rankchanger/Protobuffs/inventory_changer.h -------------------------------------------------------------------------------- /Baimless.club/Features/rankchanger/Protobuffs/profile_info_changer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/rankchanger/Protobuffs/profile_info_changer.h -------------------------------------------------------------------------------- /Baimless.club/Features/rankchanger/rankchanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/rankchanger/rankchanger.h -------------------------------------------------------------------------------- /Baimless.club/Features/rankchanger/steam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Features/rankchanger/steam.h -------------------------------------------------------------------------------- /Baimless.club/Features/singleston.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Baimless.club/Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Font.hpp -------------------------------------------------------------------------------- /Baimless.club/Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Fonts.h -------------------------------------------------------------------------------- /Baimless.club/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/GUI.cpp -------------------------------------------------------------------------------- /Baimless.club/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/GUI.h -------------------------------------------------------------------------------- /Baimless.club/GrenadeHelperAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/GrenadeHelperAPI.cpp -------------------------------------------------------------------------------- /Baimless.club/GrenadeHelperAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/GrenadeHelperAPI.h -------------------------------------------------------------------------------- /Baimless.club/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Hooks.cpp -------------------------------------------------------------------------------- /Baimless.club/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Hooks.h -------------------------------------------------------------------------------- /Baimless.club/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Input.cpp -------------------------------------------------------------------------------- /Baimless.club/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Input.h -------------------------------------------------------------------------------- /Baimless.club/Lucida.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Lucida.hpp -------------------------------------------------------------------------------- /Baimless.club/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Menu.cpp -------------------------------------------------------------------------------- /Baimless.club/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Menu.h -------------------------------------------------------------------------------- /Baimless.club/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/MinHook.h -------------------------------------------------------------------------------- /Baimless.club/Movement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Movement.h -------------------------------------------------------------------------------- /Baimless.club/NetworkStringTable.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /Baimless.club/Newskinchanger.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Baimless.club/Newskinchanger.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Baimless.club/Nightmode.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Baimless.club/Nightmode.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Baimless.club/OBS ESP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/OBS ESP.cpp -------------------------------------------------------------------------------- /Baimless.club/OBS ESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/OBS ESP.h -------------------------------------------------------------------------------- /Baimless.club/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Options.cpp -------------------------------------------------------------------------------- /Baimless.club/Options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Options.hpp -------------------------------------------------------------------------------- /Baimless.club/Playerlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Playerlist.h -------------------------------------------------------------------------------- /Baimless.club/Proxies.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /Baimless.club/Radar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Baimless.club/Radar.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Baimless.club/Render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Render.cpp -------------------------------------------------------------------------------- /Baimless.club/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Render.h -------------------------------------------------------------------------------- /Baimless.club/Render2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Render2.cpp -------------------------------------------------------------------------------- /Baimless.club/Render2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Render2.h -------------------------------------------------------------------------------- /Baimless.club/SDK/AppSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/AppSystem.h -------------------------------------------------------------------------------- /Baimless.club/SDK/CEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/CEntity.cpp -------------------------------------------------------------------------------- /Baimless.club/SDK/CEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/CEntity.h -------------------------------------------------------------------------------- /Baimless.club/SDK/CGlobalVarsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/CGlobalVarsBase.h -------------------------------------------------------------------------------- /Baimless.club/SDK/CHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/CHandle.h -------------------------------------------------------------------------------- /Baimless.club/SDK/CInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/CInput.h -------------------------------------------------------------------------------- /Baimless.club/SDK/CModelRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/CModelRender.h -------------------------------------------------------------------------------- /Baimless.club/SDK/CPrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/CPrediction.h -------------------------------------------------------------------------------- /Baimless.club/SDK/ClientClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/ClientClass.h -------------------------------------------------------------------------------- /Baimless.club/SDK/Definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/Definitions.h -------------------------------------------------------------------------------- /Baimless.club/SDK/Hitboxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/Hitboxes.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IAppSystem.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Baimless.club/SDK/IBaseClientDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IBaseClientDll.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IClientEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IClientEntity.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IClientEntityList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IClientEntityList.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IClientMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IClientMode.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IClientNetworkable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IClientNetworkable.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IClientRenderable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IClientRenderable.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IClientThinkable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IClientThinkable.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IClientUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IClientUnknown.h -------------------------------------------------------------------------------- /Baimless.club/SDK/ICvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/ICvar.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IEngineSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IEngineSound.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IEngineTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IEngineTrace.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IGameEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IGameEvent.h -------------------------------------------------------------------------------- /Baimless.club/SDK/ILocalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/ILocalize.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IMDLCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IMDLCache.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IMaterial.h -------------------------------------------------------------------------------- /Baimless.club/SDK/ISurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/ISurface.h -------------------------------------------------------------------------------- /Baimless.club/SDK/ISurfaceData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/ISurfaceData.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IVEngineClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IVEngineClient.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IVModelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IVModelInfo.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IVModelInfoClient.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /Baimless.club/SDK/IVRenderBeam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IVRenderBeam.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IVRenderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/IVRenderView.h -------------------------------------------------------------------------------- /Baimless.club/SDK/IViewRender.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /Baimless.club/SDK/InputSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/InputSystem.h -------------------------------------------------------------------------------- /Baimless.club/SDK/KeyValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/KeyValues.h -------------------------------------------------------------------------------- /Baimless.club/SDK/PlayerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/PlayerInfo.h -------------------------------------------------------------------------------- /Baimless.club/SDK/Recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/Recv.h -------------------------------------------------------------------------------- /Baimless.club/SDK/UtlVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/UtlVector.h -------------------------------------------------------------------------------- /Baimless.club/SDK/VMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/VMatrix.h -------------------------------------------------------------------------------- /Baimless.club/SDK/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/Vector.h -------------------------------------------------------------------------------- /Baimless.club/SDK/bspflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/bspflags.h -------------------------------------------------------------------------------- /Baimless.club/SDK/checksum_crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/SDK/checksum_crc.hpp -------------------------------------------------------------------------------- /Baimless.club/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Singleton.h -------------------------------------------------------------------------------- /Baimless.club/Tabs/tab_Aimbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Tabs/tab_Aimbot.cpp -------------------------------------------------------------------------------- /Baimless.club/Tabs/tab_AntiAim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Tabs/tab_AntiAim.cpp -------------------------------------------------------------------------------- /Baimless.club/Tabs/tab_Gloves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Tabs/tab_Gloves.cpp -------------------------------------------------------------------------------- /Baimless.club/Tabs/tab_Knifes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Tabs/tab_Knifes.cpp -------------------------------------------------------------------------------- /Baimless.club/Tabs/tab_Legitbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Tabs/tab_Legitbot.cpp -------------------------------------------------------------------------------- /Baimless.club/Tabs/tab_Login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Tabs/tab_Login.cpp -------------------------------------------------------------------------------- /Baimless.club/Tabs/tab_Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Tabs/tab_Main.cpp -------------------------------------------------------------------------------- /Baimless.club/Tabs/tab_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Tabs/tab_Misc.cpp -------------------------------------------------------------------------------- /Baimless.club/Tabs/tab_Players.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Tabs/tab_Players.cpp -------------------------------------------------------------------------------- /Baimless.club/Tabs/tab_Ragebot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Tabs/tab_Ragebot.cpp -------------------------------------------------------------------------------- /Baimless.club/Tabs/tab_Skin_Changer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Tabs/tab_Skin_Changer.cpp -------------------------------------------------------------------------------- /Baimless.club/Tabs/tab_Skins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Tabs/tab_Skins.cpp -------------------------------------------------------------------------------- /Baimless.club/Tabs/tab_Visuals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Tabs/tab_Visuals.cpp -------------------------------------------------------------------------------- /Baimless.club/Tabs/tab_Weapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Tabs/tab_Weapons.cpp -------------------------------------------------------------------------------- /Baimless.club/Utils/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Utils/Color.h -------------------------------------------------------------------------------- /Baimless.club/Utils/GlobalVars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Utils/GlobalVars.cpp -------------------------------------------------------------------------------- /Baimless.club/Utils/GlobalVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Utils/GlobalVars.h -------------------------------------------------------------------------------- /Baimless.club/Utils/Interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Utils/Interfaces.cpp -------------------------------------------------------------------------------- /Baimless.club/Utils/Interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Utils/Interfaces.h -------------------------------------------------------------------------------- /Baimless.club/Utils/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Utils/Math.cpp -------------------------------------------------------------------------------- /Baimless.club/Utils/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Utils/Math.h -------------------------------------------------------------------------------- /Baimless.club/Utils/NetvarManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Utils/NetvarManager.cpp -------------------------------------------------------------------------------- /Baimless.club/Utils/NetvarManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Utils/NetvarManager.h -------------------------------------------------------------------------------- /Baimless.club/Utils/SPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Utils/SPoint.h -------------------------------------------------------------------------------- /Baimless.club/Utils/SRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Utils/SRect.h -------------------------------------------------------------------------------- /Baimless.club/Utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Utils/Utils.h -------------------------------------------------------------------------------- /Baimless.club/Utils/XorStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Utils/XorStr.h -------------------------------------------------------------------------------- /Baimless.club/Weapons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Weapons.hpp -------------------------------------------------------------------------------- /Baimless.club/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/Window.cpp -------------------------------------------------------------------------------- /Baimless.club/XorStr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/XorStr.hpp -------------------------------------------------------------------------------- /Baimless.club/astrium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/astrium.cpp -------------------------------------------------------------------------------- /Baimless.club/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/buffer.c -------------------------------------------------------------------------------- /Baimless.club/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/buffer.h -------------------------------------------------------------------------------- /Baimless.club/detourhooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/detourhooks.h -------------------------------------------------------------------------------- /Baimless.club/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/dirent.h -------------------------------------------------------------------------------- /Baimless.club/fnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/fnv.h -------------------------------------------------------------------------------- /Baimless.club/fnv_hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/fnv_hash.hpp -------------------------------------------------------------------------------- /Baimless.club/fonts/Seta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/fonts/Seta.hpp -------------------------------------------------------------------------------- /Baimless.club/fonts/cousine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/fonts/cousine.hpp -------------------------------------------------------------------------------- /Baimless.club/fonts/droid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/fonts/droid.hpp -------------------------------------------------------------------------------- /Baimless.club/fonts/fonts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/fonts/fonts.hpp -------------------------------------------------------------------------------- /Baimless.club/glow.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /Baimless.club/grenadetracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/grenadetracer.cpp -------------------------------------------------------------------------------- /Baimless.club/grenadetracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/grenadetracer.h -------------------------------------------------------------------------------- /Baimless.club/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/hde32.c -------------------------------------------------------------------------------- /Baimless.club/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/hde32.h -------------------------------------------------------------------------------- /Baimless.club/hitscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/hitscan.h -------------------------------------------------------------------------------- /Baimless.club/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/hook.c -------------------------------------------------------------------------------- /Baimless.club/hookknife.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/hookknife.cpp -------------------------------------------------------------------------------- /Baimless.club/hookknife.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | extern void knife_animation() noexcept; 5 | 6 | 7 | -------------------------------------------------------------------------------- /Baimless.club/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/http.cpp -------------------------------------------------------------------------------- /Baimless.club/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/http.h -------------------------------------------------------------------------------- /Baimless.club/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/imgui/LICENSE.txt -------------------------------------------------------------------------------- /Baimless.club/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/imgui/imconfig.h -------------------------------------------------------------------------------- /Baimless.club/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/imgui/imgui.cpp -------------------------------------------------------------------------------- /Baimless.club/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/imgui/imgui.h -------------------------------------------------------------------------------- /Baimless.club/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /Baimless.club/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/imgui/imgui_internal.h -------------------------------------------------------------------------------- /Baimless.club/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /Baimless.club/imgui/impl/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/imgui/impl/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /Baimless.club/imgui/impl/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/imgui/impl/imgui_impl_dx9.h -------------------------------------------------------------------------------- /Baimless.club/imgui/impl/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/imgui/impl/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /Baimless.club/imgui/impl/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/imgui/impl/imgui_impl_win32.h -------------------------------------------------------------------------------- /Baimless.club/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /Baimless.club/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /Baimless.club/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /Baimless.club/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/json.h -------------------------------------------------------------------------------- /Baimless.club/kit_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/kit_parser.cpp -------------------------------------------------------------------------------- /Baimless.club/kit_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/kit_parser.h -------------------------------------------------------------------------------- /Baimless.club/md5_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/md5_hash.cpp -------------------------------------------------------------------------------- /Baimless.club/md5_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/md5_hash.h -------------------------------------------------------------------------------- /Baimless.club/newMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/newMenu.cpp -------------------------------------------------------------------------------- /Baimless.club/newMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/newMenu.h -------------------------------------------------------------------------------- /Baimless.club/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/nlohmann/json.hpp -------------------------------------------------------------------------------- /Baimless.club/notifies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/notifies.cpp -------------------------------------------------------------------------------- /Baimless.club/notifies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/notifies.h -------------------------------------------------------------------------------- /Baimless.club/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/pstdint.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/allocators.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/document.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/encodings.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/error/en.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/error/error.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/fwd.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/memorystream.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/pointer.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/reader.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/schema.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/stream.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /Baimless.club/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/rapidjson/writer.h -------------------------------------------------------------------------------- /Baimless.club/skinchanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/skinchanger.cpp -------------------------------------------------------------------------------- /Baimless.club/skinchanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/skinchanger.h -------------------------------------------------------------------------------- /Baimless.club/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/table32.h -------------------------------------------------------------------------------- /Baimless.club/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/tinyxml2.cpp -------------------------------------------------------------------------------- /Baimless.club/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/tinyxml2.h -------------------------------------------------------------------------------- /Baimless.club/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/trampoline.c -------------------------------------------------------------------------------- /Baimless.club/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/trampoline.h -------------------------------------------------------------------------------- /Baimless.club/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/ui.cpp -------------------------------------------------------------------------------- /Baimless.club/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/ui.h -------------------------------------------------------------------------------- /Baimless.club/uselesshitbytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/uselesshitbytes.h -------------------------------------------------------------------------------- /Baimless.club/vector2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/vector2d.h -------------------------------------------------------------------------------- /Baimless.club/vector3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/vector3d.cpp -------------------------------------------------------------------------------- /Baimless.club/vector3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/vector3d.h -------------------------------------------------------------------------------- /Baimless.club/vfunct/vfuncthook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/vfunct/vfuncthook.cpp -------------------------------------------------------------------------------- /Baimless.club/vfunct/vfuncthook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/vfunct/vfuncthook.h -------------------------------------------------------------------------------- /Baimless.club/watermark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/watermark.cpp -------------------------------------------------------------------------------- /Baimless.club/watermark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.club/watermark.h -------------------------------------------------------------------------------- /Baimless.xyz.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.xyz.sln -------------------------------------------------------------------------------- /Baimless.xyz.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.xyz.vcxproj -------------------------------------------------------------------------------- /Baimless.xyz.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Baimless.xyz.vcxproj.filters -------------------------------------------------------------------------------- /DLL/Baimless.xyz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/DLL/Baimless.xyz.dll -------------------------------------------------------------------------------- /DLL/Baimless.xyz.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/DLL/Baimless.xyz.map -------------------------------------------------------------------------------- /DLL/Baimless.xyz.vmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/DLL/Baimless.xyz.vmp.dll -------------------------------------------------------------------------------- /DLL/Encryptor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/DLL/Encryptor.exe -------------------------------------------------------------------------------- /DLL/Fonts/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/DLL/Fonts/Arial.ttf -------------------------------------------------------------------------------- /DLL/Fonts/Verdana.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/DLL/Fonts/Verdana.ttf -------------------------------------------------------------------------------- /DLL/Fonts/astriumwep.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/DLL/Fonts/astriumwep.ttf -------------------------------------------------------------------------------- /DLL/Fonts/badcache.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/DLL/Fonts/badcache.ttf -------------------------------------------------------------------------------- /DLL/Fonts/menu_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/DLL/Fonts/menu_font.ttf -------------------------------------------------------------------------------- /DLL/Injector.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/DLL/Injector.exe -------------------------------------------------------------------------------- /DLL/encrypted.tdes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/DLL/encrypted.tdes -------------------------------------------------------------------------------- /Drop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Drop.cpp -------------------------------------------------------------------------------- /Drop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Drop.h -------------------------------------------------------------------------------- /Drops+.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Drops+.cpp -------------------------------------------------------------------------------- /Drops+.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Drops+.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/README.md -------------------------------------------------------------------------------- /Visuals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Visuals.cpp -------------------------------------------------------------------------------- /Visuals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/Visuals.h -------------------------------------------------------------------------------- /cthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/cthash.h -------------------------------------------------------------------------------- /logs.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/md5.cpp -------------------------------------------------------------------------------- /md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/md5.h -------------------------------------------------------------------------------- /random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/random.h -------------------------------------------------------------------------------- /sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/sounds.h -------------------------------------------------------------------------------- /string_obfuscation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figlet-monkey/Baimless/HEAD/string_obfuscation.h --------------------------------------------------------------------------------