Installing mods with StarMap¶
This page covers how to install mods that work with StarMap.
First make sure you installed StarMap via this guide: StarMap installation guide
How to install mods¶
Method 1: KSA Mod Loader¶
- Download the zip file for the mod.
- Copy and paste the zip file into the
ModSetupfolder of KSA Mod Loader - Run KSA Mod Loader and select option "2" to install.
Method 2: Manual¶
- Download the mod's zip that contains the class library dll as well as any dependencies.
- Extract the zip folder so that the .dll file is inside a folder with the same nam as the .dll file.
StarMap.ExampleMod └── StarMap.ExampleMod.dll └── ... - Put this folder inside of the game content files:
"KSAInstallLocation/Content/, This folder should also contain theCoremod folder. - Lastly the mod needs to be added to the manifest.toml in the
"KSAInstallLocation"/Content/folder, the id needs to match the name of the folder, the .dll file, the name variable inside mod.toml.[[mods]] id= "core" enabled = true [[mods]] id = "[mod name]" enabled = true - When now loading the game via
StarMap.exeorStarMapLoader.exe, the mod should be loaded and run.