Jump to content

dedicated server "failed to load modoverrides.lua


Recommended Posts

return (
--#Health Info
["workshop-375859599"] = { enabled = true },

--#Minimap HUD
["workshop-345692228"] = { enabled = true }, 

--#Durable Tools
["workshop-358297643"] = { enabled = true },

--#bee nice
["workshop-361994110"] = { enabled = true },

--#Digable Reeds
["workshop-367304592"] = { enabled = true },

--#stumps grow
["workshop-369083494"] = { enabled = true },

--#Additional equipslots
["workshop-375919633"] = { enabled = true },

--#Health Info
["workshop-375859599"] = { enabled = true },

--#Global Positions
["workshop-378160973"] = { enabled = true },

--#Renewable Bees
["workshop-430427326"] = { enabled = true },

--#The Nightmare
["workshop-457266786"] = { enabled = true },

--#Fast Travel
["workshop-458587300"] = { enabled = true },

--#Food Values
["workshop-458940297"] = { enabled = true },

--#Break The Ice
["workshop-488018406"] = { enabled = true },

--#Chopper
["workshop-490153236"] = { enabled = true },

--#Rot Machine
["workshop-510956288"] = { enabled = true },

--#Birds and Berries and Trees and Flowers for Friends
["workshop-522117250"] = { enabled = true },

--#Personal islands Newbies version
["workshop-533350315"] = { enabled = true },

--#Never Perish Icebox
["workshop-541537428"] = { enabled = true },

--#Shovel Knight
["workshop-603430928"] = { enabled = true },

--#Storeroom
["workshop-623749604"] = { enabled = true },

--#Mandrake Tree
["workshop-659459255"] = { enabled = true },

--#Weeseeks Balanced Edition 
["workshop-702641479"] = { enabled = true },

--#Increase Storage
["workshop-728459184"] = { enabled = true },

--#45 Inventory Slots
["workshop-786556008"] = { enabled = true },

--#Increased Stack Size :200
["workshop-875469113"] = { enabled = true },

--#Renewable Graves
["workshop-894593657"] = { enabled = true },

--#Stickman
["workshop-919425110"] = { enabled = true },

--#More Pets heart
["workshop-932975687"] = { enabled = true },

--#DsMMO
["workshop-942328680"] = { enabled = true },

--#The Maxwells Revenge
["workshop-947462293"] = { enabled = true },

--#Moving Box
["workshop-1079538195"] = { enabled = true }
)

i have followed this guide to set up my dedicated server 

i have put the modoverrides.lua in caves and master folders

 

Link to comment
Share on other sites

10 hours ago, Daniel86268 said:

It's probably because you used "return(<mods>)" instead of "return{<mods>}". Everything else looks fine.

thank you so much i fixed the code but none the mods still wont load for some reason

return {
--#Health Info
["workshop-375859599"] = { enabled = true },

--#Minimap HUD
["workshop-345692228"] = { enabled = true }, 

--#Durable Tools
["workshop-358297643"] = { enabled = true },

--#bee nice
["workshop-361994110"] = { enabled = true },

--#Digable Reeds
["workshop-367304592"] = { enabled = true },

--#stumps grow
["workshop-369083494"] = { enabled = true },

--#Additional equipslots
["workshop-375919633"] = { enabled = true },

--#Health Info
["workshop-375859599"] = { enabled = true },

--#Global Positions
["workshop-378160973"] = { enabled = true },

--#Renewable Bees
["workshop-430427326"] = { enabled = true },

--#The Nightmare
["workshop-457266786"] = { enabled = true },

--#Fast Travel
["workshop-458587300"] = { enabled = true },

--#Food Values
["workshop-458940297"] = { enabled = true },

--#Break The Ice
["workshop-488018406"] = { enabled = true },

--#Chopper
["workshop-490153236"] = { enabled = true },

--#Rot Machine
["workshop-510956288"] = { enabled = true },

--#Birds and Berries and Trees and Flowers for Friends
["workshop-522117250"] = { enabled = true },

--#Personal islands Newbies version
["workshop-533350315"] = { enabled = true },

--#Never Perish Icebox
["workshop-541537428"] = { enabled = true },

--#Shovel Knight
["workshop-603430928"] = { enabled = true },

--#Storeroom
["workshop-623749604"] = { enabled = true },

--#Mandrake Tree
["workshop-659459255"] = { enabled = true },

--#Weeseeks Balanced Edition 
["workshop-702641479"] = { enabled = true },

--#Increase Storage
["workshop-728459184"] = { enabled = true },

--#45 Inventory Slots
["workshop-786556008"] = { enabled = true },

--#Increased Stack Size :200
["workshop-875469113"] = { enabled = true },

--#Renewable Graves
["workshop-894593657"] = { enabled = true },

--#Stickman
["workshop-919425110"] = { enabled = true },

--#More Pets heart
["workshop-932975687"] = { enabled = true },

--#DsMMO
["workshop-942328680"] = { enabled = true },

--#The Maxwells Revenge
["workshop-947462293"] = { enabled = true },

--#Moving Box
["workshop-1079538195"] = { enabled = true }
}

if anyone can help me i would appreciate it

Link to comment
Share on other sites

I saw something you left, I did on Linux machine, (I am gonna copy the text from this post)

You need go to the following directory:

cd /home/dst/server_dst/mods

So you need to edit file: dedicated_server_mods_setup.lua

nano /home/dst/server_dst/mods/dedicated_server_mods_setup.lua

Here is a simple example to how add your mods in this file:

--#Global Position
ServerModSetup("378160973")

--#Ancient Altar
ServerModSetup("481765222")

--#Health Info
ServerModSetup("375859599")

Restart the server

 

I did it for my server and works, tell me if it works for you.

 

Best regards,

Irken

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...