Jump to content

Need Help - Dedi Server runs but without Mods


Recommended Posts

Hola Klei Forum,

I Know its not a Big problem but i tryd to run a Dedicated server and watched some tutorials etc.. The Server itself runs for now good but for no reason it runs without a singel mod i did everything from the offical Tutorial for it from the klei forums and one from Tonio on steam but seems i cant get it work i set up all what needed currently. Tell me when u need some more details or specific informations =)

every help is useful

Greetings

12 minutes ago, Muche said:

Could you post your dedicated_server_mods_setup.lua, modoverrides.lua, and server_log.txt files that you have so far (including the full path they are residing in)?

Sure i can =)

- Path -
- "dedicated_server_mods_setup" = C:\steamcmd\steamapps\common\Don't Starve Together Dedicated Server\mods

- "Server Log" and "modoverrides" is from = C:\Users\MyUserName\Documents\Klei\DoNotStarveTogether\MyDediServer\Master

Didnt know if i should post cave server log too hope did it right.

Greetings

dedicated_server_mods_setup.lua

server_log.txt

modoverrides.lua

Hi @SenpaiArtorias

it's because your modoverrides.lua is not loaded:

[00:00:04]: ERROR: Failed to load modoverrides.lua

when i check your modoverrides.lua, it's just problem in end:

Spoiler

return {
["workshop-352499675"] = { --Resurrection Shelter
    enabled = true,
    configuration_options =
    {
        ["Mode"] = "Hard",
        ["ShelterUses"] = "20",
        ["ShelterLight"] = "yes",
    }
},    
["workshop-359424598"] = { --Regeneration
    enabled = true,
    configuration_options =
    {
        ["HUNGER_PERCENT_NEEDED"] = 0.7,
        ["HEALTH_BASE_REGEN"] = 0.05,
        ["HEALTH_MIN_REGEN_PERCENT"] = 0.1,
        ["HEALTH_PERCENT_NEEDED"] = 0.8,
        ["SANITY_BASE_REGEN"] = 0.035,
        ["SANITY_MIN_REGEN_PERCENT"] = 0.1,
        ["Health_Widget"] = 1,
        ["Sanity_Widget"] = 1,
        ["Hunger_Drain"] = 1.5,
        ["Sanity_Drain"] = 1,
    }
},
--#Marble Trees
["workshop-363989569"] = { enabled = true },
--#Spider Blade
["workshop-365170680"] = { enabled = true },
--#Extra Equip Slots
["workshop-375850593"] = { enabled = true },
--#Health Info
["workshop-375859599"] = { enabled = true },
--#Global Player Positions
["workshop-378160973"] = { enabled = true },
--#Mineable Gems
["workshop-380423963"] = { enabled = true },
--#Waiter 101
["workshop-381565292"] = { enabled = true },
--#Breakable Ice
["workshop-385979230"] = { enabled = true },
--#Golden Spear
["workshop-386087632"] = { enabled = true },
--#Spike Traps
["workshop-396822875"] = { enabled = true },
--#Fire and Wall Protection
["workshop-400409675"] = { enabled = true },
--#Better Wall HP
["workshop-402767007"] = { enabled = true },
--#Ownership
["workshop-404161345"] = { enabled = true },
--#Craftable Gears
["workshop-409833317"] = { enabled = true },
--#Steampunk
["workshop-418604101"] = { enabled = true },
--#Beefalo Milk
["workshop-436654027"] = { enabled = true },
--#New Items Pack
["workshop-436897772"] = { enabled = true },
--#Sort Inventory
["workshop-444438334"] = { enabled = true },
--#More Actions
["workshop-447092740"] = { enabled = true },
--#Food Values and Item Tooltips
["workshop-458940297"] = { enabled = true },
--#Personal Chester
["workshop-463740026"] = { enabled = true },
--#No Thermal Stone Durability
["workshop-466732225"] = { enabled = true },
--#Archery Mod
["workshop-488009136"] = { enabled = true },
--#Tweak Tools
["workshop-494699184"] = { enabled = true },
--#Quick Pick
["workshop-501385076"] = { enabled = true },
--#Advanced World Generation
["workshop-503187227"] = { enabled = true },
--#Modify Ownership
["workshop-599501490"] = { enabled = true },
--#Storeroom
["workshop-623749604"] = { enabled = true },
--#Treasure Chests
["workshop-633947530"] = { enabled = true },
--#Advanced Farms
["workshop-650779849"] = { enabled = true },
--#Mandrake Tree
["workshop-659459255"] = { enabled = true }
}
}

