Mod articles
-
Creators - How to add a custom pak68.txt for a mod
You can add a custom pak68.txt file for your mod, and ndmodloader will automatically load it, without the need to edit or replace the default pak68.txt file.
DO NOT include a full pak68.txt file. It will NOT work.
Example
- You have a mod, the archive is called coolmod.psarc
- The files in this mod require adding an actor to a level definition in pak68.txt, or the game will crash.
- You can create a file called coolmod-pak68.txt and include it with your mod (either inside your psarc file in the root directory, or alongside it).
The structure is as follows (using example values, do not use these):
level-name some-level-name
actor some-actor-you-want
actor some-other-actor
That's it. That's the entire file. <...