Xmas-Deal Festive joy for gamers! Save 50% on your game server and get a free Teamspeak server included.

Language & Currency

Currency

Don't Starve Together: Your game, your server

Don't Starve Together Rent server
from 9.88
AUD /month
from 11.72
BGN /month
from 38.03
BRL /month
from 8.96
CAD /month
from 5.62
CHF /month
from 45.83
CNY /month
from 149.86
CZK /month
from 44.67
DKK /month
from 5.99
EUR /month
from 4.97
GBP /month
from 48.98
HKD /month
from 45.14
HRK /month
from 2,449.31
HUF /month
from 100,932.70
IDR /month
from 22.63
ILS /month
from 534.25
INR /month
from 873.94
ISK /month
from 967.09
JPY /month
from 9,030.40
KRW /month
from 127.25
MXN /month
from 28.04
MYR /month
from 69.94
NOK /month
from 10.91
NZD /month
from 369.23
PHP /month
from 25.54
PLN /month
from 29.79
RON /month
from 702.03
RUB /month
from 68.97
SEK /month
from 8.49
SGD /month
from 215.06
THB /month
from 220.18
TRY /month
from 6.30
USD /month
from 112.69
ZAR /month
from 72.79
date /month

Mod Installation in Dont Starve Together

You need to install mods via FTP. You can use FileZilla for this.
The mods need to be uploaded to the FTP upload in the mods folder.
Afterwards, you need to create the file dedicated_server_mods_setup.lua Klei/DoNotStarveTogether/MyDediServer and list the mods:

For example:

    ServerModSetup("345692228")
    ServerModSetup("346968521")
    ServerModSetup("352373173")

and so on. You can get the IDs from the Steam Workshop in the URL of the mod.

There are two ways to activate mods.

The first is to forcefully enable the mods. This is easier, but it doesn’t allow you to modify the mod settings.
The mod will start with the default settings. To do this, you need to modify the file modsettings.lua mods/modsettings.lua to enable the desired mods.
For example, this would enable three mods from the Workshop.

    ForceEnableMod("workshop-345692228")
    ForceEnableMod("workshop-346968521")
    ForceEnableMod("workshop-352373173")

The second option uses the file modoverrides.lua \Klei\DoNotStarveTogether\modoverrides.lua.
This file allows you to enable mods and make mod configurations. An example of the content of this file is:

    return {
        ["workshop-350811795"] = { enabled = true },
        ["workshop-387028143"] = { enabled = true },
        ["workshop-361336115"] = { enabled = true,
            configuration_options =
            {
                hunt_time = 6,
                ["String Phrase Option Name"] = "some value",
            }
        },
        ["workshop-336882447"] = { enabled = true }
    }

To get the configuration options for the mod, you need to go to the mod’s directory and open the file modinfo.lua.
Please copy the entire configuration_options table and paste it into modoverrides.lua.
Then configure it according to your preferences.
If there is no configuration_options table, the mod is not configurable.

Once you’re done with everything, simply restart the server.