Skip to content

Commit ecf1292

Browse files
committed
s
1 parent e648cfa commit ecf1292

4 files changed

Lines changed: 53 additions & 6 deletions

File tree

MakingMods/Boilerplate.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ Now that you have BepInEx Setup you can now begin with your mod creation.
44

55
### Setup
66
---os:windows
7+
### Windows
78
When you install VS2022 you will be prompted with the "Visual Studio Installer"
89
Click the modify button on your current installation and enable:
910
.NET Desktop development as well as Game Development with Unity
1011
Then press "Modify" button on the bottom right
1112
And wait for it to complete
1213
---end---
1314
---os:mac
14-
# PUT IN STUFF FOR VSCODE
15+
### VSCode
1516
Create a new folder and open it with VSCode
1617
Open the extensions panel (Ctrl+Shift+X)
1718
Search for C# Dev Kit and the .NET install tool (if you want a QOL Extension also install Indent-Rainbow)

PlayingMods/Setup.html

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,23 @@
99
<body>
1010
<div id="sidebar"></div>
1111

12-
<div class="content">
13-
<div class="top-menu">Playing Mods</div>
14-
<div class="textbox">Playing Mod</div>
12+
<div id="content" class="content">
13+
<div class="top-menu">
14+
<div class="os-selector">
15+
<select id="osSelect">
16+
<option value="windows">Manual Setup</option>
17+
<option value="mac">R2Modman/Thunderstore</option>
18+
</select>
19+
</div>
20+
</div>
21+
<div class="textbox">
22+
<div class="text"></div>
23+
</div>
1524
</div>
16-
<script src="/Scripts/dropdown.js"></script>
25+
26+
<script src="/Scripts/markdown-converter.js", data-md="Setup.md"></script>
27+
<script src="/Scripts/os-switcher.js"></script>
1728
<script src="/Scripts/sidebar.js"></script>
29+
<script src="/Scripts/dropdown.js"></script>
1830
</body>
1931
</html>

PlayingMods/Setup.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
## Playing Mods Setup
2+
3+
This is the first part that teaches you how to install/setup your enviroment to play mods
4+
5+
---os:windows
6+
Download bepinex from: [https://thunderstore.io/package/download/BepInEx/BepInExPack/5.4.2100/](https://thunderstore.io/package/download/BepInEx/BepInExPack/5.4.2100/)
7+
8+
Extract the zip file and open it, then open the BepInEx folder.
9+
10+
Copy the folder contents into the ULTRAKILL folder (where the ULTRAKILL.exe is)
11+
12+
![A Image showing the files getting moved into the ultrakill folder](/Images/BepInExMoving.png "height: 240px;")
13+
Result:
14+
![The result folder](/Images/BepInExResult.png "height: 240px;")
15+
16+
After the contents have been put in the ULTRAKILL folder launch ULTRAKILL
17+
18+
When ultrakill gets to the main menu close it
19+
20+
Open the BepInEx folder then open the config folder
21+
Open BepInEx.cfg with notepad or any text editor of your choosing
22+
23+
Change the line:
24+
HideManagerGameObject = false
25+
Change to:
26+
HideManagerGameObject = true
27+
28+
Under [Logging.Console]
29+
set enabled to true
30+
If you are following this to play mods and not make mods keep the console disabled
31+
---end---
32+
---os:mac
33+
34+
---end---
35+

styles.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
margin: 0;
44
padding: 0;
55
box-sizing: border-box;
6-
font-family: Arial, sans-serif;
76
font-family: 'VCR OSD Mono', Arial, sans-serif !important;
87
}
98

0 commit comments

Comments
 (0)