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
{{ message }}
This repository was archived by the owner on Feb 28, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,6 @@ Your Neos directory should now look similar to the following. Files not related
20
20
21
21
```
22
22
<Neos Install Directory>
23
-
│ 0Harmony.dll
24
23
│ Neos.exe
25
24
│ NeosLauncher.exe
26
25
│
@@ -32,11 +31,16 @@ Your Neos directory should now look similar to the following. Files not related
32
31
│ MotionBlurDisable.dll
33
32
│ NeosContactsSort.dll
34
33
| <More mods go here>
34
+
├───nml_libs
35
+
│ 0Harmony.dll
36
+
| <More libs go here>
35
37
│
36
38
└───Libraries
37
39
NeosModLoader.dll
38
40
```
39
41
42
+
Note that the libraries can also be in the root of the Neos install directory if you prefer, but the loading of those happens outside of NML itself.
43
+
40
44
## Finding Mods
41
45
42
46
A list of known mods is available in the [Neos Mod List](https://github.com/zkxs/neos-mod-list/blob/master/README.md). New mods and updates are also announced in [our Discord][Neos Modding Discord].
Copy file name to clipboardExpand all lines: doc/modloader_config.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ Not all keys are required to be present. Missing keys will use the defaults outl
14
14
|`debug`|`false`| If `true`, NeosMod.Debug() logs will appear in your log file. Otherwise, they are hidden. |
15
15
|`hidevisuals`|`false`| If `true`, NML won't show any visual indication of being installed, such as a loading indicator on the splash screen. |
16
16
|`nomods`|`false`| If `true`, mods will not be loaded. |
17
+
|`nolibraries`|`false`| If `true`, extra libraries will not be loaded. |
17
18
|`advertiseversion`|`false`| If `false`, your version will be spoofed and will resemble `2021.8.29.1240`. If `true`, your version will be left unaltered and will resemble `2021.8.29.1240+NeosModLoader.dll`. This version string is visible to other players under certain circumstances. |
18
19
|`unsafe`|`false`| If `true`, the version spoofing safety check is disabled and it will still work even if you have other Neos plugins. DO NOT load plugin components in multiplayer sessions, as it will break things and cause crashes. Plugin components should only be used in your local home or user space. |
19
20
|`logconflicts`|`true`| If `false`, conflict logging will be disabled. If `true`, potential mod conflicts will be logged. If `debug` is also `true` this will be more verbose. |
0 commit comments