Add instructions for Mod Organizer users

This commit is contained in:
Tyler Hallada 2022-03-19 17:49:33 -04:00
parent a9d1a5af54
commit 139257f2a0
3 changed files with 33 additions and 0 deletions

View File

@ -57,6 +57,16 @@ const DataDirPicker: React.FC<Props> = () => {
<br />
<br />
The Data folder can be found in the installation directory of the game.
<br />
<br />
For Mod Organizer users, select the mod directory located at{" "}
<strong>
<code className={styles["break-word"]}>
C:\Users\username\AppData\Local\ModOrganizer\Skyrim Special
Edition\mods
</code>
</strong>
.
</p>
<input
type="file"

View File

@ -46,6 +46,16 @@ const PluginTxtEditor: React.FC<Props> = () => {
C:\Users\username\AppData\Local\Skyrim Special Edition
</code>
</strong>
.
<br />
<br />
For Mod Organizer users, it is at{" "}
<strong>
<code className={styles["break-word"]}>
C:\Users\username\AppData\Local\ModOrganizer\Skyrim Special
Edition\profiles\profilename\plugins.txt
</code>
</strong>
</p>
<button onClick={onPluginsTxtButtonClick} className={styles.button}>
{!pluginsTxt ? "Paste" : "Edit"} Skyrim plugins.txt file
@ -70,6 +80,15 @@ const PluginTxtEditor: React.FC<Props> = () => {
).
<br />
<br />
For Mod Organizer users, it is at{" "}
<strong>
<code className={styles["break-word"]}>
C:\Users\username\AppData\Local\ModOrganizer\Skyrim Special
Edition\profiles\profilename\plugins.txt
</code>
</strong>
<br />
<br />
You can also drag-and-drop the file anywhere on the window to load
the file.
</p>

View File

@ -5,3 +5,7 @@
.step {
font-size: 1.5rem;
}
.break-word {
word-break: break-word;
}