├── .gitignore ├── .idea └── .idea.SOTF_ModMenu │ └── .idea │ ├── .gitignore │ ├── encodings.xml │ ├── indexLayout.xml │ └── vcs.xml ├── LICENSE ├── README.md ├── SOTF_ModMenu.sln ├── SOTF_ModMenu ├── Cheats │ ├── ESP │ │ └── ESP.cs │ ├── Other │ │ ├── InfiniteLogs.cs │ │ └── OgMenuMusic.cs │ ├── Player │ │ ├── AlwaysRested.cs │ │ ├── GodMode.cs │ │ ├── InfAmmo.cs │ │ ├── InfHeal.cs │ │ ├── InfLungCapacity.cs │ │ ├── InfStamina.cs │ │ ├── NoCold.cs │ │ ├── NoFallDamage.cs │ │ ├── NoHunger.cs │ │ ├── NoThirst.cs │ │ └── SpeedyRun.cs │ └── World │ │ ├── CaveLight.cs │ │ ├── InfiniteBuild.cs │ │ └── InstantBuild.cs ├── Libs │ ├── 0Harmony.dll │ ├── BepInEx.Core.dll │ ├── BepInEx.Unity.IL2CPP.dll │ ├── Endnight.dll │ ├── Il2CppInterop.Runtime.dll │ ├── Il2CppSystem.Core.dll │ ├── Il2Cppmscorlib.dll │ ├── Sons.Ai.Vail.dll │ ├── Sons.Cinematics.dll │ ├── Sons.Construction.dll │ ├── Sons.Electricity.dll │ ├── Sons.FMOD.dll │ ├── Sons.Gui.dll │ ├── Sons.Input.dll │ ├── Sons.Item.dll │ ├── Sons.StatSystem.dll │ ├── Sons.dll │ ├── Unity.RenderPipelines.HighDefinition.Runtime.dll │ ├── UnityEngine.CoreModule.dll │ ├── UnityEngine.IMGUIModule.dll │ ├── UnityEngine.InputLegacyModule.dll │ └── UnityEngine.TextRenderingModule.dll ├── Main.cs ├── Plugin.cs ├── SOTF_ModMenu.csproj └── UI │ ├── UIHelper.cs │ └── UIManager.cs └── global.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.SOTF_ModMenu/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/.idea/.idea.SOTF_ModMenu/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.SOTF_ModMenu/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/.idea/.idea.SOTF_ModMenu/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.SOTF_ModMenu/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/.idea/.idea.SOTF_ModMenu/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.SOTF_ModMenu/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/.idea/.idea.SOTF_ModMenu/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/README.md -------------------------------------------------------------------------------- /SOTF_ModMenu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu.sln -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/ESP/ESP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/ESP/ESP.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/Other/InfiniteLogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/Other/InfiniteLogs.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/Other/OgMenuMusic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/Other/OgMenuMusic.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/Player/AlwaysRested.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/Player/AlwaysRested.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/Player/GodMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/Player/GodMode.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/Player/InfAmmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/Player/InfAmmo.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/Player/InfHeal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/Player/InfHeal.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/Player/InfLungCapacity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/Player/InfLungCapacity.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/Player/InfStamina.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/Player/InfStamina.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/Player/NoCold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/Player/NoCold.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/Player/NoFallDamage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/Player/NoFallDamage.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/Player/NoHunger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/Player/NoHunger.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/Player/NoThirst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/Player/NoThirst.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/Player/SpeedyRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/Player/SpeedyRun.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/World/CaveLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/World/CaveLight.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/World/InfiniteBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/World/InfiniteBuild.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Cheats/World/InstantBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Cheats/World/InstantBuild.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/0Harmony.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/BepInEx.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/BepInEx.Core.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/BepInEx.Unity.IL2CPP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/BepInEx.Unity.IL2CPP.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Endnight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Endnight.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Il2CppInterop.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Il2CppInterop.Runtime.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Il2CppSystem.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Il2CppSystem.Core.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Il2Cppmscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Il2Cppmscorlib.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Sons.Ai.Vail.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Sons.Ai.Vail.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Sons.Cinematics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Sons.Cinematics.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Sons.Construction.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Sons.Construction.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Sons.Electricity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Sons.Electricity.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Sons.FMOD.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Sons.FMOD.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Sons.Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Sons.Gui.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Sons.Input.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Sons.Input.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Sons.Item.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Sons.Item.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Sons.StatSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Sons.StatSystem.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Sons.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Sons.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/Unity.RenderPipelines.HighDefinition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/Unity.RenderPipelines.HighDefinition.Runtime.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/UnityEngine.CoreModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/UnityEngine.CoreModule.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/UnityEngine.IMGUIModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/UnityEngine.IMGUIModule.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/UnityEngine.InputLegacyModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/UnityEngine.InputLegacyModule.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Libs/UnityEngine.TextRenderingModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Libs/UnityEngine.TextRenderingModule.dll -------------------------------------------------------------------------------- /SOTF_ModMenu/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Main.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/Plugin.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/SOTF_ModMenu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/SOTF_ModMenu.csproj -------------------------------------------------------------------------------- /SOTF_ModMenu/UI/UIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/UI/UIHelper.cs -------------------------------------------------------------------------------- /SOTF_ModMenu/UI/UIManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/SOTF_ModMenu/UI/UIManager.cs -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolf11221/SOTF_ModMenu/HEAD/global.json --------------------------------------------------------------------------------