1) This guide is for server admins, not regular players. MA Mobile Base is used as an example. Subscribe and install the mod via the Steam Workshop. Now check out the mod folder.
2) Copy the @ folder from the Workshop to YOUR DayZ server folder.
3) Now copy the bikey from the mods Keys folder into your servers keys folder.
4) Then right-click and edit the start.bat file. It will open the file with a text editor.
5) Go to the launch parameters line Start "DayZ Server" and add the correct mod folder name.
Start "DayZ Server" ... "-mod=@CF;@Community-Online-Tools;@Code Lock;@MA Mobile Base;@MA Items and Clothing" ...
6) Now create a folder called MA inside your servers mpmissions folder and copy the types file from the mods Extras folder. In order to set the structure you have to include the following in the cfgeconomycore.xml file:
<economycore>
<ce folder="MA">
<file name="types.xml" type="types" />
</ce>
</economycore>
7) Now you can set up the types to fit your servers style. Keep in mind, it might require multiple restarts until the set amount of items will show up on the map. This is an example on how item types work:
<type name="maMB_Blueprint">
<nominal>8</nominal> --> The average amount of this item on the map.
<lifetime>10800</lifetime> --> The item will last on the map for 3 hours.
<restock>3600</restock> --> Respawn the item on the map after 1 hour.
<min>4</min> --> The minimum amount of this item on the map.
<quantmin>-1</quantmin>
<quantmax>-1</quantmax>
<cost>100</cost>
<flags count_in_map="1" count_in_hoarder="0" count_in_cargo="0" count_in_player="0" crafted="0" deloot="0" />
<category name="tools"/>
<usage name="Industrial"/>
<usage name="Farm"/>
</type>
8) This is optional and only applies to the Mobile Base mod. After restarting the server there will be a MobileBase folder in your servers config folder. Change the settings to fit your server rules.
"CanRepairBase": 1, ---> Change to 0 if you don't want to allow repairs. "CanUnlockRuinedDoor": 1 ---> Change to 0 if you don't want to allow lockpick raiding. "CanRaidCodelock": 1 ---> Change to 0 if you don't want to allow codelock raiding.
If you are looking for a more automated server setup I recommend Omega Manager. Guide coming soon...