├── .clang-format ├── .github ├── .gitignore ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── build_issue.yml │ ├── config.yml │ ├── feature_request.yml │ └── improvement_request.yml └── workflows │ ├── ci.yml │ ├── nightly.yml │ └── pr-comment.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CMakeLists.txt ├── CMakeSettings.json ├── README.md ├── cmake ├── async-logger.cmake ├── imgui.cmake ├── json.cmake ├── minhook.cmake ├── rdr-classes.cmake └── vulkan.cmake ├── deps └── vulkan-1.lib └── src ├── common.cpp ├── common.hpp ├── core ├── backend │ ├── PatternCache.cpp │ └── PatternCache.hpp ├── commands │ ├── BoolCommand.cpp │ ├── BoolCommand.hpp │ ├── ColorCommand.cpp │ ├── ColorCommand.hpp │ ├── Command.cpp │ ├── Command.hpp │ ├── Commands.cpp │ ├── Commands.hpp │ ├── FloatCommand.cpp │ ├── FloatCommand.hpp │ ├── HotkeySystem.cpp │ ├── HotkeySystem.hpp │ ├── IntCommand.cpp │ ├── IntCommand.hpp │ ├── ListCommand.cpp │ ├── ListCommand.hpp │ ├── LoopedCommand.cpp │ ├── LoopedCommand.hpp │ ├── StringCommand.cpp │ ├── StringCommand.hpp │ ├── Vector3Command.cpp │ └── Vector3Command.hpp ├── filemgr │ ├── BaseObj.cpp │ ├── BaseObj.hpp │ ├── File.cpp │ ├── File.hpp │ ├── FileMgr.cpp │ ├── FileMgr.hpp │ ├── Folder.cpp │ └── Folder.hpp ├── frontend │ ├── Notifications.cpp │ ├── Notifications.hpp │ ├── manager │ │ ├── Category.cpp │ │ ├── Category.hpp │ │ ├── Submenu.cpp │ │ ├── Submenu.hpp │ │ ├── UIItem.hpp │ │ ├── UIManager.cpp │ │ └── UIManager.hpp │ └── widgets │ │ ├── imgui_colors.h │ │ └── toggle │ │ ├── imgui_offset_rect.hpp │ │ ├── imgui_toggle.cpp │ │ ├── imgui_toggle.hpp │ │ ├── imgui_toggle_math.hpp │ │ ├── imgui_toggle_palette.cpp │ │ ├── imgui_toggle_palette.hpp │ │ ├── imgui_toggle_presets.cpp │ │ ├── imgui_toggle_presets.hpp │ │ ├── imgui_toggle_renderer.cpp │ │ └── imgui_toggle_renderer.hpp ├── hooking │ ├── BaseHook.cpp │ ├── BaseHook.hpp │ ├── CallHook.hpp │ ├── DetourHook.hpp │ ├── Hooking.cpp │ ├── Hooking.hpp │ ├── IATHook.hpp │ ├── MinHook.hpp │ ├── VMTHook.hpp │ ├── VtableHook.cpp │ └── VtableHook.hpp ├── logger │ ├── ExceptionHandler.cpp │ ├── ExceptionHandler.hpp │ ├── LogColor.hpp │ ├── LogHelper.cpp │ ├── LogHelper.hpp │ ├── LogSink.cpp │ ├── LogSink.hpp │ ├── StackTrace.cpp │ └── StackTrace.hpp ├── memory │ ├── BytePatch.cpp │ ├── BytePatch.hpp │ ├── Module.cpp │ ├── Module.hpp │ ├── ModuleMgr.cpp │ ├── ModuleMgr.hpp │ ├── Pattern.cpp │ ├── Pattern.hpp │ ├── PatternHash.hpp │ ├── PatternScanner.cpp │ ├── PatternScanner.hpp │ └── PointerCalculator.hpp ├── misc │ └── RateLimiter.hpp ├── renderer │ ├── Renderer.cpp │ └── Renderer.hpp └── settings │ ├── IStateSerializer.cpp │ ├── IStateSerializer.hpp │ ├── Settings.cpp │ └── Settings.hpp ├── game ├── backend │ ├── Detections.hpp │ ├── FiberPool.cpp │ ├── FiberPool.hpp │ ├── MapEditor │ │ ├── Camera │ │ │ ├── MapEditorCamera.hpp │ │ │ ├── MapEditorCustomCamera.cpp │ │ │ └── MapEditorCustomCamera.hpp │ │ ├── Items │ │ │ ├── CategoryUtils.hpp │ │ │ ├── MapEntity.cpp │ │ │ ├── MapEntity.hpp │ │ │ ├── MapObject.cpp │ │ │ ├── MapObject.hpp │ │ │ ├── MapPed.cpp │ │ │ ├── MapPed.hpp │ │ │ ├── MapVehicle.cpp │ │ │ ├── MapVehicle.hpp │ │ │ ├── ObjectCategories.hpp │ │ │ ├── PedCategories.hpp │ │ │ ├── PedExpressions.hpp │ │ │ ├── PedScenarios.hpp │ │ │ └── VehicleCategories.hpp │ │ ├── MapControls.cpp │ │ ├── MapControls.hpp │ │ ├── MapEditor.cpp │ │ ├── MapEditor.hpp │ │ ├── MapEditorSelection.cpp │ │ ├── MapEditorSelection.hpp │ │ ├── MapInfo.cpp │ │ ├── MapInfo.hpp │ │ └── Menu │ │ │ ├── MapEditorMenu.cpp │ │ │ ├── MapEditorMenu.hpp │ │ │ ├── NativeDrawing.cpp │ │ │ ├── NativeDrawing.hpp │ │ │ ├── NativeMenu.cpp │ │ │ └── NativeMenu.hpp │ ├── NativeHooks.cpp │ ├── NativeHooks.hpp │ ├── NodeHooks.cpp │ ├── NodeHooks.hpp │ ├── PersistentPlayerData.hpp │ ├── PlayerData.hpp │ ├── PlayerDatabase.cpp │ ├── PlayerDatabase.hpp │ ├── Players.cpp │ ├── Players.hpp │ ├── Protections.cpp │ ├── Protections.hpp │ ├── SavedLocations.cpp │ ├── SavedLocations.hpp │ ├── SavedVariables.cpp │ ├── SavedVariables.hpp │ ├── ScriptMgr.cpp │ ├── ScriptMgr.hpp │ ├── ScriptPatches.cpp │ ├── ScriptPatches.hpp │ ├── Self.cpp │ ├── Self.hpp │ ├── Voice.cpp │ └── Voice.hpp ├── bigfeatures │ ├── CustomTeleport.cpp │ └── CustomTeleport.hpp ├── commands │ ├── PlayerCommand.cpp │ └── PlayerCommand.hpp ├── features │ ├── Features.cpp │ ├── Features.hpp │ ├── mount │ │ ├── FlamingHooves.cpp │ │ ├── HorseClimbSteepSlopes.cpp │ │ ├── HorseGodmode.cpp │ │ ├── HorseNoRagdoll.cpp │ │ ├── HorseSuperRun.cpp │ │ ├── KeepHorseAgitationLow.cpp │ │ ├── KeepHorseBarsFilled.cpp │ │ ├── KeepHorseClean.cpp │ │ └── KeepHorseCoresFilled.cpp │ ├── network │ │ ├── HearAllPlayers.cpp │ │ ├── JoinNewSession.cpp │ │ ├── RevealAllPlayers.cpp │ │ ├── VoiceChatOverride.cpp │ │ └── teleport │ │ │ ├── BringAllPlayers.cpp │ │ │ ├── TpAllToJail.cpp │ │ │ └── TpAllToWaypoint.cpp │ ├── players │ │ ├── kick │ │ │ ├── IceKick.cpp │ │ │ ├── PopulationResetKick.cpp │ │ │ └── SessionSplitKick.cpp │ │ ├── nice │ │ │ └── SpawnTreasureChest.cpp │ │ ├── teleport │ │ │ ├── BringPlayer.cpp │ │ │ ├── TpBehindPlayer.cpp │ │ │ ├── TpIntoVehicle.cpp │ │ │ ├── TpPlayerToJail.cpp │ │ │ ├── TpPlayerToMadamNazar.cpp │ │ │ ├── TpPlayerToWaypoint.cpp │ │ │ ├── TpToPlayer.cpp │ │ │ └── TpToPlayerCamp.cpp │ │ └── toxic │ │ │ ├── ActivateDefensiveMode.cpp │ │ │ ├── ActivateOffensiveMode.cpp │ │ │ ├── Attachments.cpp │ │ │ ├── CagePlayerLarge.cpp │ │ │ ├── CagePlayerSmall.cpp │ │ │ ├── Circus.cpp │ │ │ ├── DeleteHorse.cpp │ │ │ ├── DeleteVehicle.cpp │ │ │ ├── EndParlay.cpp │ │ │ ├── ExplodePlayer.cpp │ │ │ ├── IncreaseBounty.cpp │ │ │ ├── KickFromMount.cpp │ │ │ ├── KillPlayer.cpp │ │ │ ├── LightningStrike.cpp │ │ │ ├── MaximumHonor.cpp │ │ │ ├── MinimumHonor.cpp │ │ │ ├── RemoteBolas.cpp │ │ │ ├── SendStableEvent.cpp │ │ │ ├── SendTicker.cpp │ │ │ └── StartParlay.cpp │ ├── self │ │ ├── AntiAfk.cpp │ │ ├── AntiHogtie.cpp │ │ ├── AntiLasso.cpp │ │ ├── AntiMelee.cpp │ │ ├── AutoCockWeapon.cpp │ │ ├── AutoTP.cpp │ │ ├── ClearCrimes.cpp │ │ ├── ClimbSteepSlopes.cpp │ │ ├── Drunk.cpp │ │ ├── EagleEye.cpp │ │ ├── Freecam.cpp │ │ ├── GiveAllAmmo.cpp │ │ ├── GiveAllWeapons.cpp │ │ ├── Godmode.cpp │ │ ├── InfiniteAmmo.cpp │ │ ├── InfiniteClip.cpp │ │ ├── Invis.cpp │ │ ├── KeepBarsFilled.cpp │ │ ├── KeepClean.cpp │ │ ├── KeepCoresFilled.cpp │ │ ├── KeepGunsClean.cpp │ │ ├── Minigames │ │ │ └── Zombies.cpp │ │ ├── NPCIgnore.cpp │ │ ├── NeverWanted.cpp │ │ ├── NoRagdoll.cpp │ │ ├── NoSpread.cpp │ │ ├── Noclip.cpp │ │ ├── OffTheRadar.cpp │ │ ├── QuickSkin.cpp │ │ ├── SpeedUpMoonshine.cpp │ │ ├── Suicide.cpp │ │ ├── SuperPunch.cpp │ │ ├── SuperRun.cpp │ │ ├── Superjump.cpp │ │ ├── TpMountToSelf.cpp │ │ ├── TpToCamp.cpp │ │ ├── TpToMadamNazar.cpp │ │ ├── TpToMoonshineShack.cpp │ │ ├── TpToMount.cpp │ │ ├── TpToTrainTrack.cpp │ │ ├── TpToWaypoint.cpp │ │ └── WhistleModifier.cpp │ ├── spoofing │ │ ├── BlipSpoofing.cpp │ │ ├── HideGod.cpp │ │ └── HideSpectate.cpp │ ├── system │ │ └── Chat.cpp │ ├── vehicle │ │ ├── DraftVehicleNoDetach.cpp │ │ ├── RepairVehicle.cpp │ │ ├── SuperBrake.cpp │ │ ├── SuperDrive.cpp │ │ └── VehicleGodmode.cpp │ └── world │ │ ├── Bring.cpp │ │ ├── Delete.cpp │ │ ├── DisableGuardZones.cpp │ │ ├── EventOverride.cpp │ │ ├── KillAll.cpp │ │ └── KillAllEnemies.cpp ├── frontend │ ├── ChatDisplay.cpp │ ├── ChatDisplay.hpp │ ├── ContextMenu.cpp │ ├── ContextMenu.hpp │ ├── ContextMenus.hpp │ ├── ESP.cpp │ ├── ESP.hpp │ ├── GUI.cpp │ ├── GUI.hpp │ ├── Menu.cpp │ ├── Menu.hpp │ ├── Overlay.cpp │ ├── Overlay.hpp │ ├── fonts │ │ ├── Fonts.hpp │ │ └── MainFont.cpp │ ├── items │ │ ├── BoolCommandItem.cpp │ │ ├── Button.cpp │ │ ├── ColorCommandItem.cpp │ │ ├── CommandItem.cpp │ │ ├── ConditionalItem.cpp │ │ ├── FloatCommandItem.cpp │ │ ├── Group.cpp │ │ ├── HotkeySetter.cpp │ │ ├── ImGuiItem.cpp │ │ ├── InputTextWithHint.cpp │ │ ├── IntCommandItem.cpp │ │ ├── Items.hpp │ │ ├── ListCommandItem.cpp │ │ ├── PlayerCommandItem.cpp │ │ ├── StringCommandItem.cpp │ │ └── Vector3CommandItem.cpp │ └── submenus │ │ ├── Debug.cpp │ │ ├── Debug.hpp │ │ ├── Debug │ │ ├── DrawVariable.hpp │ │ ├── Globals.cpp │ │ ├── Globals.hpp │ │ ├── Locals.cpp │ │ ├── Locals.hpp │ │ ├── Scripts.cpp │ │ └── Scripts.hpp │ │ ├── Network.cpp │ │ ├── Network.hpp │ │ ├── Network │ │ ├── Voice.cpp │ │ └── Voice.hpp │ │ ├── Player │ │ ├── Helpful.cpp │ │ ├── Helpful.hpp │ │ ├── Info.cpp │ │ ├── Info.hpp │ │ ├── Kick.cpp │ │ ├── Kick.hpp │ │ ├── Toxic.cpp │ │ ├── Toxic.hpp │ │ ├── Trolling.cpp │ │ └── Trolling.hpp │ │ ├── Players.cpp │ │ ├── Players.hpp │ │ ├── Recovery.cpp │ │ ├── Recovery.hpp │ │ ├── Self.cpp │ │ ├── Self.hpp │ │ ├── Settings.cpp │ │ ├── Settings.hpp │ │ ├── Teleport.cpp │ │ ├── Teleport.hpp │ │ ├── World.cpp │ │ ├── World.hpp │ │ └── World │ │ ├── PedSpawner.cpp │ │ ├── PedSpawner.hpp │ │ ├── Shows.cpp │ │ ├── Shows.hpp │ │ ├── Train.cpp │ │ ├── Train.hpp │ │ ├── VehicleSpawner.cpp │ │ ├── VehicleSpawner.hpp │ │ └── weather.hpp ├── hooks │ ├── Anticheat │ │ ├── QueueDependency.cpp │ │ ├── SendMetric.cpp │ │ └── UnkFunction.cpp │ ├── GUI │ │ ├── SwapChain.cpp │ │ ├── Vulkan.cpp │ │ └── Window.cpp │ ├── Hooks.hpp │ ├── Info │ │ ├── HandleSessionEvent.cpp │ │ ├── NetworkRequest.cpp │ │ └── PlayerJoinLeave.cpp │ ├── Misc │ │ ├── CheckConditions.cpp │ │ ├── GetPoolSize.cpp │ │ ├── GetTextLabel.cpp │ │ ├── IsAnimSceneInScope.cpp │ │ └── ThrowFatalError.cpp │ ├── Protections │ │ ├── AddObjectToCreationQueue.cpp │ │ ├── CanApplyData.cpp │ │ ├── CanCreateNetworkObject.cpp │ │ ├── CreatePoolItem.cpp │ │ ├── DecideConnectionMethod.cpp │ │ ├── GetCloneCreateResponse.cpp │ │ ├── HandleCloneCreate.cpp │ │ ├── HandleCloneRemove.cpp │ │ ├── HandleCloneSync.cpp │ │ ├── HandleNetGameEvent.cpp │ │ ├── HandlePackets.cpp │ │ ├── HandlePresenceEvent.cpp │ │ ├── HandleScriptedGameEvent.cpp │ │ ├── LogSyncNode.cpp │ │ ├── PackCloneCreate.cpp │ │ ├── PhysicsHandleLassoAttachment.cpp │ │ ├── PostMessage.cpp │ │ ├── ReceiveArrayUpdate.cpp │ │ ├── ReceiveNetMessage.cpp │ │ ├── ResetSyncNodes.cpp │ │ ├── ServerMessages.cpp │ │ ├── SetTreeErrored.cpp │ │ └── ShouldBlockSync.cpp │ ├── Script │ │ ├── InitNativeTables.cpp │ │ ├── RegisterCompappNatives.cpp │ │ ├── RunScriptThreads.cpp │ │ └── ScriptVM.cpp │ ├── Spoofing │ │ ├── GetDiscriminator.cpp │ │ ├── SendNetInfoToLobby.cpp │ │ ├── WriteNodeData.cpp │ │ ├── WritePlayerHealthData.cpp │ │ └── WriteVPMData.cpp │ ├── Toxic │ │ ├── BroadcastNetArray.cpp │ │ ├── IsNodeInScope.cpp │ │ ├── SerializeIceSessionOfferRequest.cpp │ │ ├── SetTreeTargetObject.cpp │ │ ├── ShouldUseNodeCache.cpp │ │ └── WriteSyncTree.cpp │ └── Voice │ │ ├── DirectSoundCaptureCreate.cpp │ │ ├── EnumerateAudioDevices.cpp │ │ ├── SendVoicePacket.cpp │ │ └── WriteVoiceInfoData.cpp ├── pointers │ ├── Pointers.cpp │ └── Pointers.hpp └── rdr │ ├── Entity.cpp │ ├── Entity.hpp │ ├── Enums.hpp │ ├── GraphicsOptions.hpp │ ├── Natives.hpp │ ├── Network.cpp │ ├── Network.hpp │ ├── Nodes.cpp │ ├── Nodes.hpp │ ├── Object.cpp │ ├── Object.hpp │ ├── Packet.cpp │ ├── Packet.hpp │ ├── Ped.cpp │ ├── Ped.hpp │ ├── Player.cpp │ ├── Player.hpp │ ├── Pools.cpp │ ├── Pools.hpp │ ├── RenderingInfo.hpp │ ├── ScriptFunction.cpp │ ├── ScriptFunction.hpp │ ├── ScriptGlobal.cpp │ ├── ScriptGlobal.hpp │ ├── ScriptLocal.cpp │ ├── ScriptLocal.hpp │ ├── Scripts.cpp │ ├── Scripts.hpp │ ├── Vehicle.cpp │ ├── Vehicle.hpp │ ├── data │ ├── AmmoTypes.hpp │ ├── Emotes.hpp │ ├── JailTeleports.hpp │ ├── MessageTypes.hpp │ ├── PedModels.hpp │ ├── ScriptNames.hpp │ ├── StableEvents.hpp │ ├── StackSizes.hpp │ ├── TickerEvents.hpp │ ├── Trains.hpp │ ├── VehicleModels.hpp │ └── WeaponTypes.hpp │ └── invoker │ ├── Crossmap.hpp │ ├── GenerateNatives.py │ ├── Invoker.cpp │ ├── Invoker.hpp │ └── natives.json ├── main.cpp └── util ├── Chat.cpp ├── Chat.hpp ├── GraphicsValue.hpp ├── Helpers.hpp ├── Joaat.cpp ├── Joaat.hpp ├── Math.hpp ├── Protobufs.cpp ├── Protobufs.hpp ├── Rewards.cpp ├── Rewards.hpp ├── SpawnObject.cpp ├── SpawnObject.hpp ├── Storage └── Spoofing.hpp ├── StrToHex.hpp ├── VehicleSpawner.hpp ├── network.hpp └── teleport.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/build_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/.github/ISSUE_TEMPLATE/build_issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/improvement_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/.github/ISSUE_TEMPLATE/improvement_request.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.github/workflows/pr-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/.github/workflows/pr-comment.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .vs -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/README.md -------------------------------------------------------------------------------- /cmake/async-logger.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/cmake/async-logger.cmake -------------------------------------------------------------------------------- /cmake/imgui.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/cmake/imgui.cmake -------------------------------------------------------------------------------- /cmake/json.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/cmake/json.cmake -------------------------------------------------------------------------------- /cmake/minhook.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/cmake/minhook.cmake -------------------------------------------------------------------------------- /cmake/rdr-classes.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/cmake/rdr-classes.cmake -------------------------------------------------------------------------------- /cmake/vulkan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/cmake/vulkan.cmake -------------------------------------------------------------------------------- /deps/vulkan-1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/deps/vulkan-1.lib -------------------------------------------------------------------------------- /src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/common.cpp -------------------------------------------------------------------------------- /src/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/common.hpp -------------------------------------------------------------------------------- /src/core/backend/PatternCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/backend/PatternCache.cpp -------------------------------------------------------------------------------- /src/core/backend/PatternCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/backend/PatternCache.hpp -------------------------------------------------------------------------------- /src/core/commands/BoolCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/BoolCommand.cpp -------------------------------------------------------------------------------- /src/core/commands/BoolCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/BoolCommand.hpp -------------------------------------------------------------------------------- /src/core/commands/ColorCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/ColorCommand.cpp -------------------------------------------------------------------------------- /src/core/commands/ColorCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/ColorCommand.hpp -------------------------------------------------------------------------------- /src/core/commands/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/Command.cpp -------------------------------------------------------------------------------- /src/core/commands/Command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/Command.hpp -------------------------------------------------------------------------------- /src/core/commands/Commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/Commands.cpp -------------------------------------------------------------------------------- /src/core/commands/Commands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/Commands.hpp -------------------------------------------------------------------------------- /src/core/commands/FloatCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/FloatCommand.cpp -------------------------------------------------------------------------------- /src/core/commands/FloatCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/FloatCommand.hpp -------------------------------------------------------------------------------- /src/core/commands/HotkeySystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/HotkeySystem.cpp -------------------------------------------------------------------------------- /src/core/commands/HotkeySystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/HotkeySystem.hpp -------------------------------------------------------------------------------- /src/core/commands/IntCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/IntCommand.cpp -------------------------------------------------------------------------------- /src/core/commands/IntCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/IntCommand.hpp -------------------------------------------------------------------------------- /src/core/commands/ListCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/ListCommand.cpp -------------------------------------------------------------------------------- /src/core/commands/ListCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/ListCommand.hpp -------------------------------------------------------------------------------- /src/core/commands/LoopedCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/LoopedCommand.cpp -------------------------------------------------------------------------------- /src/core/commands/LoopedCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/LoopedCommand.hpp -------------------------------------------------------------------------------- /src/core/commands/StringCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/StringCommand.cpp -------------------------------------------------------------------------------- /src/core/commands/StringCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/StringCommand.hpp -------------------------------------------------------------------------------- /src/core/commands/Vector3Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/Vector3Command.cpp -------------------------------------------------------------------------------- /src/core/commands/Vector3Command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/commands/Vector3Command.hpp -------------------------------------------------------------------------------- /src/core/filemgr/BaseObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/filemgr/BaseObj.cpp -------------------------------------------------------------------------------- /src/core/filemgr/BaseObj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/filemgr/BaseObj.hpp -------------------------------------------------------------------------------- /src/core/filemgr/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/filemgr/File.cpp -------------------------------------------------------------------------------- /src/core/filemgr/File.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/filemgr/File.hpp -------------------------------------------------------------------------------- /src/core/filemgr/FileMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/filemgr/FileMgr.cpp -------------------------------------------------------------------------------- /src/core/filemgr/FileMgr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/filemgr/FileMgr.hpp -------------------------------------------------------------------------------- /src/core/filemgr/Folder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/filemgr/Folder.cpp -------------------------------------------------------------------------------- /src/core/filemgr/Folder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/filemgr/Folder.hpp -------------------------------------------------------------------------------- /src/core/frontend/Notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/Notifications.cpp -------------------------------------------------------------------------------- /src/core/frontend/Notifications.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/Notifications.hpp -------------------------------------------------------------------------------- /src/core/frontend/manager/Category.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/manager/Category.cpp -------------------------------------------------------------------------------- /src/core/frontend/manager/Category.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/manager/Category.hpp -------------------------------------------------------------------------------- /src/core/frontend/manager/Submenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/manager/Submenu.cpp -------------------------------------------------------------------------------- /src/core/frontend/manager/Submenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/manager/Submenu.hpp -------------------------------------------------------------------------------- /src/core/frontend/manager/UIItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/manager/UIItem.hpp -------------------------------------------------------------------------------- /src/core/frontend/manager/UIManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/manager/UIManager.cpp -------------------------------------------------------------------------------- /src/core/frontend/manager/UIManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/manager/UIManager.hpp -------------------------------------------------------------------------------- /src/core/frontend/widgets/imgui_colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/widgets/imgui_colors.h -------------------------------------------------------------------------------- /src/core/frontend/widgets/toggle/imgui_offset_rect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/widgets/toggle/imgui_offset_rect.hpp -------------------------------------------------------------------------------- /src/core/frontend/widgets/toggle/imgui_toggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/widgets/toggle/imgui_toggle.cpp -------------------------------------------------------------------------------- /src/core/frontend/widgets/toggle/imgui_toggle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/widgets/toggle/imgui_toggle.hpp -------------------------------------------------------------------------------- /src/core/frontend/widgets/toggle/imgui_toggle_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/widgets/toggle/imgui_toggle_math.hpp -------------------------------------------------------------------------------- /src/core/frontend/widgets/toggle/imgui_toggle_palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/widgets/toggle/imgui_toggle_palette.cpp -------------------------------------------------------------------------------- /src/core/frontend/widgets/toggle/imgui_toggle_palette.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/widgets/toggle/imgui_toggle_palette.hpp -------------------------------------------------------------------------------- /src/core/frontend/widgets/toggle/imgui_toggle_presets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/widgets/toggle/imgui_toggle_presets.cpp -------------------------------------------------------------------------------- /src/core/frontend/widgets/toggle/imgui_toggle_presets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/widgets/toggle/imgui_toggle_presets.hpp -------------------------------------------------------------------------------- /src/core/frontend/widgets/toggle/imgui_toggle_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/widgets/toggle/imgui_toggle_renderer.cpp -------------------------------------------------------------------------------- /src/core/frontend/widgets/toggle/imgui_toggle_renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/frontend/widgets/toggle/imgui_toggle_renderer.hpp -------------------------------------------------------------------------------- /src/core/hooking/BaseHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/hooking/BaseHook.cpp -------------------------------------------------------------------------------- /src/core/hooking/BaseHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/hooking/BaseHook.hpp -------------------------------------------------------------------------------- /src/core/hooking/CallHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/hooking/CallHook.hpp -------------------------------------------------------------------------------- /src/core/hooking/DetourHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/hooking/DetourHook.hpp -------------------------------------------------------------------------------- /src/core/hooking/Hooking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/hooking/Hooking.cpp -------------------------------------------------------------------------------- /src/core/hooking/Hooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/hooking/Hooking.hpp -------------------------------------------------------------------------------- /src/core/hooking/IATHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/hooking/IATHook.hpp -------------------------------------------------------------------------------- /src/core/hooking/MinHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/hooking/MinHook.hpp -------------------------------------------------------------------------------- /src/core/hooking/VMTHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/hooking/VMTHook.hpp -------------------------------------------------------------------------------- /src/core/hooking/VtableHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/hooking/VtableHook.cpp -------------------------------------------------------------------------------- /src/core/hooking/VtableHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/hooking/VtableHook.hpp -------------------------------------------------------------------------------- /src/core/logger/ExceptionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/logger/ExceptionHandler.cpp -------------------------------------------------------------------------------- /src/core/logger/ExceptionHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/logger/ExceptionHandler.hpp -------------------------------------------------------------------------------- /src/core/logger/LogColor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/logger/LogColor.hpp -------------------------------------------------------------------------------- /src/core/logger/LogHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/logger/LogHelper.cpp -------------------------------------------------------------------------------- /src/core/logger/LogHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/logger/LogHelper.hpp -------------------------------------------------------------------------------- /src/core/logger/LogSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/logger/LogSink.cpp -------------------------------------------------------------------------------- /src/core/logger/LogSink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/logger/LogSink.hpp -------------------------------------------------------------------------------- /src/core/logger/StackTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/logger/StackTrace.cpp -------------------------------------------------------------------------------- /src/core/logger/StackTrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/logger/StackTrace.hpp -------------------------------------------------------------------------------- /src/core/memory/BytePatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/memory/BytePatch.cpp -------------------------------------------------------------------------------- /src/core/memory/BytePatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/memory/BytePatch.hpp -------------------------------------------------------------------------------- /src/core/memory/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/memory/Module.cpp -------------------------------------------------------------------------------- /src/core/memory/Module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/memory/Module.hpp -------------------------------------------------------------------------------- /src/core/memory/ModuleMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/memory/ModuleMgr.cpp -------------------------------------------------------------------------------- /src/core/memory/ModuleMgr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/memory/ModuleMgr.hpp -------------------------------------------------------------------------------- /src/core/memory/Pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/memory/Pattern.cpp -------------------------------------------------------------------------------- /src/core/memory/Pattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/memory/Pattern.hpp -------------------------------------------------------------------------------- /src/core/memory/PatternHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/memory/PatternHash.hpp -------------------------------------------------------------------------------- /src/core/memory/PatternScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/memory/PatternScanner.cpp -------------------------------------------------------------------------------- /src/core/memory/PatternScanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/memory/PatternScanner.hpp -------------------------------------------------------------------------------- /src/core/memory/PointerCalculator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/memory/PointerCalculator.hpp -------------------------------------------------------------------------------- /src/core/misc/RateLimiter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/misc/RateLimiter.hpp -------------------------------------------------------------------------------- /src/core/renderer/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/renderer/Renderer.cpp -------------------------------------------------------------------------------- /src/core/renderer/Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/renderer/Renderer.hpp -------------------------------------------------------------------------------- /src/core/settings/IStateSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/settings/IStateSerializer.cpp -------------------------------------------------------------------------------- /src/core/settings/IStateSerializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/settings/IStateSerializer.hpp -------------------------------------------------------------------------------- /src/core/settings/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/settings/Settings.cpp -------------------------------------------------------------------------------- /src/core/settings/Settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/core/settings/Settings.hpp -------------------------------------------------------------------------------- /src/game/backend/Detections.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/Detections.hpp -------------------------------------------------------------------------------- /src/game/backend/FiberPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/FiberPool.cpp -------------------------------------------------------------------------------- /src/game/backend/FiberPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/FiberPool.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Camera/MapEditorCamera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Camera/MapEditorCamera.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Camera/MapEditorCustomCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Camera/MapEditorCustomCamera.cpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Camera/MapEditorCustomCamera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Camera/MapEditorCustomCamera.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Items/CategoryUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Items/CategoryUtils.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Items/MapEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Items/MapEntity.cpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Items/MapEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Items/MapEntity.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Items/MapObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Items/MapObject.cpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Items/MapObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Items/MapObject.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Items/MapPed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Items/MapPed.cpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Items/MapPed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Items/MapPed.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Items/MapVehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Items/MapVehicle.cpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Items/MapVehicle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Items/MapVehicle.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Items/ObjectCategories.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Items/ObjectCategories.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Items/PedCategories.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Items/PedCategories.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Items/PedExpressions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Items/PedExpressions.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Items/PedScenarios.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Items/PedScenarios.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Items/VehicleCategories.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Items/VehicleCategories.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/MapControls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/MapControls.cpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/MapControls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/MapControls.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/MapEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/MapEditor.cpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/MapEditor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/MapEditor.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/MapEditorSelection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/MapEditorSelection.cpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/MapEditorSelection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/MapEditorSelection.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/MapInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/MapInfo.cpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/MapInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/MapInfo.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Menu/MapEditorMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Menu/MapEditorMenu.cpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Menu/MapEditorMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Menu/MapEditorMenu.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Menu/NativeDrawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Menu/NativeDrawing.cpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Menu/NativeDrawing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Menu/NativeDrawing.hpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Menu/NativeMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Menu/NativeMenu.cpp -------------------------------------------------------------------------------- /src/game/backend/MapEditor/Menu/NativeMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/MapEditor/Menu/NativeMenu.hpp -------------------------------------------------------------------------------- /src/game/backend/NativeHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/NativeHooks.cpp -------------------------------------------------------------------------------- /src/game/backend/NativeHooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/NativeHooks.hpp -------------------------------------------------------------------------------- /src/game/backend/NodeHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/NodeHooks.cpp -------------------------------------------------------------------------------- /src/game/backend/NodeHooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/NodeHooks.hpp -------------------------------------------------------------------------------- /src/game/backend/PersistentPlayerData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/PersistentPlayerData.hpp -------------------------------------------------------------------------------- /src/game/backend/PlayerData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/PlayerData.hpp -------------------------------------------------------------------------------- /src/game/backend/PlayerDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/PlayerDatabase.cpp -------------------------------------------------------------------------------- /src/game/backend/PlayerDatabase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/PlayerDatabase.hpp -------------------------------------------------------------------------------- /src/game/backend/Players.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/Players.cpp -------------------------------------------------------------------------------- /src/game/backend/Players.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/Players.hpp -------------------------------------------------------------------------------- /src/game/backend/Protections.cpp: -------------------------------------------------------------------------------- 1 | #include "Protections.hpp" 2 | 3 | namespace YimMenu 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /src/game/backend/Protections.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/Protections.hpp -------------------------------------------------------------------------------- /src/game/backend/SavedLocations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/SavedLocations.cpp -------------------------------------------------------------------------------- /src/game/backend/SavedLocations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/SavedLocations.hpp -------------------------------------------------------------------------------- /src/game/backend/SavedVariables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/SavedVariables.cpp -------------------------------------------------------------------------------- /src/game/backend/SavedVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/SavedVariables.hpp -------------------------------------------------------------------------------- /src/game/backend/ScriptMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/ScriptMgr.cpp -------------------------------------------------------------------------------- /src/game/backend/ScriptMgr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/ScriptMgr.hpp -------------------------------------------------------------------------------- /src/game/backend/ScriptPatches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/ScriptPatches.cpp -------------------------------------------------------------------------------- /src/game/backend/ScriptPatches.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/ScriptPatches.hpp -------------------------------------------------------------------------------- /src/game/backend/Self.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/Self.cpp -------------------------------------------------------------------------------- /src/game/backend/Self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/Self.hpp -------------------------------------------------------------------------------- /src/game/backend/Voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/Voice.cpp -------------------------------------------------------------------------------- /src/game/backend/Voice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/backend/Voice.hpp -------------------------------------------------------------------------------- /src/game/bigfeatures/CustomTeleport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/bigfeatures/CustomTeleport.cpp -------------------------------------------------------------------------------- /src/game/bigfeatures/CustomTeleport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/bigfeatures/CustomTeleport.hpp -------------------------------------------------------------------------------- /src/game/commands/PlayerCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/commands/PlayerCommand.cpp -------------------------------------------------------------------------------- /src/game/commands/PlayerCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/commands/PlayerCommand.hpp -------------------------------------------------------------------------------- /src/game/features/Features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/Features.cpp -------------------------------------------------------------------------------- /src/game/features/Features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/Features.hpp -------------------------------------------------------------------------------- /src/game/features/mount/FlamingHooves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/mount/FlamingHooves.cpp -------------------------------------------------------------------------------- /src/game/features/mount/HorseClimbSteepSlopes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/mount/HorseClimbSteepSlopes.cpp -------------------------------------------------------------------------------- /src/game/features/mount/HorseGodmode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/mount/HorseGodmode.cpp -------------------------------------------------------------------------------- /src/game/features/mount/HorseNoRagdoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/mount/HorseNoRagdoll.cpp -------------------------------------------------------------------------------- /src/game/features/mount/HorseSuperRun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/mount/HorseSuperRun.cpp -------------------------------------------------------------------------------- /src/game/features/mount/KeepHorseAgitationLow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/mount/KeepHorseAgitationLow.cpp -------------------------------------------------------------------------------- /src/game/features/mount/KeepHorseBarsFilled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/mount/KeepHorseBarsFilled.cpp -------------------------------------------------------------------------------- /src/game/features/mount/KeepHorseClean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/mount/KeepHorseClean.cpp -------------------------------------------------------------------------------- /src/game/features/mount/KeepHorseCoresFilled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/mount/KeepHorseCoresFilled.cpp -------------------------------------------------------------------------------- /src/game/features/network/HearAllPlayers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/network/HearAllPlayers.cpp -------------------------------------------------------------------------------- /src/game/features/network/JoinNewSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/network/JoinNewSession.cpp -------------------------------------------------------------------------------- /src/game/features/network/RevealAllPlayers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/network/RevealAllPlayers.cpp -------------------------------------------------------------------------------- /src/game/features/network/VoiceChatOverride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/network/VoiceChatOverride.cpp -------------------------------------------------------------------------------- /src/game/features/network/teleport/BringAllPlayers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/network/teleport/BringAllPlayers.cpp -------------------------------------------------------------------------------- /src/game/features/network/teleport/TpAllToJail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/network/teleport/TpAllToJail.cpp -------------------------------------------------------------------------------- /src/game/features/network/teleport/TpAllToWaypoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/network/teleport/TpAllToWaypoint.cpp -------------------------------------------------------------------------------- /src/game/features/players/kick/IceKick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/kick/IceKick.cpp -------------------------------------------------------------------------------- /src/game/features/players/kick/PopulationResetKick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/kick/PopulationResetKick.cpp -------------------------------------------------------------------------------- /src/game/features/players/kick/SessionSplitKick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/kick/SessionSplitKick.cpp -------------------------------------------------------------------------------- /src/game/features/players/nice/SpawnTreasureChest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/nice/SpawnTreasureChest.cpp -------------------------------------------------------------------------------- /src/game/features/players/teleport/BringPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/teleport/BringPlayer.cpp -------------------------------------------------------------------------------- /src/game/features/players/teleport/TpBehindPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/teleport/TpBehindPlayer.cpp -------------------------------------------------------------------------------- /src/game/features/players/teleport/TpIntoVehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/teleport/TpIntoVehicle.cpp -------------------------------------------------------------------------------- /src/game/features/players/teleport/TpPlayerToJail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/teleport/TpPlayerToJail.cpp -------------------------------------------------------------------------------- /src/game/features/players/teleport/TpPlayerToMadamNazar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/teleport/TpPlayerToMadamNazar.cpp -------------------------------------------------------------------------------- /src/game/features/players/teleport/TpPlayerToWaypoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/teleport/TpPlayerToWaypoint.cpp -------------------------------------------------------------------------------- /src/game/features/players/teleport/TpToPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/teleport/TpToPlayer.cpp -------------------------------------------------------------------------------- /src/game/features/players/teleport/TpToPlayerCamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/teleport/TpToPlayerCamp.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/ActivateDefensiveMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/ActivateDefensiveMode.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/ActivateOffensiveMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/ActivateOffensiveMode.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/Attachments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/Attachments.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/CagePlayerLarge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/CagePlayerLarge.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/CagePlayerSmall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/CagePlayerSmall.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/Circus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/Circus.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/DeleteHorse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/DeleteHorse.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/DeleteVehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/DeleteVehicle.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/EndParlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/EndParlay.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/ExplodePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/ExplodePlayer.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/IncreaseBounty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/IncreaseBounty.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/KickFromMount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/KickFromMount.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/KillPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/KillPlayer.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/LightningStrike.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/LightningStrike.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/MaximumHonor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/MaximumHonor.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/MinimumHonor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/MinimumHonor.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/RemoteBolas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/RemoteBolas.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/SendStableEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/SendStableEvent.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/SendTicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/SendTicker.cpp -------------------------------------------------------------------------------- /src/game/features/players/toxic/StartParlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/players/toxic/StartParlay.cpp -------------------------------------------------------------------------------- /src/game/features/self/AntiAfk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/AntiAfk.cpp -------------------------------------------------------------------------------- /src/game/features/self/AntiHogtie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/AntiHogtie.cpp -------------------------------------------------------------------------------- /src/game/features/self/AntiLasso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/AntiLasso.cpp -------------------------------------------------------------------------------- /src/game/features/self/AntiMelee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/AntiMelee.cpp -------------------------------------------------------------------------------- /src/game/features/self/AutoCockWeapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/AutoCockWeapon.cpp -------------------------------------------------------------------------------- /src/game/features/self/AutoTP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/AutoTP.cpp -------------------------------------------------------------------------------- /src/game/features/self/ClearCrimes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/ClearCrimes.cpp -------------------------------------------------------------------------------- /src/game/features/self/ClimbSteepSlopes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/ClimbSteepSlopes.cpp -------------------------------------------------------------------------------- /src/game/features/self/Drunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/Drunk.cpp -------------------------------------------------------------------------------- /src/game/features/self/EagleEye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/EagleEye.cpp -------------------------------------------------------------------------------- /src/game/features/self/Freecam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/Freecam.cpp -------------------------------------------------------------------------------- /src/game/features/self/GiveAllAmmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/GiveAllAmmo.cpp -------------------------------------------------------------------------------- /src/game/features/self/GiveAllWeapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/GiveAllWeapons.cpp -------------------------------------------------------------------------------- /src/game/features/self/Godmode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/Godmode.cpp -------------------------------------------------------------------------------- /src/game/features/self/InfiniteAmmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/InfiniteAmmo.cpp -------------------------------------------------------------------------------- /src/game/features/self/InfiniteClip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/InfiniteClip.cpp -------------------------------------------------------------------------------- /src/game/features/self/Invis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/Invis.cpp -------------------------------------------------------------------------------- /src/game/features/self/KeepBarsFilled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/KeepBarsFilled.cpp -------------------------------------------------------------------------------- /src/game/features/self/KeepClean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/KeepClean.cpp -------------------------------------------------------------------------------- /src/game/features/self/KeepCoresFilled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/KeepCoresFilled.cpp -------------------------------------------------------------------------------- /src/game/features/self/KeepGunsClean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/KeepGunsClean.cpp -------------------------------------------------------------------------------- /src/game/features/self/Minigames/Zombies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/Minigames/Zombies.cpp -------------------------------------------------------------------------------- /src/game/features/self/NPCIgnore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/NPCIgnore.cpp -------------------------------------------------------------------------------- /src/game/features/self/NeverWanted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/NeverWanted.cpp -------------------------------------------------------------------------------- /src/game/features/self/NoRagdoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/NoRagdoll.cpp -------------------------------------------------------------------------------- /src/game/features/self/NoSpread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/NoSpread.cpp -------------------------------------------------------------------------------- /src/game/features/self/Noclip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/Noclip.cpp -------------------------------------------------------------------------------- /src/game/features/self/OffTheRadar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/OffTheRadar.cpp -------------------------------------------------------------------------------- /src/game/features/self/QuickSkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/QuickSkin.cpp -------------------------------------------------------------------------------- /src/game/features/self/SpeedUpMoonshine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/SpeedUpMoonshine.cpp -------------------------------------------------------------------------------- /src/game/features/self/Suicide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/Suicide.cpp -------------------------------------------------------------------------------- /src/game/features/self/SuperPunch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/SuperPunch.cpp -------------------------------------------------------------------------------- /src/game/features/self/SuperRun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/SuperRun.cpp -------------------------------------------------------------------------------- /src/game/features/self/Superjump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/Superjump.cpp -------------------------------------------------------------------------------- /src/game/features/self/TpMountToSelf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/TpMountToSelf.cpp -------------------------------------------------------------------------------- /src/game/features/self/TpToCamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/TpToCamp.cpp -------------------------------------------------------------------------------- /src/game/features/self/TpToMadamNazar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/TpToMadamNazar.cpp -------------------------------------------------------------------------------- /src/game/features/self/TpToMoonshineShack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/TpToMoonshineShack.cpp -------------------------------------------------------------------------------- /src/game/features/self/TpToMount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/TpToMount.cpp -------------------------------------------------------------------------------- /src/game/features/self/TpToTrainTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/TpToTrainTrack.cpp -------------------------------------------------------------------------------- /src/game/features/self/TpToWaypoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/TpToWaypoint.cpp -------------------------------------------------------------------------------- /src/game/features/self/WhistleModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/self/WhistleModifier.cpp -------------------------------------------------------------------------------- /src/game/features/spoofing/BlipSpoofing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/spoofing/BlipSpoofing.cpp -------------------------------------------------------------------------------- /src/game/features/spoofing/HideGod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/spoofing/HideGod.cpp -------------------------------------------------------------------------------- /src/game/features/spoofing/HideSpectate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/spoofing/HideSpectate.cpp -------------------------------------------------------------------------------- /src/game/features/system/Chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/system/Chat.cpp -------------------------------------------------------------------------------- /src/game/features/vehicle/DraftVehicleNoDetach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/vehicle/DraftVehicleNoDetach.cpp -------------------------------------------------------------------------------- /src/game/features/vehicle/RepairVehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/vehicle/RepairVehicle.cpp -------------------------------------------------------------------------------- /src/game/features/vehicle/SuperBrake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/vehicle/SuperBrake.cpp -------------------------------------------------------------------------------- /src/game/features/vehicle/SuperDrive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/vehicle/SuperDrive.cpp -------------------------------------------------------------------------------- /src/game/features/vehicle/VehicleGodmode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/vehicle/VehicleGodmode.cpp -------------------------------------------------------------------------------- /src/game/features/world/Bring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/world/Bring.cpp -------------------------------------------------------------------------------- /src/game/features/world/Delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/world/Delete.cpp -------------------------------------------------------------------------------- /src/game/features/world/DisableGuardZones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/world/DisableGuardZones.cpp -------------------------------------------------------------------------------- /src/game/features/world/EventOverride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/world/EventOverride.cpp -------------------------------------------------------------------------------- /src/game/features/world/KillAll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/world/KillAll.cpp -------------------------------------------------------------------------------- /src/game/features/world/KillAllEnemies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/features/world/KillAllEnemies.cpp -------------------------------------------------------------------------------- /src/game/frontend/ChatDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/ChatDisplay.cpp -------------------------------------------------------------------------------- /src/game/frontend/ChatDisplay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/ChatDisplay.hpp -------------------------------------------------------------------------------- /src/game/frontend/ContextMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/ContextMenu.cpp -------------------------------------------------------------------------------- /src/game/frontend/ContextMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/ContextMenu.hpp -------------------------------------------------------------------------------- /src/game/frontend/ContextMenus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/ContextMenus.hpp -------------------------------------------------------------------------------- /src/game/frontend/ESP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/ESP.cpp -------------------------------------------------------------------------------- /src/game/frontend/ESP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/ESP.hpp -------------------------------------------------------------------------------- /src/game/frontend/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/GUI.cpp -------------------------------------------------------------------------------- /src/game/frontend/GUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/GUI.hpp -------------------------------------------------------------------------------- /src/game/frontend/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/Menu.cpp -------------------------------------------------------------------------------- /src/game/frontend/Menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/Menu.hpp -------------------------------------------------------------------------------- /src/game/frontend/Overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/Overlay.cpp -------------------------------------------------------------------------------- /src/game/frontend/Overlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/Overlay.hpp -------------------------------------------------------------------------------- /src/game/frontend/fonts/Fonts.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace YimMenu::Fonts 4 | { 5 | extern const uint8_t MainFont[78948]; 6 | } -------------------------------------------------------------------------------- /src/game/frontend/fonts/MainFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/fonts/MainFont.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/BoolCommandItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/BoolCommandItem.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/Button.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/ColorCommandItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/ColorCommandItem.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/CommandItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/CommandItem.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/ConditionalItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/ConditionalItem.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/FloatCommandItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/FloatCommandItem.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/Group.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/HotkeySetter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/HotkeySetter.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/ImGuiItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/ImGuiItem.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/InputTextWithHint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/InputTextWithHint.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/IntCommandItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/IntCommandItem.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/Items.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/Items.hpp -------------------------------------------------------------------------------- /src/game/frontend/items/ListCommandItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/ListCommandItem.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/PlayerCommandItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/PlayerCommandItem.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/StringCommandItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/StringCommandItem.cpp -------------------------------------------------------------------------------- /src/game/frontend/items/Vector3CommandItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/items/Vector3CommandItem.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Debug.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Debug.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Debug/DrawVariable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Debug/DrawVariable.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Debug/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Debug/Globals.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Debug/Globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Debug/Globals.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Debug/Locals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Debug/Locals.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Debug/Locals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Debug/Locals.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Debug/Scripts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Debug/Scripts.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Debug/Scripts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Debug/Scripts.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Network.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Network.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Network/Voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Network/Voice.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Network/Voice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Network/Voice.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Player/Helpful.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Player/Helpful.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Player/Helpful.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Player/Helpful.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Player/Info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Player/Info.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Player/Info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Player/Info.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Player/Kick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Player/Kick.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Player/Kick.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Player/Kick.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Player/Toxic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Player/Toxic.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Player/Toxic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Player/Toxic.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Player/Trolling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Player/Trolling.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Player/Trolling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Player/Trolling.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Players.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Players.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Players.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Players.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Recovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Recovery.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Recovery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Recovery.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Self.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Self.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Self.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Settings.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Settings.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Teleport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Teleport.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/Teleport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/Teleport.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/World.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/World.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/World.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/World/PedSpawner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/World/PedSpawner.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/World/PedSpawner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/World/PedSpawner.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/World/Shows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/World/Shows.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/World/Shows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/World/Shows.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/World/Train.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/World/Train.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/World/Train.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/World/Train.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/World/VehicleSpawner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/World/VehicleSpawner.cpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/World/VehicleSpawner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/World/VehicleSpawner.hpp -------------------------------------------------------------------------------- /src/game/frontend/submenus/World/weather.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/frontend/submenus/World/weather.hpp -------------------------------------------------------------------------------- /src/game/hooks/Anticheat/QueueDependency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Anticheat/QueueDependency.cpp -------------------------------------------------------------------------------- /src/game/hooks/Anticheat/SendMetric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Anticheat/SendMetric.cpp -------------------------------------------------------------------------------- /src/game/hooks/Anticheat/UnkFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Anticheat/UnkFunction.cpp -------------------------------------------------------------------------------- /src/game/hooks/GUI/SwapChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/GUI/SwapChain.cpp -------------------------------------------------------------------------------- /src/game/hooks/GUI/Vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/GUI/Vulkan.cpp -------------------------------------------------------------------------------- /src/game/hooks/GUI/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/GUI/Window.cpp -------------------------------------------------------------------------------- /src/game/hooks/Hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Hooks.hpp -------------------------------------------------------------------------------- /src/game/hooks/Info/HandleSessionEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Info/HandleSessionEvent.cpp -------------------------------------------------------------------------------- /src/game/hooks/Info/NetworkRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Info/NetworkRequest.cpp -------------------------------------------------------------------------------- /src/game/hooks/Info/PlayerJoinLeave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Info/PlayerJoinLeave.cpp -------------------------------------------------------------------------------- /src/game/hooks/Misc/CheckConditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Misc/CheckConditions.cpp -------------------------------------------------------------------------------- /src/game/hooks/Misc/GetPoolSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Misc/GetPoolSize.cpp -------------------------------------------------------------------------------- /src/game/hooks/Misc/GetTextLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Misc/GetTextLabel.cpp -------------------------------------------------------------------------------- /src/game/hooks/Misc/IsAnimSceneInScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Misc/IsAnimSceneInScope.cpp -------------------------------------------------------------------------------- /src/game/hooks/Misc/ThrowFatalError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Misc/ThrowFatalError.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/AddObjectToCreationQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/AddObjectToCreationQueue.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/CanApplyData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/CanApplyData.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/CanCreateNetworkObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/CanCreateNetworkObject.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/CreatePoolItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/CreatePoolItem.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/DecideConnectionMethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/DecideConnectionMethod.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/GetCloneCreateResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/GetCloneCreateResponse.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/HandleCloneCreate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/HandleCloneCreate.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/HandleCloneRemove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/HandleCloneRemove.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/HandleCloneSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/HandleCloneSync.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/HandleNetGameEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/HandleNetGameEvent.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/HandlePackets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/HandlePackets.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/HandlePresenceEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/HandlePresenceEvent.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/HandleScriptedGameEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/HandleScriptedGameEvent.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/LogSyncNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/LogSyncNode.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/PackCloneCreate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/PackCloneCreate.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/PhysicsHandleLassoAttachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/PhysicsHandleLassoAttachment.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/PostMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/PostMessage.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/ReceiveArrayUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/ReceiveArrayUpdate.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/ReceiveNetMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/ReceiveNetMessage.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/ResetSyncNodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/ResetSyncNodes.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/ServerMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/ServerMessages.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/SetTreeErrored.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/SetTreeErrored.cpp -------------------------------------------------------------------------------- /src/game/hooks/Protections/ShouldBlockSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Protections/ShouldBlockSync.cpp -------------------------------------------------------------------------------- /src/game/hooks/Script/InitNativeTables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Script/InitNativeTables.cpp -------------------------------------------------------------------------------- /src/game/hooks/Script/RegisterCompappNatives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Script/RegisterCompappNatives.cpp -------------------------------------------------------------------------------- /src/game/hooks/Script/RunScriptThreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Script/RunScriptThreads.cpp -------------------------------------------------------------------------------- /src/game/hooks/Script/ScriptVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Script/ScriptVM.cpp -------------------------------------------------------------------------------- /src/game/hooks/Spoofing/GetDiscriminator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Spoofing/GetDiscriminator.cpp -------------------------------------------------------------------------------- /src/game/hooks/Spoofing/SendNetInfoToLobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Spoofing/SendNetInfoToLobby.cpp -------------------------------------------------------------------------------- /src/game/hooks/Spoofing/WriteNodeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Spoofing/WriteNodeData.cpp -------------------------------------------------------------------------------- /src/game/hooks/Spoofing/WritePlayerHealthData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Spoofing/WritePlayerHealthData.cpp -------------------------------------------------------------------------------- /src/game/hooks/Spoofing/WriteVPMData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Spoofing/WriteVPMData.cpp -------------------------------------------------------------------------------- /src/game/hooks/Toxic/BroadcastNetArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Toxic/BroadcastNetArray.cpp -------------------------------------------------------------------------------- /src/game/hooks/Toxic/IsNodeInScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Toxic/IsNodeInScope.cpp -------------------------------------------------------------------------------- /src/game/hooks/Toxic/SerializeIceSessionOfferRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Toxic/SerializeIceSessionOfferRequest.cpp -------------------------------------------------------------------------------- /src/game/hooks/Toxic/SetTreeTargetObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Toxic/SetTreeTargetObject.cpp -------------------------------------------------------------------------------- /src/game/hooks/Toxic/ShouldUseNodeCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Toxic/ShouldUseNodeCache.cpp -------------------------------------------------------------------------------- /src/game/hooks/Toxic/WriteSyncTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Toxic/WriteSyncTree.cpp -------------------------------------------------------------------------------- /src/game/hooks/Voice/DirectSoundCaptureCreate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Voice/DirectSoundCaptureCreate.cpp -------------------------------------------------------------------------------- /src/game/hooks/Voice/EnumerateAudioDevices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Voice/EnumerateAudioDevices.cpp -------------------------------------------------------------------------------- /src/game/hooks/Voice/SendVoicePacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Voice/SendVoicePacket.cpp -------------------------------------------------------------------------------- /src/game/hooks/Voice/WriteVoiceInfoData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/hooks/Voice/WriteVoiceInfoData.cpp -------------------------------------------------------------------------------- /src/game/pointers/Pointers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/pointers/Pointers.cpp -------------------------------------------------------------------------------- /src/game/pointers/Pointers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/pointers/Pointers.hpp -------------------------------------------------------------------------------- /src/game/rdr/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Entity.cpp -------------------------------------------------------------------------------- /src/game/rdr/Entity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Entity.hpp -------------------------------------------------------------------------------- /src/game/rdr/Enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Enums.hpp -------------------------------------------------------------------------------- /src/game/rdr/GraphicsOptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/GraphicsOptions.hpp -------------------------------------------------------------------------------- /src/game/rdr/Natives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Natives.hpp -------------------------------------------------------------------------------- /src/game/rdr/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Network.cpp -------------------------------------------------------------------------------- /src/game/rdr/Network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Network.hpp -------------------------------------------------------------------------------- /src/game/rdr/Nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Nodes.cpp -------------------------------------------------------------------------------- /src/game/rdr/Nodes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Nodes.hpp -------------------------------------------------------------------------------- /src/game/rdr/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Object.cpp -------------------------------------------------------------------------------- /src/game/rdr/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Object.hpp -------------------------------------------------------------------------------- /src/game/rdr/Packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Packet.cpp -------------------------------------------------------------------------------- /src/game/rdr/Packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Packet.hpp -------------------------------------------------------------------------------- /src/game/rdr/Ped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Ped.cpp -------------------------------------------------------------------------------- /src/game/rdr/Ped.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Ped.hpp -------------------------------------------------------------------------------- /src/game/rdr/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Player.cpp -------------------------------------------------------------------------------- /src/game/rdr/Player.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Player.hpp -------------------------------------------------------------------------------- /src/game/rdr/Pools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Pools.cpp -------------------------------------------------------------------------------- /src/game/rdr/Pools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Pools.hpp -------------------------------------------------------------------------------- /src/game/rdr/RenderingInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/RenderingInfo.hpp -------------------------------------------------------------------------------- /src/game/rdr/ScriptFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/ScriptFunction.cpp -------------------------------------------------------------------------------- /src/game/rdr/ScriptFunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/ScriptFunction.hpp -------------------------------------------------------------------------------- /src/game/rdr/ScriptGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/ScriptGlobal.cpp -------------------------------------------------------------------------------- /src/game/rdr/ScriptGlobal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/ScriptGlobal.hpp -------------------------------------------------------------------------------- /src/game/rdr/ScriptLocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/ScriptLocal.cpp -------------------------------------------------------------------------------- /src/game/rdr/ScriptLocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/ScriptLocal.hpp -------------------------------------------------------------------------------- /src/game/rdr/Scripts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Scripts.cpp -------------------------------------------------------------------------------- /src/game/rdr/Scripts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Scripts.hpp -------------------------------------------------------------------------------- /src/game/rdr/Vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Vehicle.cpp -------------------------------------------------------------------------------- /src/game/rdr/Vehicle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/Vehicle.hpp -------------------------------------------------------------------------------- /src/game/rdr/data/AmmoTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/data/AmmoTypes.hpp -------------------------------------------------------------------------------- /src/game/rdr/data/Emotes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/data/Emotes.hpp -------------------------------------------------------------------------------- /src/game/rdr/data/JailTeleports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/data/JailTeleports.hpp -------------------------------------------------------------------------------- /src/game/rdr/data/MessageTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/data/MessageTypes.hpp -------------------------------------------------------------------------------- /src/game/rdr/data/PedModels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/data/PedModels.hpp -------------------------------------------------------------------------------- /src/game/rdr/data/ScriptNames.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/data/ScriptNames.hpp -------------------------------------------------------------------------------- /src/game/rdr/data/StableEvents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/data/StableEvents.hpp -------------------------------------------------------------------------------- /src/game/rdr/data/StackSizes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/data/StackSizes.hpp -------------------------------------------------------------------------------- /src/game/rdr/data/TickerEvents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/data/TickerEvents.hpp -------------------------------------------------------------------------------- /src/game/rdr/data/Trains.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/data/Trains.hpp -------------------------------------------------------------------------------- /src/game/rdr/data/VehicleModels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/data/VehicleModels.hpp -------------------------------------------------------------------------------- /src/game/rdr/data/WeaponTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/data/WeaponTypes.hpp -------------------------------------------------------------------------------- /src/game/rdr/invoker/Crossmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/invoker/Crossmap.hpp -------------------------------------------------------------------------------- /src/game/rdr/invoker/GenerateNatives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/invoker/GenerateNatives.py -------------------------------------------------------------------------------- /src/game/rdr/invoker/Invoker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/invoker/Invoker.cpp -------------------------------------------------------------------------------- /src/game/rdr/invoker/Invoker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/invoker/Invoker.hpp -------------------------------------------------------------------------------- /src/game/rdr/invoker/natives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/game/rdr/invoker/natives.json -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/util/Chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/Chat.cpp -------------------------------------------------------------------------------- /src/util/Chat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/Chat.hpp -------------------------------------------------------------------------------- /src/util/GraphicsValue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/GraphicsValue.hpp -------------------------------------------------------------------------------- /src/util/Helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/Helpers.hpp -------------------------------------------------------------------------------- /src/util/Joaat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/Joaat.cpp -------------------------------------------------------------------------------- /src/util/Joaat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/Joaat.hpp -------------------------------------------------------------------------------- /src/util/Math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/Math.hpp -------------------------------------------------------------------------------- /src/util/Protobufs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/Protobufs.cpp -------------------------------------------------------------------------------- /src/util/Protobufs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/Protobufs.hpp -------------------------------------------------------------------------------- /src/util/Rewards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/Rewards.cpp -------------------------------------------------------------------------------- /src/util/Rewards.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/Rewards.hpp -------------------------------------------------------------------------------- /src/util/SpawnObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/SpawnObject.cpp -------------------------------------------------------------------------------- /src/util/SpawnObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/SpawnObject.hpp -------------------------------------------------------------------------------- /src/util/Storage/Spoofing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/Storage/Spoofing.hpp -------------------------------------------------------------------------------- /src/util/StrToHex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/StrToHex.hpp -------------------------------------------------------------------------------- /src/util/VehicleSpawner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/VehicleSpawner.hpp -------------------------------------------------------------------------------- /src/util/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/network.hpp -------------------------------------------------------------------------------- /src/util/teleport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YimMenu/HorseMenu/HEAD/src/util/teleport.hpp --------------------------------------------------------------------------------