try like that:

Spoiler

return {
["workshop-352499675"] = { --Resurrection Shelter
    enabled = true,
    configuration_options =
    {
        ["Mode"] = "Hard",
        ["ShelterUses"] = "20",
        ["ShelterLight"] = "yes",
    }
},    
["workshop-359424598"] = { --Regeneration
    enabled = true,
    configuration_options =
    {
        ["HUNGER_PERCENT_NEEDED"] = 0.7,
        ["HEALTH_BASE_REGEN"] = 0.05,
        ["HEALTH_MIN_REGEN_PERCENT"] = 0.1,
        ["HEALTH_PERCENT_NEEDED"] = 0.8,
        ["SANITY_BASE_REGEN"] = 0.035,
        ["SANITY_MIN_REGEN_PERCENT"] = 0.1,
        ["Health_Widget"] = 1,
        ["Sanity_Widget"] = 1,
        ["Hunger_Drain"] = 1.5,
        ["Sanity_Drain"] = 1,
    }
},
--#Marble Trees
["workshop-363989569"] = { enabled = true },
--#Spider Blade
["workshop-365170680"] = { enabled = true },
--#Extra Equip Slots
["workshop-375850593"] = { enabled = true },
--#Health Info
["workshop-375859599"] = { enabled = true },
--#Global Player Positions
["workshop-378160973"] = { enabled = true },
--#Mineable Gems
["workshop-380423963"] = { enabled = true },
--#Waiter 101
["workshop-381565292"] = { enabled = true },
--#Breakable Ice
["workshop-385979230"] = { enabled = true },
--#Golden Spear
["workshop-386087632"] = { enabled = true },
--#Spike Traps
["workshop-396822875"] = { enabled = true },
--#Fire and Wall Protection
["workshop-400409675"] = { enabled = true },
--#Better Wall HP
["workshop-402767007"] = { enabled = true },
--#Ownership
["workshop-404161345"] = { enabled = true },
--#Craftable Gears
["workshop-409833317"] = { enabled = true },
--#Steampunk
["workshop-418604101"] = { enabled = true },
--#Beefalo Milk
["workshop-436654027"] = { enabled = true },
--#New Items Pack
["workshop-436897772"] = { enabled = true },
--#Sort Inventory
["workshop-444438334"] = { enabled = true },
--#More Actions
["workshop-447092740"] = { enabled = true },
--#Food Values and Item Tooltips
["workshop-458940297"] = { enabled = true },
--#Personal Chester
["workshop-463740026"] = { enabled = true },
--#No Thermal Stone Durability
["workshop-466732225"] = { enabled = true },
--#Archery Mod
["workshop-488009136"] = { enabled = true },
--#Tweak Tools
["workshop-494699184"] = { enabled = true },
--#Quick Pick
["workshop-501385076"] = { enabled = true },
--#Advanced World Generation
["workshop-503187227"] = { enabled = true },
--#Modify Ownership
["workshop-599501490"] = { enabled = true },
--#Storeroom
["workshop-623749604"] = { enabled = true },
--#Treasure Chests
["workshop-633947530"] = { enabled = true },
--#Advanced Farms
["workshop-650779849"] = { enabled = true },
--#Mandrake Tree
["workshop-659459255"] = { enabled = true }
}

 

26 minutes ago, ToNiO55 said:

Hi @SenpaiArtorias

it's because your modoverrides.lua is not loaded:


