You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+46-43Lines changed: 46 additions & 43 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,8 @@ Additionally, a number of quality-of-life patches from the community are include
29
29
---
30
30
To begin, we'll go over how to install BepInEx, the framework all Inscryption mods use. This is a necessary step to playing modded Inscryption, so be sure to follow this carefully.
31
31
32
+
**FOR LINUX AND STEAMDECK:** Ensure that the game is set to run using `Proton` in he game settings on steam. Should be a setting like this: `Change launch behaviour` -> `Proton`.
33
+
32
34
### Installing with a Mod Manager
33
35
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/).
34
36
2. Click the **Install with Mod Manager** button on the top of [BepInEx's](https://thunderstore.io/c/inscryption/p/BepInEx/BepInExPack_Inscryption/) page.
@@ -41,7 +43,7 @@ If you have issues with Mod Managers head to one of these discords;
41
43
***Gale Mod Manager Support Discord:**[Here](https://discord.gg/sfuWXRfeTt)
42
44
43
45
### Installing Manually
44
-
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!**
46
+
1. Install [BepInEx](https://thunderstore.io/package/download/BepInEx/BepInExPack_Inscryption/5.4.2305/) by pressing `Manual Download` and extract the contents into a folder. **Do not extract into the game folder!**
45
47
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`).
46
48
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.
47
49
4. Install [MonoModLoader](https://inscryption.thunderstore.io/package/BepInEx/MonoMod_Loader_Inscryption/) and extract the contents into a folder.
@@ -50,51 +52,52 @@ If you have issues with Mod Managers head to one of these discords;
50
52
7. Move the contents of the `plugins` folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder.
51
53
8. Run the game again. If everything runs correctly, a message will appear in the console telling you that the API was loaded.
52
54
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;
53
-
```
54
-
BepInEx // These go within the BepInEx root folder
55
-
|-- config
56
-
|-- patchers
57
-
|-- plugins
58
-
|-- monomod
59
-
|-- core
60
-
plugins // Files within go into the created plugin subfolder that was created for the mod
61
-
|-- Art
62
-
|-- Scripts
63
-
|-- MyMod.dll
64
-
manifest.json --|
65
-
README.md |-- These can be ignored but if you want to keep them put them in the plugin subfolder
66
-
CHANGELOG.md |--
67
-
icon.png --|
68
-
```
55
+
```
56
+
BepInEx // These go within the BepInEx root folder
57
+
|-- config
58
+
|-- patchers
59
+
|-- plugins
60
+
|-- monomod
61
+
|-- core
62
+
plugins // Files within go into the created plugin subfolder that was created for the mod
63
+
|-- Art
64
+
|-- Scripts
65
+
|-- MyMod.dll
66
+
manifest.json // Ignorable, but if kept, goes in plugin subfolder
67
+
README.md // Ignorable, but if kept, goes in plugin subfolder
68
+
CHANGELOG.md // Ignorable, but if kept, goes in plugin subfolder
69
+
icon.png // Ignorable, but if kept, goes in plugin subfolder
70
+
```
69
71
10. Run the game once more and everything should be correct and working.
70
72
71
73
### Installing Manually (XBOX Game-Pass)
72
-
1. Install [BepInEx](<https://github.com/BepInEx/BepInEx/releases/tag/v5.4.21>) by pressing `BepInEx_x64_5.4.21.0.zip` and extract the contents into a folder.
73
-
2. Move the contents into the game folder (where the game executable is; usually found here: `C:\XboxGames\D30AC640-4EC1-4D15-96F3-384052F09699\Content`).
74
-
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`)
75
-
4. Install [MonoModLoader](<https://inscryption.thunderstore.io/package/BepInEx/MonoMod_Loader_Inscryption/>) and extract the contents into a folder.
76
-
5. Move the contents of the `patchers` folder into `BepInEx/patchers` (If any of the mentioned BepInEx folders don't exist, just create them).
77
-
6. Install [Inscryption API](<https://inscryption.thunderstore.io/package/API_dev/API/>) and extract the contents into a folder.
78
-
7. Move the contents of the `plugins` folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder.
79
-
8. Run the game again. If everything runs correctly, a message will appear in the console telling you that the API was loaded.
80
-
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;
81
-
```
82
-
BepInEx // These go within the BepInEx root folder
83
-
|-- config
84
-
|-- patchers
85
-
|-- plugins
86
-
|-- monomod
87
-
|-- core
88
-
plugins // Files within go into the created plugin subfolder that was created for the mod
89
-
|-- Art
90
-
|-- Scripts
91
-
|-- MyMod.dll
92
-
manifest.json --|
93
-
README.md |-- These can be ignored but if you want to keep them put them in the plugin subfolder
94
-
CHANGELOG.md |--
95
-
icon.png --|
96
-
```
97
-
10. Run the game once more and everything should be correct and working.
74
+
1. Install [BepInEx](https://thunderstore.io/package/download/BepInEx/BepInExPack_Inscryption/5.4.2305/) by pressing `Manual Download` and extract the contents into a folder. **Do not extract into the game folder!**
75
+
2. Move the contents of the `BepInExPack_Inscryption` folder into the game folder (where the game executable is; usually found here: `C:\XboxGames\Inscryption\Content`).
76
+
3. Install the following package: [XboxSilencio](https://thunderstore.io/c/inscryption/p/CORE_API_TEAM/GamepassSilencio/), this is a package which aims to solve frictions with XBOX Gamepass specific installations, such as HueyFS related errors.
77
+
4. 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.
78
+
5. Install [MonoModLoader](https://inscryption.thunderstore.io/package/BepInEx/MonoMod_Loader_Inscryption/) and extract the contents into a folder.
79
+
6. Move the contents of the `patchers` folder into `BepInEx/patchers` (If any of the mentioned BepInEx folders don't exist, just create them).
80
+
7. Install [Inscryption API](https://inscryption.thunderstore.io/package/API_dev/API/) and extract the contents into a folder.
81
+
8. Move the contents of the `plugins` folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder.
82
+
9. Run the game again. If everything runs correctly, a message will appear in the console telling you that the API was loaded.
83
+
10. 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;
84
+
```
85
+
BepInEx // These go within the BepInEx root folder
86
+
|-- config
87
+
|-- patchers
88
+
|-- plugins
89
+
|-- monomod
90
+
|-- core
91
+
plugins // Files within go into the created plugin subfolder that was created for the mod
92
+
|-- Art
93
+
|-- Scripts
94
+
|-- MyMod.dll
95
+
manifest.json // Ignorable, but if kept, goes in plugin subfolder
96
+
README.md // Ignorable, but if kept, goes in plugin subfolder
97
+
CHANGELOG.md // Ignorable, but if kept, goes in plugin subfolder
98
+
icon.png // Ignorable, but if kept, goes in plugin subfolder
99
+
```
100
+
11. Run the game once more and everything should be correct and working.
98
101
99
102
### Installing on the Steam Deck
100
103
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.
Copy file name to clipboardExpand all lines: docs/wiki/getting_started.md
+46-47Lines changed: 46 additions & 47 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
---
3
3
To begin, we'll go over how to install BepInEx, the framework all Inscryption mods use. This is a necessary step to playing modded Inscryption, so be sure to follow this carefully.
4
4
5
+
**FOR LINUX AND STEAMDECK:** Ensure that the game is set to run using `Proton` in he game settings on steam. Should be a setting like this: `Change launch behaviour` -> `Proton`.
6
+
5
7
### Installing with a Mod Manager
6
8
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/).
7
9
2. Click the **Install with Mod Manager** button on the top of [BepInEx's](https://thunderstore.io/c/inscryption/p/BepInEx/BepInExPack_Inscryption/) page.
@@ -14,7 +16,7 @@ If you have issues with Mod Managers head to one of these discords;
14
16
***Gale Mod Manager Support Discord:**[Here](https://discord.gg/sfuWXRfeTt)
15
17
16
18
### Installing Manually
17
-
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!**
19
+
1. Install [BepInEx](https://thunderstore.io/package/download/BepInEx/BepInExPack_Inscryption/5.4.2305/) by pressing `Manual Download` and extract the contents into a folder. **Do not extract into the game folder!**
18
20
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`).
19
21
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.
20
22
4. Install [MonoModLoader](https://inscryption.thunderstore.io/package/BepInEx/MonoMod_Loader_Inscryption/) and extract the contents into a folder.
@@ -23,55 +25,52 @@ If you have issues with Mod Managers head to one of these discords;
23
25
7. Move the contents of the `plugins` folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder.
24
26
8. Run the game again. If everything runs correctly, a message will appear in the console telling you that the API was loaded.
25
27
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;
26
-
27
-
```
28
-
BepInEx // These go within the BepInEx root folder
29
-
|-- config
30
-
|-- patchers
31
-
|-- plugins
32
-
|-- monomod
33
-
|-- core
34
-
plugins // Files within go into the created plugin subfolder that was created for the mod
35
-
|-- Art
36
-
|-- Scripts
37
-
|-- MyMod.dll
38
-
manifest.json --|
39
-
README.md |-- These can be ignored but if you want to keep them put them in the plugin subfolder
40
-
CHANGELOG.md |--
41
-
icon.png --|
42
-
```
43
-
28
+
```
29
+
BepInEx // These go within the BepInEx root folder
30
+
|-- config
31
+
|-- patchers
32
+
|-- plugins
33
+
|-- monomod
34
+
|-- core
35
+
plugins // Files within go into the created plugin subfolder that was created for the mod
36
+
|-- Art
37
+
|-- Scripts
38
+
|-- MyMod.dll
39
+
manifest.json // Ignorable, but if kept, goes in plugin subfolder
40
+
README.md // Ignorable, but if kept, goes in plugin subfolder
41
+
CHANGELOG.md // Ignorable, but if kept, goes in plugin subfolder
42
+
icon.png // Ignorable, but if kept, goes in plugin subfolder
43
+
```
44
44
10. Run the game once more and everything should be correct and working.
45
45
46
46
### Installing Manually (XBOX Game-Pass)
47
-
1. Install [BepInEx](<https://github.com/BepInEx/BepInEx/releases/tag/v5.4.21>) by pressing `BepInEx_x64_5.4.21.0.zip` and extract the contents into a folder.
48
-
2. Move the contents into the game folder (where the game executable is; usually found here: `C:\XboxGames\D30AC640-4EC1-4D15-96F3-384052F09699\Content`).
49
-
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`)
50
-
4. Install [MonoModLoader](<https://inscryption.thunderstore.io/package/BepInEx/MonoMod_Loader_Inscryption/>) and extract the contents into a folder.
51
-
5. Move the contents of the `patchers` folder into `BepInEx/patchers` (If any of the mentioned BepInEx folders don't exist, just create them).
52
-
6. Install [Inscryption API](<https://inscryption.thunderstore.io/package/API_dev/API/>) and extract the contents into a folder.
53
-
7. Move the contents of the `plugins` folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder.
54
-
8. Run the game again. If everything runs correctly, a message will appear in the console telling you that the API was loaded.
55
-
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;
56
-
57
-
```
58
-
BepInEx // These go within the BepInEx root folder
59
-
|-- config
60
-
|-- patchers
61
-
|-- plugins
62
-
|-- monomod
63
-
|-- core
64
-
plugins // Files within go into the created plugin subfolder that was created for the mod
65
-
|-- Art
66
-
|-- Scripts
67
-
|-- MyMod.dll
68
-
manifest.json --|
69
-
README.md |-- These can be ignored but if you want to keep them put them in the plugin subfolder
70
-
CHANGELOG.md |--
71
-
icon.png --|
72
-
```
73
-
74
-
10. Run the game once more and everything should be correct and working.
47
+
1. Install [BepInEx](https://thunderstore.io/package/download/BepInEx/BepInExPack_Inscryption/5.4.2305/) by pressing `Manual Download` and extract the contents into a folder. **Do not extract into the game folder!**
48
+
2. Move the contents of the `BepInExPack_Inscryption` folder into the game folder (where the game executable is; usually found here: `C:\XboxGames\Inscryption\Content`).
49
+
3. Install the following package: [XboxSilencio](https://thunderstore.io/c/inscryption/p/CORE_API_TEAM/GamepassSilencio/), this is a package which aims to solve frictions with XBOX Gamepass specific installations, such as HueyFS related errors.
50
+
4. 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.
51
+
5. Install [MonoModLoader](https://inscryption.thunderstore.io/package/BepInEx/MonoMod_Loader_Inscryption/) and extract the contents into a folder.
52
+
6. Move the contents of the `patchers` folder into `BepInEx/patchers` (If any of the mentioned BepInEx folders don't exist, just create them).
53
+
7. Install [Inscryption API](https://inscryption.thunderstore.io/package/API_dev/API/) and extract the contents into a folder.
54
+
8. Move the contents of the `plugins` folder into `BepInEx/plugins` and the contents of the `monomod` folder into the `BepInEx/monomod` folder.
55
+
9. Run the game again. If everything runs correctly, a message will appear in the console telling you that the API was loaded.
56
+
10. 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;
57
+
```
58
+
BepInEx // These go within the BepInEx root folder
59
+
|-- config
60
+
|-- patchers
61
+
|-- plugins
62
+
|-- monomod
63
+
|-- core
64
+
plugins // Files within go into the created plugin subfolder that was created for the mod
65
+
|-- Art
66
+
|-- Scripts
67
+
|-- MyMod.dll
68
+
manifest.json // Ignorable, but if kept, goes in plugin subfolder
69
+
README.md // Ignorable, but if kept, goes in plugin subfolder
70
+
CHANGELOG.md // Ignorable, but if kept, goes in plugin subfolder
71
+
icon.png // Ignorable, but if kept, goes in plugin subfolder
72
+
```
73
+
11. Run the game once more and everything should be correct and working.
75
74
76
75
### Installing on the Steam Deck
77
76
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.
0 commit comments