├── LICENSE ├── LastDesirePro196 ├── LastDesirePro.sln └── LastDesirePro │ ├── Attributes │ ├── Component.cs │ ├── Replacement.cs │ └── Save.cs │ ├── ColorPicker │ └── GUIColorPicker.cs │ ├── DrawMenu │ ├── AssetsLoad.cs │ ├── Convertor.cs │ ├── Drawing.cs │ ├── MenuFix.cs │ ├── Prefab.cs │ └── Vectors.cs │ ├── Hook │ ├── Attributes │ │ └── Replacement.cs │ └── Replacement │ │ ├── ReplacementManager.cs │ │ ├── ReplacementUtilities.cs │ │ └── ReplacementWrapper.cs │ ├── Inj.cs │ ├── LastDesirePro.csproj │ ├── Main │ ├── AimBot │ │ └── AimBot.cs │ ├── Automatic │ │ └── Automatic.cs │ ├── Misc │ │ └── Misc.cs │ ├── Objects │ │ ├── AutoTurrets.cs │ │ ├── Bear.cs │ │ ├── Bradley.cs │ │ ├── Building.cs │ │ ├── Collectible.cs │ │ ├── Container.cs │ │ ├── Container1.cs │ │ ├── Flame.cs │ │ ├── Helicopter.cs │ │ ├── Mine.cs │ │ ├── ObjectsCheck.Storage.cs │ │ ├── ObjectsCheck.Supply.cs │ │ ├── ObjectsCheck.cs │ │ ├── OreMarker.cs │ │ ├── Resource.cs │ │ ├── Stash.cs │ │ └── Trap.cs │ ├── Radar 2D │ │ └── Radar.cs │ └── Visuals │ │ ├── Animals.cs │ │ ├── DrawOnlyPlayers.cs │ │ ├── FullDrawing.cs │ │ ├── Home.cs │ │ ├── Others.cs │ │ ├── Players.cs │ │ └── Resources.cs │ ├── Menu │ ├── CFG │ │ ├── AimBotConfig.cs │ │ ├── AutomaticConfig.cs │ │ ├── MiscConfig.cs │ │ ├── RadarConfig.cs │ │ └── VisuаlCоnfig.cs │ ├── ConfigManager.cs │ ├── MainMenu.cs │ └── MenuTab │ │ ├── AimBot.cs │ │ ├── Automatic.cs │ │ ├── MainTab.cs │ │ ├── Misc.cs │ │ ├── Other.cs │ │ ├── Radar.cs │ │ └── Visual.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── Replacement │ ├── ReplacementManager.cs │ ├── ReplacementUtilities.cs │ └── ReplacementWrapper.cs │ └── Resources │ ├── 10.wav │ ├── 5.wav │ ├── 8.wav │ └── killsound.wav ├── Lib ├── Assembly-CSharp-firstpass.dll ├── Assembly-CSharp.dll ├── Facepunch.Console.dll ├── Facepunch.Input.dll ├── Facepunch.Network.dll ├── Facepunch.Steamworks.dll ├── Facepunch.System.dll ├── Facepunch.Unity.dll ├── Facepunch.UnityEngine.dll ├── Newtonsoft.Json.dll ├── Rust.Data.dll ├── Rust.Global.dll ├── System.Runtime.Serialization.dll ├── UnityEngine.UI.dll └── UnityEngine.dll └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LICENSE -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro.sln -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Attributes/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Attributes/Component.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Attributes/Replacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Attributes/Replacement.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Attributes/Save.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Attributes/Save.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/ColorPicker/GUIColorPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/ColorPicker/GUIColorPicker.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/DrawMenu/AssetsLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/DrawMenu/AssetsLoad.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/DrawMenu/Convertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/DrawMenu/Convertor.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/DrawMenu/Drawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/DrawMenu/Drawing.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/DrawMenu/MenuFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/DrawMenu/MenuFix.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/DrawMenu/Prefab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/DrawMenu/Prefab.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/DrawMenu/Vectors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/DrawMenu/Vectors.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Hook/Attributes/Replacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Hook/Attributes/Replacement.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Hook/Replacement/ReplacementManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Hook/Replacement/ReplacementManager.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Hook/Replacement/ReplacementUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Hook/Replacement/ReplacementUtilities.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Hook/Replacement/ReplacementWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Hook/Replacement/ReplacementWrapper.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Inj.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Inj.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/LastDesirePro.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/LastDesirePro.csproj -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/AimBot/AimBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/AimBot/AimBot.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Automatic/Automatic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Automatic/Automatic.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Misc/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Misc/Misc.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/AutoTurrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/AutoTurrets.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/Bear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/Bear.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/Bradley.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/Bradley.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/Building.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/Building.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/Collectible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/Collectible.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/Container.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/Container1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/Container1.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/Flame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/Flame.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/Helicopter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/Helicopter.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/Mine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/Mine.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/ObjectsCheck.Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/ObjectsCheck.Storage.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/ObjectsCheck.Supply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/ObjectsCheck.Supply.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/ObjectsCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/ObjectsCheck.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/OreMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/OreMarker.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/Resource.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/Stash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/Stash.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Objects/Trap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Objects/Trap.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Radar 2D/Radar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Radar 2D/Radar.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Visuals/Animals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Visuals/Animals.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Visuals/DrawOnlyPlayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Visuals/DrawOnlyPlayers.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Visuals/FullDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Visuals/FullDrawing.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Visuals/Home.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Visuals/Home.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Visuals/Others.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Visuals/Others.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Visuals/Players.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Visuals/Players.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Main/Visuals/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Main/Visuals/Resources.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Menu/CFG/AimBotConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Menu/CFG/AimBotConfig.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Menu/CFG/AutomaticConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Menu/CFG/AutomaticConfig.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Menu/CFG/MiscConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Menu/CFG/MiscConfig.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Menu/CFG/RadarConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Menu/CFG/RadarConfig.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Menu/CFG/VisuаlCоnfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Menu/CFG/VisuаlCоnfig.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Menu/ConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Menu/ConfigManager.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Menu/MainMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Menu/MainMenu.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Menu/MenuTab/AimBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Menu/MenuTab/AimBot.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Menu/MenuTab/Automatic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Menu/MenuTab/Automatic.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Menu/MenuTab/MainTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Menu/MenuTab/MainTab.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Menu/MenuTab/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Menu/MenuTab/Misc.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Menu/MenuTab/Other.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Menu/MenuTab/Other.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Menu/MenuTab/Radar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Menu/MenuTab/Radar.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Menu/MenuTab/Visual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Menu/MenuTab/Visual.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Properties/Resources.resx -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Replacement/ReplacementManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Replacement/ReplacementManager.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Replacement/ReplacementUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Replacement/ReplacementUtilities.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Replacement/ReplacementWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Replacement/ReplacementWrapper.cs -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Resources/10.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Resources/10.wav -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Resources/5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Resources/5.wav -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Resources/8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Resources/8.wav -------------------------------------------------------------------------------- /LastDesirePro196/LastDesirePro/Resources/killsound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/LastDesirePro196/LastDesirePro/Resources/killsound.wav -------------------------------------------------------------------------------- /Lib/Assembly-CSharp-firstpass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/Assembly-CSharp-firstpass.dll -------------------------------------------------------------------------------- /Lib/Assembly-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/Assembly-CSharp.dll -------------------------------------------------------------------------------- /Lib/Facepunch.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/Facepunch.Console.dll -------------------------------------------------------------------------------- /Lib/Facepunch.Input.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/Facepunch.Input.dll -------------------------------------------------------------------------------- /Lib/Facepunch.Network.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/Facepunch.Network.dll -------------------------------------------------------------------------------- /Lib/Facepunch.Steamworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/Facepunch.Steamworks.dll -------------------------------------------------------------------------------- /Lib/Facepunch.System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/Facepunch.System.dll -------------------------------------------------------------------------------- /Lib/Facepunch.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/Facepunch.Unity.dll -------------------------------------------------------------------------------- /Lib/Facepunch.UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/Facepunch.UnityEngine.dll -------------------------------------------------------------------------------- /Lib/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Lib/Rust.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/Rust.Data.dll -------------------------------------------------------------------------------- /Lib/Rust.Global.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/Rust.Global.dll -------------------------------------------------------------------------------- /Lib/System.Runtime.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/System.Runtime.Serialization.dll -------------------------------------------------------------------------------- /Lib/UnityEngine.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/UnityEngine.UI.dll -------------------------------------------------------------------------------- /Lib/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/Lib/UnityEngine.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftSolutions-dev/LastDesirePro_196devblog/HEAD/README.md --------------------------------------------------------------------------------