Language & Currency

Currency

DayZ: Your game, your server

from 9.80
AUD /month
from 11.72
BGN /month
from 34.80
BRL /month
from 9.66
CAD /month
from 5.57
CHF /month
from 46.45
CNY /month
from 145.03
CZK /month
from 44.78
DKK /month
from 5.99
EUR /month
from 5.13
GBP /month
from 53.96
HKD /month
from 45.14
HRK /month
from 2,181.86
HUF /month
from 124,191.87
IDR /month
from 21.03
ILS /month
from 656.20
INR /month
from 854.17
ISK /month
from 1,102.34
JPY /month
from 9,931.36
KRW /month
from 119.51
MXN /month
from 28.11
MYR /month
from 65.54
NOK /month
from 11.73
NZD /month
from 421.50
PHP /month
from 25.84
PLN /month
from 31.43
RON /month
from 702.03
RUB /month
from 65.80
SEK /month
from 8.84
SGD /month
from 230.23
THB /month
from 326.95
TRY /month
from 6.88
USD /month
from 114.03
ZAR /month
from 54.04
date /month

Increase Loot in DayZ

The types.xml defines which Vanilla items spawn, in what quantity and in which locations. This guide explains how to adjust Vanilla loot and upload the edited file to your server.

1. Download types.xml

You can get the correct types.xml in two ways:

  • Download the file from Bohemia Interactive’s official GitHub repository. Select the mission for your map and open the db folder.

  • Download the file currently used by your server through the Gameserver-FTP. After connecting, find it in the active mission at:

    /mpmissions/<MissionFolder>/db/types.xml

    Examples:

    /mpmissions/dayzOffline.chernarusplus/db/types.xml /mpmissions/dayzOffline.enoch/db/types.xml

Always use the types.xml from the mission your server actually starts. Create a copy of the original file before editing it.

2. Adjust Vanilla loot

For editing, we recommend an editor with syntax highlighting, such as Notepad++.

As an example, we will edit the entry for the AK101. The nominal value is increased from 4 to 8:

Original:

<type name="AK101">
    <nominal>4</nominal>
    <lifetime>28800</lifetime>
    <restock>3600</restock>
    <min>2</min>
    <quantmin>30</quantmin>
    <quantmax>80</quantmax>
    <cost>100</cost>
    <flags count_in_cargo="0" count_in_hoarder="0" count_in_map="1" count_in_player="0" crafted="0" deloot="0"/>
    <category name="weapons"/>
    <usage name="Military"/>
    <value name="Tier3"/>
    <value name="Tier4"/>
</type>

Edited:

<type name="AK101">
    <nominal>8</nominal>
    <lifetime>28800</lifetime>
    <restock>3600</restock>
    <min>2</min>
    <quantmin>30</quantmin>
    <quantmax>80</quantmax>
    <cost>100</cost>
    <flags count_in_cargo="0" count_in_hoarder="0" count_in_map="1" count_in_player="0" crafted="0" deloot="0"/>
    <category name="weapons"/>
    <usage name="Military"/>
    <value name="Tier3"/>
    <value name="Tier4"/>
</type>

This increases the target value for the AK101 from 4 to 8. The actual amount can vary depending on loot locations, players and other settings.

Important settings

SettingDescription
typeDetermines which item spawns, for example AK101.
nominalTarget total amount of an item that the Central Economy aims for.
lifetimeTime in seconds an item can normally remain in the world before it is removed.
restockTime in seconds before the Central Economy tries to restock this item again.
minIf the amount falls below this value, the Central Economy tries to spawn new items.
quantminMinimum fill level in percent for items with quantities, such as magazines or liquids. Items without a quantity often use -1.
quantmaxMaximum fill level in percent for items with quantities. Items without a quantity often use -1.
costPriority when distributing loot. A higher value can cause the item to be spawned preferentially.
flagsDefine in which areas items are counted for the total.
count_in_cargoItems in vehicles, backpacks and other inventory are counted.
count_in_hoarderItems in containers, tents, barrels and similar storage are counted.
count_in_mapItems in the world are counted.
count_in_playerItems in a player’s inventory are counted.
craftedIdentifies items that are crafted and do not spawn normally.
delootIdentifies special event loot, for example from helicopter crashes.
categoryAssigns the item to a category, such as weapons or clothes.
tagDefines which type of loot position can spawn the item, such as shelves or floor.
usageDefines in which areas the item can spawn, such as Military, Town or Village.
valueDefines the zone or loot tier, such as Tier4.

Only change the values you really want to adjust. Also pay attention to the capitalization of item names and to valid XML syntax.

3. Upload types.xml

  1. Stop your server and wait until it has shut down completely. The status must be Server is not running.

  2. Connect your FTP program to the Gameserver-FTP. You can find the login details in the FTP overview by clicking FTP.

  3. After connecting, you are already in the root directory /. Open the active mission folder and then its db subfolder:

    /mpmissions/<MissionFolder>/db/

    Examples:

    /mpmissions/dayzOffline.chernarusplus/db/ /mpmissions/dayzOffline.enoch/db/

  4. Upload the edited types.xml to this folder and confirm that the existing file should be replaced.

  5. Start your server again.

Your edited types.xml will be loaded when the server starts. Changes to loot distribution may only become fully visible after the next spawn or cleanup cycle.

4. Add loot from mods

Many mods provide their own loot entries, for example in a types.xml or a file in a ServerFiles folder. Read the mod author’s installation instructions first. They will tell you which files are required.

For additional mod items, you do not have to replace the complete Vanilla types.xml. You can include a separate file to add to the standard file or override individual entries. DayZ supports additional Central Economy files through cfgeconomycore.xml.

  1. Create an additional folder in the mission folder, for example:

    /mpmissions/dayzOffline.chernarusplus/custom/

  2. Copy the loot entries provided by the mod into a separate file, for example mod_types.xml, and upload it to this folder. If the mod already provides a suitable file, you can rename it accordingly.

  3. Open cfgeconomycore.xml in the mission folder. Add the following section inside the existing <economycore> element. Keep the existing contents of the file:

    <ce folder="custom">
        <file name="mod_types.xml" type="types" />
    </ce>
    

Important: If you change an existing item, its existing usage, tag and value lines must also remain in your file. Otherwise, the item may no longer spawn in its previous locations.

  1. Upload the edited cfgeconomycore.xml back to the mission folder and restart the server.

The mod must be installed and enabled. Item names, categories, tags, usage areas and loot tiers must exactly match the mod’s instructions. If a mod also requires cfgspawnabletypes.xml or other files, follow the mod’s installation instructions for those files as well.

For more technical information about additional and overridden Central Economy files, see the official DayZ documentation.