[00:00:04]: ERROR: Failed to load modoverrides.lua

when i check your modoverrides.lua, it's just problem in end:

  Reveal hidden contents

return {
["workshop-352499675"] = { --Resurrection Shelter
    enabled = true,
    configuration_options =
    {
        ["Mode"] = "Hard",
        ["ShelterUses"] = "20",
        ["ShelterLight"] = "yes",
    }
},    
["workshop-359424598"] = { --Regeneration
    enabled = true,
    configuration_options =
    {
        ["HUNGER_PERCENT_NEEDED"] = 0.7,
        ["HEALTH_BASE_REGEN"] = 0.05,
        ["HEALTH_MIN_REGEN_PERCENT"] = 0.1,
        ["HEALTH_PERCENT_NEEDED"] = 0.8,
        ["SANITY_BASE_REGEN"] = 0.035,
        ["SANITY_MIN_REGEN_PERCENT"] = 0.1,
        ["Health_Widget"] = 1,
        ["Sanity_Widget"] = 1,
        ["Hunger_Drain"] = 1.5,
        ["Sanity_Drain"] = 1,
    }
},
--#Marble Trees
["workshop-363989569"] = { enabled = true },
--#Spider Blade
["workshop-365170680"] = { enabled = true },
--#Extra Equip Slots
["workshop-375850593"] = { enabled = true },
--#Health Info
["workshop-375859599"] = { enabled = true },
--#Global Player Positions
["workshop-378160973"] = { enabled = true },
--#Mineable Gems
["workshop-380423963"] = { enabled = true },
--#Waiter 101
["workshop-381565292"] = { enabled = true },
--#Breakable Ice
["workshop-385979230"] = { enabled = true },
--#Golden Spear
["workshop-386087632"] = { enabled = true },
--#Spike Traps
["workshop-396822875"] = { enabled = true },
--#Fire and Wall Protection
["workshop-400409675"] = { enabled = true },
--#Better Wall HP
["workshop-402767007"] = { enabled = true },
--#Ownership
["workshop-404161345"] = { enabled = true },
--#Craftable Gears
["workshop-409833317"] = { enabled = true },
--#Steampunk
["workshop-418604101"] = { enabled = true },
--#Beefalo Milk
["workshop-436654027"] = { enabled = true },
--#New Items Pack
["workshop-436897772"] = { enabled = true },
--#Sort Inventory
["workshop-444438334"] = { enabled = true },
--#More Actions
["workshop-447092740"] = { enabled = true },
--#Food Values and Item Tooltips
["workshop-458940297"] = { enabled = true },
--#Personal Chester
["workshop-463740026"] = { enabled = true },
--#No Thermal Stone Durability
["workshop-466732225"] = { enabled = true },
--#Archery Mod
["workshop-488009136"] = { enabled = true },
--#Tweak Tools
["workshop-494699184"] = { enabled = true },
--#Quick Pick
["workshop-501385076"] = { enabled = true },
--#Advanced World Generation
["workshop-503187227"] = { enabled = true },
--#Modify Ownership
["workshop-599501490"] = { enabled = true },
--#Storeroom
["workshop-623749604"] = { enabled = true },
--#Treasure Chests
["workshop-633947530"] = { enabled = true },
--#Advanced Farms
["workshop-650779849"] = { enabled = true },
--#Mandrake Tree
["workshop-659459255"] = { enabled = true }
}
}

try like that:

  Reveal hidden contents

