From d2aebe0ac1b3321153d4dee218f1d9ff20ec5798 Mon Sep 17 00:00:00 2001 From: Chaosyr <102002463+Chaosyr@users.noreply.github.com> Date: Mon, 27 Apr 2026 20:42:12 -0400 Subject: [PATCH 01/12] Update Website Link to Org GitHub URL --- thunderstore.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thunderstore.toml b/thunderstore.toml index 021028f9..7daa74f9 100644 --- a/thunderstore.toml +++ b/thunderstore.toml @@ -6,7 +6,7 @@ namespace = "API_dev" name = "API" versionNumber = "2.15.2" description = "The de-facto standard core API for all Inscryption mods. This lets you create new cards, abilities, challenges, map nodes, starter decks, and more." -websiteUrl = "https://github.com/ScottWilson0903/InscryptionAPI" +websiteUrl = "https://github.com/InscryptionModding/InscryptionAPI/" containsNsfwContent = false [package.dependencies] From 74f2c42790f8e15d01d0958ce1426fa1b193ff7a Mon Sep 17 00:00:00 2001 From: Chaosyr <102002463+Chaosyr@users.noreply.github.com> Date: Wed, 29 Apr 2026 21:31:20 -0400 Subject: [PATCH 02/12] Add Gamepass Installation Guide --- docs/wiki/getting_started.md | 38 +++++++++++++++++++++++++++++++----- 1 file changed, 33 insertions(+), 5 deletions(-) diff --git a/docs/wiki/getting_started.md b/docs/wiki/getting_started.md index 4d08e674..1ae4d91c 100644 --- a/docs/wiki/getting_started.md +++ b/docs/wiki/getting_started.md @@ -13,15 +13,43 @@ If you have issues with ModmManagers head to one of these discords; * **Gale Mod Manager Support Discord:** [Here](https://discord.gg/sfuWXRfeTt) ### Installing Manually -1. Install [BepInEx](https://thunderstore.io/package/download/BepInEx/BepInExPack_Inscryption/5.4.1902/) by pressing 'Manual Download' and extract the contents into a folder. **Do not extract into the game folder!** -2. Move the contents of the 'BepInExPack_Inscryption' folder into the game folder (where the game executable is). +1. Install [BepInEx](https://thunderstore.io/package/download/BepInEx/BepInExPack_Inscryption/5.4.1902/) by pressing `Manual Download` and extract the contents into a folder. **Do not extract into the game folder!** +2. Move the contents of the `BepInExPack_Inscryption` folder into the game folder (where the game executable is; usually found here: `C:\Program Files (x86)\Steam\steamapps\common\Inscryption`). 3. Run the game. If everything was done correctly, you will see the BepInEx console appear on your desktop. Close the game after it finishes loading. 4. Install [MonoModLoader](https://inscryption.thunderstore.io/package/BepInEx/MonoMod_Loader_Inscryption/) and extract the contents into a folder. -5. Move the contents of the 'patchers' folder into 'BepInEx/patchers' (If any of the mentioned BepInEx folders don't exist, just create them). +5. Move the contents of the `patchers` folder into `BepInEx/patchers` (If any of the mentioned BepInEx folders don't exist, just create them). 6. Install [Inscryption API](https://inscryption.thunderstore.io/package/API_dev/API/) and extract the contents into a folder. -7. Move the contents of the 'plugins' folder into 'BepInEx/plugins' and the contents of the 'monomod' folder into the 'BepInEx/monomod' folder. +7. Move the contents of the `plugins` folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder. 8. Run the game again. If everything runs correctly, a message will appear in the console telling you that the API was loaded. -9. For any additional mods create a new subfolder, it can be called anything and extract the zips archive into it and if there is a BepInEx folder within the zip instead drop the contents of that folder into the BepInEx root for the modding instance. EX; +9. For any additional mods create a new subfolder, it can be called anything and extract the zips archive into it and if there is a `BepInEx` folder within the zip instead drop the contents of that folder into the `BepInEx` root for the modding instance. EX; +``` +BepInEx // These go within the BepInEx root folder +|-- config +|-- patchers +|-- plugins +|-- monomod +|-- core +plugins // Files within go into the created plugin subfolder that was created for the mod +|-- Art +|-- Scripts +|-- MyMod.dll +manifest.json --| +README.md |-- These can be ignored but if you want to keep them put them in the plugin subfolder +CHANGELOG.md |-- +icon.png --| +``` +10. Run the game once more and everything should be correct and working. + +### Installing Manually (XBOX Game-Pass) +1. Install [BepInEx]() by pressing `BepInEx_x64_5.4.21.0.zip` and extract the contents into a folder. +2. Move the contents into the game folder (where the game executable is; usually found here: `C:\XboxGames\D30AC640-4EC1-4D15-96F3-384052F09699\Content`). +3. Run the game. If everything was done correctly, you will see the BepInEx console appear on your desktop. Close the game after it finishes loading. (psst. Enable Logging in `BepInEx/config`) +4. Install [MonoModLoader]() and extract the contents into a folder. +5. Move the contents of the `patchers` folder into `BepInEx/patchers` (If any of the mentioned BepInEx folders don't exist, just create them). +6. Install [Inscryption API]() and extract the contents into a folder. +7. Move the contents of the 'plugins' folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder. +8. Run the game again. If everything runs correctly, a message will appear in the console telling you that the API was loaded. +9. For any additional mods create a new subfolder, it can be called anything and extract the zips archive into it and if there is a `BepInEx` folder within the zip instead drop the contents of that folder into the `BepInEx` root for the modding instance. EX; ``` BepInEx // These go within the BepInEx root folder |-- config From 0db5e1d231c102b16a7a9256c3d8a2d6fb86d416 Mon Sep 17 00:00:00 2001 From: Chaosyr <102002463+Chaosyr@users.noreply.github.com> Date: Sat, 2 May 2026 22:24:25 -0400 Subject: [PATCH 03/12] Fix link in Mod Manager Setup Instructions --- docs/wiki/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/wiki/getting_started.md b/docs/wiki/getting_started.md index 1ae4d91c..cf2aeb57 100644 --- a/docs/wiki/getting_started.md +++ b/docs/wiki/getting_started.md @@ -4,7 +4,7 @@ To begin, we'll go over how to install BepInEx, the framework all Inscryption mo ### Installing with a Mod Manager 1. Download and install [Thunderstore Mod Manager](https://www.overwolf.com/app/Thunderstore-Thunderstore_Mod_Manager), [Gale](https://thunderstore.io/c/inscryption/p/Kesomannen/GaleModManager/) or [r2modman](https://thunderstore.io/c/inscryption/p/ebkr/r2modman/). -2. Click the **Install with Mod Manager** button on the top of [BepInEx's](https://thunderstore.io/package/download/BepInEx/BepInExPack_Inscryption/5.4.1902/) page. +2. Click the **Install with Mod Manager** button on the top of [BepInEx's](https://thunderstore.io/c/inscryption/p/BepInEx/BepInExPack_Inscryption/) page. 3. Run the game via the mod manager. If you have issues with ModmManagers head to one of these discords; From d92ac2a54c7ae5f58f4877046d89aabeebf05fe0 Mon Sep 17 00:00:00 2001 From: Chaosyr <102002463+Chaosyr@users.noreply.github.com> Date: Sat, 2 May 2026 22:43:18 -0400 Subject: [PATCH 04/12] Eliminate Smart Quotes on the Steam Deck Guide --- docs/wiki/getting_started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/wiki/getting_started.md b/docs/wiki/getting_started.md index cf2aeb57..5ee49dc2 100644 --- a/docs/wiki/getting_started.md +++ b/docs/wiki/getting_started.md @@ -69,13 +69,13 @@ icon.png --| 10. Run the game once more and everything should be correct and working. ### Installing on the Steam Deck -1. Download [r2modman](https://thunderstore.io/c/inscryption/p/ebkr/r2modman/) on the Steam Deck’s Desktop Mode and open it from its download using its `AppImage` file. -2. Download the mods you plan on using and their dependencies.. +1. Download [r2modman](https://thunderstore.io/c/inscryption/p/ebkr/r2modman/) on the Steam Deck's Desktop Mode and open it from its download using its `AppImage` file. +2. Download the mods you plan on using and their dependencies. 3. Go to the setting of the profile you are using for the mods and click `Browse Profile Folder`. 4. Copy the BepInEx folder, then go to Steam and open Inscryption's Properties menu 5. Go to `Installed Files` click `Browse` to open the folder containing Inscryption's local files; paste the BepInEx folder there. 6. Enter Gaming Mode and check 'Force the use of a specific Steam Play compatibility tool' in the Properties menu under `Compatibility`. -7. Go to the launch parameters and enter `WINEDLLOVERRIDES=“winhttp.dll=n,b” %command%`. +7. Go to the launch parameters and enter `WINEDLLOVERRIDES="winhttp.dll=n,b" %command%`. 8. Open Inscryption. If everything was done correctly, you should see a console appear on your screen. ### Mac & Linux From cd70d28d6c77929c105d65861c28acc61a93953a Mon Sep 17 00:00:00 2001 From: Chaosyr <102002463+Chaosyr@users.noreply.github.com> Date: Sat, 2 May 2026 22:44:31 -0400 Subject: [PATCH 05/12] Update Guides in the README.md --- README.md | 48 ++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 38 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0794a448..99c876c4 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ To begin, we'll go over how to install BepInEx, the framework all Inscryption mo ### Installing with a Mod Manager 1. Download and install [Thunderstore Mod Manager](https://www.overwolf.com/app/Thunderstore-Thunderstore_Mod_Manager), [Gale](https://thunderstore.io/c/inscryption/p/Kesomannen/GaleModManager/) or [r2modman](https://thunderstore.io/c/inscryption/p/ebkr/r2modman/). -2. Click the **Install with Mod Manager** button on the top of [BepInEx's](https://thunderstore.io/package/download/BepInEx/BepInExPack_Inscryption/5.4.1902/) page. +2. Click the **Install with Mod Manager** button on the top of [BepInEx's](https://thunderstore.io/c/inscryption/p/BepInEx/BepInExPack_Inscryption/) page. 3. Run the game via the mod manager. If you have issues with ModmManagers head to one of these discords; @@ -40,15 +40,43 @@ If you have issues with ModmManagers head to one of these discords; * **Gale Mod Manager Support Discord:** [Here](https://discord.gg/sfuWXRfeTt) ### Installing Manually -1. Install [BepInEx](https://thunderstore.io/package/download/BepInEx/BepInExPack_Inscryption/5.4.1902/) by pressing 'Manual Download' and extract the contents into a folder. **Do not extract into the game folder!** -2. Move the contents of the 'BepInExPack_Inscryption' folder into the game folder (where the game executable is). +1. Install [BepInEx](https://thunderstore.io/package/download/BepInEx/BepInExPack_Inscryption/5.4.1902/) by pressing `Manual Download` and extract the contents into a folder. **Do not extract into the game folder!** +2. Move the contents of the `BepInExPack_Inscryption` folder into the game folder (where the game executable is; usually found here: `C:\Program Files (x86)\Steam\steamapps\common\Inscryption`). 3. Run the game. If everything was done correctly, you will see the BepInEx console appear on your desktop. Close the game after it finishes loading. 4. Install [MonoModLoader](https://inscryption.thunderstore.io/package/BepInEx/MonoMod_Loader_Inscryption/) and extract the contents into a folder. -5. Move the contents of the 'patchers' folder into 'BepInEx/patchers' (If any of the mentioned BepInEx folders don't exist, just create them). +5. Move the contents of the `patchers` folder into `BepInEx/patchers` (If any of the mentioned BepInEx folders don't exist, just create them). 6. Install [Inscryption API](https://inscryption.thunderstore.io/package/API_dev/API/) and extract the contents into a folder. -7. Move the contents of the 'plugins' folder into 'BepInEx/plugins' and the contents of the 'monomod' folder into the 'BepInEx/monomod' folder. +7. Move the contents of the `plugins` folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder. 8. Run the game again. If everything runs correctly, a message will appear in the console telling you that the API was loaded. -9. For any additional mods create a new subfolder, it can be called anything and extract the zips archive into it and if there is a BepInEx folder within the zip instead drop the contents of that folder into the BepInEx root for the modding instance. EX; +9. For any additional mods create a new subfolder, it can be called anything and extract the zips archive into it and if there is a `BepInEx` folder within the zip instead drop the contents of that folder into the `BepInEx` root for the modding instance. EX; +``` +BepInEx // These go within the BepInEx root folder +|-- config +|-- patchers +|-- plugins +|-- monomod +|-- core +plugins // Files within go into the created plugin subfolder that was created for the mod +|-- Art +|-- Scripts +|-- MyMod.dll +manifest.json --| +README.md |-- These can be ignored but if you want to keep them put them in the plugin subfolder +CHANGELOG.md |-- +icon.png --| +``` +10. Run the game once more and everything should be correct and working. + +### Installing Manually (XBOX Game-Pass) +1. Install [BepInEx]() by pressing `BepInEx_x64_5.4.21.0.zip` and extract the contents into a folder. +2. Move the contents into the game folder (where the game executable is; usually found here: `C:\XboxGames\D30AC640-4EC1-4D15-96F3-384052F09699\Content`). +3. Run the game. If everything was done correctly, you will see the BepInEx console appear on your desktop. Close the game after it finishes loading. (psst. Enable Logging in `BepInEx/config`) +4. Install [MonoModLoader]() and extract the contents into a folder. +5. Move the contents of the `patchers` folder into `BepInEx/patchers` (If any of the mentioned BepInEx folders don't exist, just create them). +6. Install [Inscryption API]() and extract the contents into a folder. +7. Move the contents of the 'plugins' folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder. +8. Run the game again. If everything runs correctly, a message will appear in the console telling you that the API was loaded. +9. For any additional mods create a new subfolder, it can be called anything and extract the zips archive into it and if there is a `BepInEx` folder within the zip instead drop the contents of that folder into the `BepInEx` root for the modding instance. EX; ``` BepInEx // These go within the BepInEx root folder |-- config @@ -68,13 +96,13 @@ icon.png --| 10. Run the game once more and everything should be correct and working. ### Installing on the Steam Deck -1. Download [r2modman](https://thunderstore.io/c/inscryption/p/ebkr/r2modman/) on the Steam Deck’s Desktop Mode and open it from its download using its `AppImage` file. -2. Download the mods you plan on using and their dependencies.. +1. Download [r2modman](https://thunderstore.io/c/inscryption/p/ebkr/r2modman/) on the Steam Deck's Desktop Mode and open it from its download using its `AppImage` file. +2. Download the mods you plan on using and their dependencies. 3. Go to the setting of the profile you are using for the mods and click `Browse Profile Folder`. 4. Copy the BepInEx folder, then go to Steam and open Inscryption's Properties menu 5. Go to `Installed Files` click `Browse` to open the folder containing Inscryption's local files; paste the BepInEx folder there. 6. Enter Gaming Mode and check 'Force the use of a specific Steam Play compatibility tool' in the Properties menu under `Compatibility`. -7. Go to the launch parameters and enter `WINEDLLOVERRIDES=“winhttp.dll=n,b” %command%`. +7. Go to the launch parameters and enter `WINEDLLOVERRIDES="winhttp.dll=n,b" %command%`. 8. Open Inscryption. If everything was done correctly, you should see a console appear on your screen. ### Mac & Linux @@ -234,4 +262,4 @@ Contributors and builders of API 2.0: - WhistleWind - Windows10CE - Keks307 -- ThinCreator3483 \ No newline at end of file +- ThinCreator3483 From cab82eb38daee675c92098a817bc0aff9d35a0ce Mon Sep 17 00:00:00 2001 From: Chaosyr <102002463+Chaosyr@users.noreply.github.com> Date: Sat, 2 May 2026 22:53:16 -0400 Subject: [PATCH 06/12] Fix a code block typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 99c876c4..a9bdc5e7 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ icon.png --| 4. Install [MonoModLoader]() and extract the contents into a folder. 5. Move the contents of the `patchers` folder into `BepInEx/patchers` (If any of the mentioned BepInEx folders don't exist, just create them). 6. Install [Inscryption API]() and extract the contents into a folder. -7. Move the contents of the 'plugins' folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder. +7. Move the contents of the `plugins` folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder. 8. Run the game again. If everything runs correctly, a message will appear in the console telling you that the API was loaded. 9. For any additional mods create a new subfolder, it can be called anything and extract the zips archive into it and if there is a `BepInEx` folder within the zip instead drop the contents of that folder into the `BepInEx` root for the modding instance. EX; ``` From 1d8ae4a87c610b3a223ebc416326df574913428c Mon Sep 17 00:00:00 2001 From: Chaosyr <102002463+Chaosyr@users.noreply.github.com> Date: Sat, 2 May 2026 22:53:50 -0400 Subject: [PATCH 07/12] Fix a code block typo --- docs/wiki/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/wiki/getting_started.md b/docs/wiki/getting_started.md index 5ee49dc2..c3f43b7f 100644 --- a/docs/wiki/getting_started.md +++ b/docs/wiki/getting_started.md @@ -47,7 +47,7 @@ icon.png --| 4. Install [MonoModLoader]() and extract the contents into a folder. 5. Move the contents of the `patchers` folder into `BepInEx/patchers` (If any of the mentioned BepInEx folders don't exist, just create them). 6. Install [Inscryption API]() and extract the contents into a folder. -7. Move the contents of the 'plugins' folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder. +7. Move the contents of the `plugins` folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder. 8. Run the game again. If everything runs correctly, a message will appear in the console telling you that the API was loaded. 9. For any additional mods create a new subfolder, it can be called anything and extract the zips archive into it and if there is a `BepInEx` folder within the zip instead drop the contents of that folder into the `BepInEx` root for the modding instance. EX; ``` From 140f7c8663a9baaa7205324b978f51ea61f7f8aa Mon Sep 17 00:00:00 2001 From: Chaosyr <102002463+Chaosyr@users.noreply.github.com> Date: Sat, 2 May 2026 23:14:35 -0400 Subject: [PATCH 08/12] Update Mod Manager Support Discord Links --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a9bdc5e7..2511a04c 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,8 @@ To begin, we'll go over how to install BepInEx, the framework all Inscryption mo If you have issues with ModmManagers head to one of these discords; -* **Thunderstore/R2ModMan Support Discord:** [Here](https://discord.gg/Fbz54kQAxg) +* **Thunderstore Support Discord:** [Here](https://discord.gg/Fbz54kQAxg) +* **R2ModMan Support Discord:** [Here](https://discord.gg/R85wjqa4WN) * **Gale Mod Manager Support Discord:** [Here](https://discord.gg/sfuWXRfeTt) ### Installing Manually From 2209b0b34e14b5bdc9ffdb168760057774f13c1f Mon Sep 17 00:00:00 2001 From: Chaosyr <102002463+Chaosyr@users.noreply.github.com> Date: Sat, 2 May 2026 23:15:03 -0400 Subject: [PATCH 09/12] Update Mod Manager Support Discord Links --- docs/wiki/getting_started.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/wiki/getting_started.md b/docs/wiki/getting_started.md index c3f43b7f..e15a48d6 100644 --- a/docs/wiki/getting_started.md +++ b/docs/wiki/getting_started.md @@ -9,7 +9,8 @@ To begin, we'll go over how to install BepInEx, the framework all Inscryption mo If you have issues with ModmManagers head to one of these discords; -* **Thunderstore/R2ModMan Support Discord:** [Here](https://discord.gg/Fbz54kQAxg) +* **Thunderstore Support Discord:** [Here](https://discord.gg/Fbz54kQAxg) +* **R2ModMan Support Discord:** [Here](https://discord.gg/R85wjqa4WN) * **Gale Mod Manager Support Discord:** [Here](https://discord.gg/sfuWXRfeTt) ### Installing Manually From 5fd3c240371c599c108b634ee6f8e1529275a185 Mon Sep 17 00:00:00 2001 From: Chaosyr <102002463+Chaosyr@users.noreply.github.com> Date: Sat, 2 May 2026 23:15:25 -0400 Subject: [PATCH 10/12] Fix Typo --- docs/wiki/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/wiki/getting_started.md b/docs/wiki/getting_started.md index e15a48d6..d621c73c 100644 --- a/docs/wiki/getting_started.md +++ b/docs/wiki/getting_started.md @@ -7,7 +7,7 @@ To begin, we'll go over how to install BepInEx, the framework all Inscryption mo 2. Click the **Install with Mod Manager** button on the top of [BepInEx's](https://thunderstore.io/c/inscryption/p/BepInEx/BepInExPack_Inscryption/) page. 3. Run the game via the mod manager. -If you have issues with ModmManagers head to one of these discords; +If you have issues with Mod Managers head to one of these discords; * **Thunderstore Support Discord:** [Here](https://discord.gg/Fbz54kQAxg) * **R2ModMan Support Discord:** [Here](https://discord.gg/R85wjqa4WN) From 77282cf26f8b4438882261b1a258592e89627fe2 Mon Sep 17 00:00:00 2001 From: Chaosyr <102002463+Chaosyr@users.noreply.github.com> Date: Sat, 2 May 2026 23:15:46 -0400 Subject: [PATCH 11/12] Fix Typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2511a04c..5e9ea1a4 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ To begin, we'll go over how to install BepInEx, the framework all Inscryption mo 2. Click the **Install with Mod Manager** button on the top of [BepInEx's](https://thunderstore.io/c/inscryption/p/BepInEx/BepInExPack_Inscryption/) page. 3. Run the game via the mod manager. -If you have issues with ModmManagers head to one of these discords; +If you have issues with Mod Managers head to one of these discords; * **Thunderstore Support Discord:** [Here](https://discord.gg/Fbz54kQAxg) * **R2ModMan Support Discord:** [Here](https://discord.gg/R85wjqa4WN) From d2c2f5ec8089e52a814d3067914161a241e75dba Mon Sep 17 00:00:00 2001 From: Chaosyr <102002463+Chaosyr@users.noreply.github.com> Date: Sat, 2 May 2026 23:35:10 -0400 Subject: [PATCH 12/12] Codeblocks Fix Noticed a issue with code blocks not rendering properly on the Wiki, this commit aims to fix it --- docs/wiki/getting_started.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/wiki/getting_started.md b/docs/wiki/getting_started.md index d621c73c..9ffa71e7 100644 --- a/docs/wiki/getting_started.md +++ b/docs/wiki/getting_started.md @@ -23,6 +23,7 @@ If you have issues with Mod Managers head to one of these discords; 7. Move the contents of the `plugins` folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder. 8. Run the game again. If everything runs correctly, a message will appear in the console telling you that the API was loaded. 9. For any additional mods create a new subfolder, it can be called anything and extract the zips archive into it and if there is a `BepInEx` folder within the zip instead drop the contents of that folder into the `BepInEx` root for the modding instance. EX; + ``` BepInEx // These go within the BepInEx root folder |-- config @@ -39,6 +40,7 @@ README.md |-- These can be ignored but if you want to keep them put th CHANGELOG.md |-- icon.png --| ``` + 10. Run the game once more and everything should be correct and working. ### Installing Manually (XBOX Game-Pass) @@ -51,6 +53,7 @@ icon.png --| 7. Move the contents of the `plugins` folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder. 8. Run the game again. If everything runs correctly, a message will appear in the console telling you that the API was loaded. 9. For any additional mods create a new subfolder, it can be called anything and extract the zips archive into it and if there is a `BepInEx` folder within the zip instead drop the contents of that folder into the `BepInEx` root for the modding instance. EX; + ``` BepInEx // These go within the BepInEx root folder |-- config @@ -67,6 +70,7 @@ README.md |-- These can be ignored but if you want to keep them put th CHANGELOG.md |-- icon.png --| ``` + 10. Run the game once more and everything should be correct and working. ### Installing on the Steam Deck