From 3b93ae14c247b3e40e87e09a50d514c50684202b Mon Sep 17 00:00:00 2001 From: lorexcold <123798868+Michael-Codelabs@users.noreply.github.com> Date: Tue, 16 Dec 2025 13:57:28 +0100 Subject: [PATCH] Add setup instructions for Stationeers mod project Added setup instructions for creating a Stationeers mod. --- README.md | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 93aee86..06bf1cf 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,23 @@ -# ExamplePatchMod -Example Patch Mod For BepInEx & Stationeers +# Setup + +Follow these steps to prepare your Stationeers mod project: + +1. **Download the Repository** + - Either download the ZIP or clone the repo to your PC. + +2. **Rename the Folder** + - Change the folder name to your mod’s name. + *Example:* `MyStationeersMod` + +3. **Open the Solution** + - Open the `.sln` file in Visual Studio. + +4. **Update Project References** + - In the **Solution Explorer**, press `CTRL + A` to select all files. + - Press `CTRL + F` to open the **Find and Replace** window. + - Find all instances of `ExamplePatchMod` and replace them with your mod name, e.g., `MyStationeersMod`. + - Click **Replace All**. + +5. **Update Project Properties** + - On the top menu, go to **Project → [YourModName] Properties**. + - Change both the **Assembly Name** and **Default Namespace** from `ExamplePatchMod` to your mod name.