return {
["workshop-352499675"] = { --Resurrection Shelter
    enabled = true,
    configuration_options =
    {
        ["Mode"] = "Hard",
        ["ShelterUses"] = "20",
        ["ShelterLight"] = "yes",
    }
},    
["workshop-359424598"] = { --Regeneration
    enabled = true,
    configuration_options =
    {
        ["HUNGER_PERCENT_NEEDED"] = 0.7,
        ["HEALTH_BASE_REGEN"] = 0.05,
        ["HEALTH_MIN_REGEN_PERCENT"] = 0.1,
        ["HEALTH_PERCENT_NEEDED"] = 0.8,
        ["SANITY_BASE_REGEN"] = 0.035,
        ["SANITY_MIN_REGEN_PERCENT"] = 0.1,
        ["Health_Widget"] = 1,
        ["Sanity_Widget"] = 1,
        ["Hunger_Drain"] = 1.5,
        ["Sanity_Drain"] = 1,
    }
},
--#Marble Trees
["workshop-363989569"] = { enabled = true },
--#Spider Blade
["workshop-365170680"] = { enabled = true },
--#Extra Equip Slots
["workshop-375850593"] = { enabled = true },
--#Health Info
["workshop-375859599"] = { enabled = true },
--#Global Player Positions
["workshop-378160973"] = { enabled = true },
--#Mineable Gems
["workshop-380423963"] = { enabled = true },
--#Waiter 101
["workshop-381565292"] = { enabled = true },
--#Breakable Ice
["workshop-385979230"] = { enabled = true },
--#Golden Spear
["workshop-386087632"] = { enabled = true },
--#Spike Traps
["workshop-396822875"] = { enabled = true },
--#Fire and Wall Protection
["workshop-400409675"] = { enabled = true },
--#Better Wall HP
["workshop-402767007"] = { enabled = true },
--#Ownership
["workshop-404161345"] = { enabled = true },
--#Craftable Gears
["workshop-409833317"] = { enabled = true },
--#Steampunk
["workshop-418604101"] = { enabled = true },
--#Beefalo Milk
["workshop-436654027"] = { enabled = true },
--#New Items Pack
["workshop-436897772"] = { enabled = true },
--#Sort Inventory
["workshop-444438334"] = { enabled = true },
--#More Actions
["workshop-447092740"] = { enabled = true },
--#Food Values and Item Tooltips
["workshop-458940297"] = { enabled = true },
--#Personal Chester
["workshop-463740026"] = { enabled = true },
--#No Thermal Stone Durability
["workshop-466732225"] = { enabled = true },
--#Archery Mod
["workshop-488009136"] = { enabled = true },
--#Tweak Tools
["workshop-494699184"] = { enabled = true },
--#Quick Pick
["workshop-501385076"] = { enabled = true },
--#Advanced World Generation
["workshop-503187227"] = { enabled = true },
--#Modify Ownership
["workshop-599501490"] = { enabled = true },
--#Storeroom
["workshop-623749604"] = { enabled = true },
--#Treasure Chests
["workshop-633947530"] = { enabled = true },
--#Advanced Farms
["workshop-650779849"] = { enabled = true },
--#Mandrake Tree
["workshop-659459255"] = { enabled = true }
}

 

 

@ToNiO55 Okay tested shortly seems to work now feels bad when the fault is just a typo xD Thank u for the support =) ur steam tutorial helped a lot.

Now i only need to test further if every mods working and checking the configurations c: .

Greetings

@ToNiO55 Can you help me as well? I followed the instructions for the dedicated server quick set up then used a hosted server to generate modoverrides.lua and leveldataoverride.lua for me but I can't get any server side mods to work.

dedicated_server_mods_setup.lua is in the directory H:\Program Files (x86)\Steam\SteamApps\common\Don't Starve Together Dedicated Server\mods

 

server_log.txt

modoverrides.lua

leveldataoverride.lua

dedicated_server_mods_setup.lua

Hey @sahin011, ToNiO55 doesn't seem to be on right now so I'll try and help. Based on your log, you seem be running the Windows Quick Setup Guide, correct? Which means you're using steamcmd to run the server, then that means the dedicated_server_mods_setup.lua you should be editing is in the steamcmd folder (Steamcmd\SteamApps\common\Don't Starve Together Dedicated Server\mods) and not the one in (Steam\SteamApps\common\Don't Starve Together Dedicated Server\mods) since the Steam location is for the dedicated server tool that is accessible through the Steam Client.

Look for the path I mentioned and edit that instead. Report back if it worked or not. Cheers.

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...