How to install mods on a Don't Starve Together server


Summary 
Don't Starve Together servers have many available mods that function both client-side and server-side. The Don't Starve modding community develops many mods, ranging from convenient UI mods that expand on Player Stats to more involved mods such as adding custom characters, which typically need to be installed by both server and client. Mods that require clients to install them will also display to users when they connect to the server, which ensures that all players have a shared experience.

How to Install Mods on a Don't Starve Together Server
1. Log in to the BisectHosting Games panel.

2. Stop the server.


3. Go to the Files tab.


4. Find the following directory: /home/container/DoNotStarveTogether/config/server/Master .


5. Choose Create > Create File from the top-right.


6. Copy the following template and paste it into the folder:
return {
       ["workshop-WorkshopIDHere"] = {
        configuration_options = {},
        enabled = true,
      }
}


7. Add multiple mods by adding a comma (,) after the bracket, as seen in this template:
return {

      ["workshop-WorkshopIDHere"] = {
        configuration_options = {},
        enabled = true,
      },
      ["workshop-WorkshopIDHere"] = {
        configuration_options = {},
        enabled = true,
      },
      ["workshop-WorkshopIDHere"] = {
        configuration_options = {},
        enabled = true,
      }
}


8. Once finished editing, choose Create File.


9. Name the file modoverrides.lua.


10. Next, navigate to the home/container/mods directory.


11. Open the


12. Add the following string for each mod: ServerModSetup(WorkshopID) to the bottom of the file, separated per line.


13. Start the server.


14. The server listing will display any installed mods.


Was this answer helpful?

0
« Back