Jump to content

Server Runs but No Mods load or I get infinite Black Screen


Recommended Posts

Hey

 

So I've set myself up with dedicated server from Citadel Servers and I'm trying to add mods to it. Currently I can get everything running perfectly without mods. When I add mods they supposedly (according to the console and the fact that it states the lobby is up) work however when I try to connect, I get a black screen. I've gone through the mods individually and all of them give me a black screen (even ones that are updated and are compatible).  Anyone know what I'm doing wrong?

 

Small Test of the dedicated_server_mods_setup.lua

--There are two functions that will install mods, ServerModSetup and ServerModCollectionSetup. Put the calls to the functions in this file and they will be executed on boot.

--ServerModSetup takes a string of a specific mod's Workshop id. It will download and install the mod to your mod directory on boot.
--The Workshop id can be found at the end of the url to the mod's Workshop page.
--Example: http://steamcommunity.com/sharedfiles/filedetails/?id=350811795
--ServerModSetup("350811795")

--ServerModCollectionSetup takes a string of a specific mod's Workshop id. It will download all the mods in the collection and install them to the mod directory on boot.
--The Workshop id can be found at the end of the url to the collection's Workshop page.
--Example: http://steamcommunity.com/sharedfiles/filedetails/?id=379114180
--ServerModCollectionSetup("379114180")

--Characters

--Geralt
ServerModSetup("workshop-468373577")

--Gnar, the Missing Link
ServerModSetup("workshop-446455993")

--Horo the Wise Wolf
ServerModSetup("workshop-441957490")

--Jack Skellington
ServerModSetup("workshop-436441644")

--More DST Characters
ServerModSetup("workshop-343762271")

--Saber Lion
ServerModSetup("workshop-431003525")

--Vergence the Raptor
ServerModSetup("workshop-368228088")

--Gameplay

--Tungsten Mod
ServerModSetup("workshop-358015908")

 

 

And here is a test of the modoverrides.lua

--Characters

return {
--Geralt
["workshop-468373577"] = { enabled = false },

--Gnar, the Missing Link
["workshop-446455993"] = { enabled = false },

--Horo the Wise Wolf
["workshop-441957490"] = { enabled = false },

--Jack Skellington
["workshop-436441644"] = { enabled = false },

--More DST Characters
["workshop-343762271"] = { enabled = false },

--Saber Lion
["workshop-431003525"] = { enabled = false },

--Vergence the Raptor
["workshop-368228088"] = { enabled = false },

--Gameplay

--Tungsten
["workshop-358015908"] = { enabled = false,
configuration_options =
{
--Tough Stone (Tungsten Source Boulder)

{
name = "toughstone_regions",
label = "Tough Stone Regions",
options =
{
{description = "Stone Biomes", data = 1},
{description = "SBs+Marsh", data = 2},
{description = "SBs+M+Forrest", data = 3},
{description = "Everywhere", data = 4},
},
default = 2,
},

{
name = "toughstone_rate",
label = "Tough Stone Rate",
options =
{
{description = "Default again", data = 1.5},
{description = "Super Rare", data = 0.3},
{description = "Rare", data = 0.6},
{description = "Default", data = 1.4},
{description = "Common", data = 2.0},
{description = "Lots!", data = 3.3},
},
default = 1.4,
},

{
name = "throwable_ts",
label = "Throwable Spears Mod",
options =
{
{description = "Enabled", data = 1},
{description = "Disabled", data = 0},
},
default = 0,
},


}

}

}
Link to comment
Share on other sites

Additional Mods I wish too soon implement. 

 

--Always On Status
ServerModSetup("workshop-376333686")

--Craftable Gears For DST
ServerModSetup("workshop-353697884")

--Deluxe Campfires 2.11
ServerModSetup("workshop-444235588")

--DST Advanced Farming
ServerModSetup("workshop-370373189")

--DST Storm Cellar
ServerModSetup("workshop-382177939")

--Extra Equip Slots
ServerModSetup("workshop-375850593")

--Fast Travel
ServerModSetup("workshop-458587300")

--Food Values - Item Tooltips
ServerModSetup("workshop-458940297")

--Friendly Flingomatics
ServerModSetup("workshop-438293817")

--Geometric Placement
ServerModSetup("workshop-351325790")

--Gesture Wheel
ServerModSetup("workshop-352373173")

--Global Positions
ServerModSetup("workshop-378160973")

--Gold Boulder Map Icon
ServerModSetup("workshop-457855760")

--Golden Spear
ServerModSetup("workshop-386087632")

--Growable Marble Trees
ServerModSetup("workshop-363989569")

--Health Info
ServerModSetup("workshop-375859599")

--Hungry wWith a Chance of Meatballs
ServerModSetup("workshop-396404850")

--Ice Fling Range Check
ServerModSetup("workshop-412291722")

--Increased Stack Size
ServerModSetup("workshop-374550642")

--Koalefants
ServerModSetup("workshop-354533909")

--Large Chest
ServerModSetup("workshop-396026892")

--Minimap HUD
ServerModSetup("workshop-345692228")

--More Actions
ServerModSetup("workshop-447092740")

--Personal Chesters
ServerModSetup("workshop-463740026")

--Renewable World
ServerModSetup("workshop-369588618")

--Respawnable Gears
ServerModSetup("workshop-362022168")

--Restart
ServerModSetup("workshop-462434129")

--Smarter Crock Pot
ServerModSetup("workshop-365119238")

--Slower Sanity Drain
ServerModSetup("workshop-370047879")

--Tungsten Mod
ServerModSetup("workshop-358015908")

--Wall Gates
ServerModSetup("workshop-357875628")

--Waiter 101 Togeter v3.1
ServerModSetup("workshop-381565292")
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...