├── .gitignore ├── CSSharpFixes.sln.DotSettings ├── CSSharpFixes.sln.DotSettings.user ├── LICENSE ├── README.md ├── STFixes.sln ├── STFixes ├── ConVars.cs ├── Config │ ├── Configuration.cs │ └── ModuleInformation.cs ├── Detours │ ├── BaseHandler.cs │ ├── ProcessUserCmdsHandler.cs │ └── TriggerPushTouchHandler.cs ├── Enums │ └── Detours │ │ └── Mode.cs ├── Extensions │ ├── CBaseEntityExtensions.cs │ ├── CBaseTriggerExtensions.cs │ ├── CGameSceneNodeExtensions.cs │ └── PlayerExtensions.cs ├── Fixes │ ├── BaseFix.cs │ ├── BotNavIgnoreFix.cs │ ├── Interfaces │ │ └── ITickable.cs │ ├── SubTickMovementFix.cs │ ├── TriggerPushFix.cs │ └── WaterFix.cs ├── Hooks.cs ├── Injection.cs ├── Managers │ ├── DetourManager.cs │ ├── EventManager.cs │ ├── FixManager.cs │ ├── GameDataManager.cs │ └── PatchManager.cs ├── Memory │ ├── DetourMemoryFunctions.cs │ ├── UnixMemoryUtils.cs │ └── WinMemoryUtils.cs ├── Models │ ├── Detour.cs │ └── Patch.cs ├── STFixes.cs ├── STFixes.csproj ├── Schemas │ ├── Interfaces │ │ └── ISizeable.cs │ └── Protobuf │ │ ├── CBaseUserCmdPB.cs │ │ ├── CSubTickMoveStep.cs │ │ ├── CUserCmd.cs │ │ └── Interop │ │ ├── Rep.cs │ │ └── RepeatedPtrField.cs └── Utils.cs └── gamedata └── cssharpfixes.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/.gitignore -------------------------------------------------------------------------------- /CSSharpFixes.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/CSSharpFixes.sln.DotSettings -------------------------------------------------------------------------------- /CSSharpFixes.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/CSSharpFixes.sln.DotSettings.user -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/README.md -------------------------------------------------------------------------------- /STFixes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes.sln -------------------------------------------------------------------------------- /STFixes/ConVars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/ConVars.cs -------------------------------------------------------------------------------- /STFixes/Config/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Config/Configuration.cs -------------------------------------------------------------------------------- /STFixes/Config/ModuleInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Config/ModuleInformation.cs -------------------------------------------------------------------------------- /STFixes/Detours/BaseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Detours/BaseHandler.cs -------------------------------------------------------------------------------- /STFixes/Detours/ProcessUserCmdsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Detours/ProcessUserCmdsHandler.cs -------------------------------------------------------------------------------- /STFixes/Detours/TriggerPushTouchHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Detours/TriggerPushTouchHandler.cs -------------------------------------------------------------------------------- /STFixes/Enums/Detours/Mode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Enums/Detours/Mode.cs -------------------------------------------------------------------------------- /STFixes/Extensions/CBaseEntityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Extensions/CBaseEntityExtensions.cs -------------------------------------------------------------------------------- /STFixes/Extensions/CBaseTriggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Extensions/CBaseTriggerExtensions.cs -------------------------------------------------------------------------------- /STFixes/Extensions/CGameSceneNodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Extensions/CGameSceneNodeExtensions.cs -------------------------------------------------------------------------------- /STFixes/Extensions/PlayerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Extensions/PlayerExtensions.cs -------------------------------------------------------------------------------- /STFixes/Fixes/BaseFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Fixes/BaseFix.cs -------------------------------------------------------------------------------- /STFixes/Fixes/BotNavIgnoreFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Fixes/BotNavIgnoreFix.cs -------------------------------------------------------------------------------- /STFixes/Fixes/Interfaces/ITickable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Fixes/Interfaces/ITickable.cs -------------------------------------------------------------------------------- /STFixes/Fixes/SubTickMovementFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Fixes/SubTickMovementFix.cs -------------------------------------------------------------------------------- /STFixes/Fixes/TriggerPushFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Fixes/TriggerPushFix.cs -------------------------------------------------------------------------------- /STFixes/Fixes/WaterFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Fixes/WaterFix.cs -------------------------------------------------------------------------------- /STFixes/Hooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Hooks.cs -------------------------------------------------------------------------------- /STFixes/Injection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Injection.cs -------------------------------------------------------------------------------- /STFixes/Managers/DetourManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Managers/DetourManager.cs -------------------------------------------------------------------------------- /STFixes/Managers/EventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Managers/EventManager.cs -------------------------------------------------------------------------------- /STFixes/Managers/FixManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Managers/FixManager.cs -------------------------------------------------------------------------------- /STFixes/Managers/GameDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Managers/GameDataManager.cs -------------------------------------------------------------------------------- /STFixes/Managers/PatchManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Managers/PatchManager.cs -------------------------------------------------------------------------------- /STFixes/Memory/DetourMemoryFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Memory/DetourMemoryFunctions.cs -------------------------------------------------------------------------------- /STFixes/Memory/UnixMemoryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Memory/UnixMemoryUtils.cs -------------------------------------------------------------------------------- /STFixes/Memory/WinMemoryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Memory/WinMemoryUtils.cs -------------------------------------------------------------------------------- /STFixes/Models/Detour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Models/Detour.cs -------------------------------------------------------------------------------- /STFixes/Models/Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Models/Patch.cs -------------------------------------------------------------------------------- /STFixes/STFixes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/STFixes.cs -------------------------------------------------------------------------------- /STFixes/STFixes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/STFixes.csproj -------------------------------------------------------------------------------- /STFixes/Schemas/Interfaces/ISizeable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Schemas/Interfaces/ISizeable.cs -------------------------------------------------------------------------------- /STFixes/Schemas/Protobuf/CBaseUserCmdPB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Schemas/Protobuf/CBaseUserCmdPB.cs -------------------------------------------------------------------------------- /STFixes/Schemas/Protobuf/CSubTickMoveStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Schemas/Protobuf/CSubTickMoveStep.cs -------------------------------------------------------------------------------- /STFixes/Schemas/Protobuf/CUserCmd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Schemas/Protobuf/CUserCmd.cs -------------------------------------------------------------------------------- /STFixes/Schemas/Protobuf/Interop/Rep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Schemas/Protobuf/Interop/Rep.cs -------------------------------------------------------------------------------- /STFixes/Schemas/Protobuf/Interop/RepeatedPtrField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Schemas/Protobuf/Interop/RepeatedPtrField.cs -------------------------------------------------------------------------------- /STFixes/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/STFixes/Utils.cs -------------------------------------------------------------------------------- /gamedata/cssharpfixes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcnoob/STFixes/HEAD/gamedata/cssharpfixes.json --------------------------------------------------------------------------------