Mercyquew Posted November 10, 2020 Share Posted November 10, 2020 modoverrides.lua May I get some help fixing my modoverrides.lua file please. I'm trying to get languages and minor aspects tweaked, while not going overboard. Any help would be greatly appreciated! -- Enabling of mods. return { -- Character mods. ["workshop-1108032281"] = { enabled = true }, -- [DST] WhaRang ["workshop-1699194522"] = { enabled = true }, -- Myth characters-神话人物 ["workshop-1905387692"] = { enabled = true }, -- Warfarin: The Lonesome ["workshop-2183879324"] = { enabled = true }, -- Whemy the Witch -- Character mods, with config. ["workshop-1419605993"] = { enabled = true, configuration_options = { Language = false } }, -- [DST][Onmyoji]Puppet Girl -- Configured Mods. ["workshop-407977022"] = { enabled = true, configuration_options = { chilltime = 0.37 } }, -- Chester Family ["workshop-613706333"] = { enabled = true, configuration_options = { play_cutscene = false } }, -- Reincarnation ["workshop-1991746508"] = { enabled = true, configuration_options = { Language = "ENGLISH" } }, -- Myth Words theme-神话书说 ["workshop-345692228"] = { enabled = true }, -- Minimap HUD ["workshop-378160973"] = { enabled = true }, -- Global Positions ["workshop-381565292"] = { enabled = true }, -- Waiter 101 v7.64 ["workshop-418604101"] = { enabled = true }, -- Steampunk DST ["workshop-444235588"] = { enabled = true }, -- Deluxe Campfires 2.11 ["workshop-466732225"] = { enabled = true }, -- No Thermal Stone Durability ["workshop-666155465"] = { enabled = true }, -- Show Me (Origin) ["workshop-787954095"] = { enabled = true }, -- Magic Bottle Lanterns (DST) ["workshop-900608347"] = { enabled = true }, -- Alternative Spells ["workshop-922910567"] = { enabled = true } -- Booster Shot Cave Recipe ["workshop-1101769273"] = { enabled = true }, -- Cave Guardian ["workshop-1185229307"] = { enabled = true }, -- Epic Healthbar ["workshop-1234341720"] = { enabled = true }, -- More Weapons and Magic ["workshop-1326302617"] = { enabled = true }, -- Mine Utility ["workshop-1587240158"] = { enabled = true }, -- Additional Equipment [Fixed] ["workshop-2078243581"] = { enabled = true }, -- Display Attack Range ["workshop-2218713347"] = { enabled = true } -- Farming Extension } Link to comment https://forums.kleientertainment.com/forums/topic/123298-how-do-i-do-server-mods-enableconfig-setup/ Share on other sites More sharing options...
Daniel86268 Posted November 10, 2020 Share Posted November 10, 2020 I don't see any syntax errors right now. The only things that I see is your text indentation (I hope that's the correct word). For example: 1. The cave guardian line is too far to the right compared to the leading and following lines. 2. Too many empty lines kinda make code hard to read for me 3. Opening and closing brackets should be on the same coloumn. 4. While editing the code you've posted, I noticed that you used tabs and spaces randomly. I have no idea if that might've caused any issues, but it might've caused that wonky formatting. (I didn't download the original code to check) Practicially I'd format it like this: Spoiler -- Enabling of mods. return { -- Character mods. ["workshop-1108032281"] = { enabled = true }, -- [DST] WhaRang ["workshop-1699194522"] = { enabled = true }, -- Myth characters-神话人物 ["workshop-1905387692"] = { enabled = true }, -- Warfarin: The Lonesome ["workshop-2183879324"] = { enabled = true }, -- Whemy the Witch -- Character mods, with config. ["workshop-1419605993"] = { enabled = true, configuration_options = { Language = false } }, -- [DST][Onmyoji]Puppet Girl -- Configured Mods. ["workshop-407977022"] = { enabled = true, configuration_options = { chilltime = 0.37 } }, -- Chester Family ["workshop-613706333"] = { enabled = true, configuration_options = { play_cutscene = false } }, -- Reincarnation ["workshop-1991746508"] = { enabled = true, configuration_options = { Language = "ENGLISH" } }, -- Myth Words theme-神话书说 ["workshop-345692228"] = { enabled = true }, -- Minimap HUD ["workshop-378160973"] = { enabled = true }, -- Global Positions ["workshop-381565292"] = { enabled = true }, -- Waiter 101 v7.64 ["workshop-418604101"] = { enabled = true }, -- Steampunk DST ["workshop-444235588"] = { enabled = true }, -- Deluxe Campfires 2.11 ["workshop-466732225"] = { enabled = true }, -- No Thermal Stone Durability ["workshop-666155465"] = { enabled = true }, -- Show Me (Origin) ["workshop-787954095"] = { enabled = true }, -- Magic Bottle Lanterns (DST) ["workshop-900608347"] = { enabled = true }, -- Alternative Spells ["workshop-922910567"] = { enabled = true } -- Booster Shot Cave Recipe ["workshop-1101769273"] = { enabled = true }, -- Cave Guardian ["workshop-1185229307"] = { enabled = true }, -- Epic Healthbar ["workshop-1234341720"] = { enabled = true }, -- More Weapons and Magic ["workshop-1326302617"] = { enabled = true }, -- Mine Utility ["workshop-1587240158"] = { enabled = true }, -- Additional Equipment [Fixed] ["workshop-2078243581"] = { enabled = true }, -- Display Attack Range ["workshop-2218713347"] = { enabled = true } -- Farming Extension } Did you run into any issues with your config? Link to comment https://forums.kleientertainment.com/forums/topic/123298-how-do-i-do-server-mods-enableconfig-setup/#findComment-1389788 Share on other sites More sharing options...
JazzyGames Posted January 7, 2021 Share Posted January 7, 2021 ["workshop-922910567"] = { enabled = true } -- Booster Shot Cave Recipe I know I'm late to the party but this line needs a comma. Link to comment https://forums.kleientertainment.com/forums/topic/123298-how-do-i-do-server-mods-enableconfig-setup/#findComment-1414276 Share on other sites More sharing options...
Recommended Posts
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.