This guide will help you on how to add mods to your Stationeers server.
WARNING! - This guide only applies on LEGACY version of the game, the current version does not support mods yet!
For this guide we going to use these 3 mods as an example:
(Trigonometric Player Detector) - https://steamcommunity.com/sharedfiles/filedetails/?id=2474868971
(AC HeaterControl v2) - https://steamcommunity.com/sharedfiles/filedetails/?id=2473108233
(LuxuriousCoop) - https://steamcommunity.com/sharedfiles/filedetails/?id=2470791251
STEP #1 (Install the Mods)
- Go to the Steam Workshop button on your control panel
- Find and install the mods you want (in this example the 3 mods above)
STEP #2 (Load the Mods)
- Go to the Configuration Files button and edit the ModConfig.xml file with TEXT EDITOR option
- Under the section Mods, add a new entry per mod you want to load, increasing the number by 1 on each entry (in this example it's 3 entries, so you add 1001, 1002, and 1003 entries)
<Mods>
<unsignedLong>1</unsignedLong>
<unsignedLong>1001</unsignedLong>
<unsignedLong>1002</unsignedLong>
<unsignedLong>1003</unsignedLong>
</Mods>
- Now add a new entry for each mod, placing the ModID in the folder field and the ModID of the mod based on the previous step (in this example we use the 3 mods as an example)
<LocalMods>
<LocalMod>
<folder>2474868971</folder>
<modID>1001</modID>
</LocalMod>
<LocalMod>
<folder>2473108233</folder>
<modID>1002</modID>
</LocalMod>
<LocalMod>
<folder>2470791251</folder>
<modID>1003</modID>
</LocalMod>
</LocalMods>
- In the end, the entire file should look like this
<?xml version="1.0" encoding="utf-8"?>
<ModConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Mods>
<unsignedLong>1</unsignedLong>
<unsignedLong>1001</unsignedLong>
<unsignedLong>1002</unsignedLong>
<unsignedLong>1003</unsignedLong>
</Mods>
<DisabledMods>
</DisabledMods>
<LocalMods>
<LocalMod>
<folder>2474868971</folder>
<modID>1001</modID>
</LocalMod>
<LocalMod>
<folder>2473108233</folder>
<modID>1002</modID>
</LocalMod>
<LocalMod>
<folder>2470791251</folder>
<modID>1003</modID>
</LocalMod>
</LocalMods>
</ModConfig>
If you have any questions or you need our help don't hesitate to contact our support system.