Jump to content

Recommended Posts

It's the configuration options bit that causes my dedicated server to fail to load the lua file, but I can't figure out why. Commas seem to be in the right places, etc. I also can't seem to find a consistent template on config options that actually works; the wiki guide sucks and is outdated, and there's nothing else I've found. Lend me a hand?

Oh, and as a side note, the Scythe mod doesn't have a workshop folder in either DST or DST Dedicated, and it is definitely installed.

Screenshot 2022-03-13 184320.png

Edited by aura40

You can just have a look at your already created worlds, they also have a modoverrides.lua.

Example from one of my worlds:

Spoiler

return {
  ["workshop-1207269058"]={ configuration_options={  }, enabled=true },
  ["workshop-2283028733"]={
    configuration_options={
      amulet_slot=true,
      backpack_slot=true,
      chesspiece_fix=true,
      compass_slot=false,
      drop_hand_item_when_heavy=true,
      enable_ui=0,
      render_strategy="neck",
      show_compass=false,
      slots_num=0,
      snurtle_remove_armor=false 
    },
    enabled=true 
  } 
}

 

As you can see, configuration_options needs to be in the table of a certain mod. Your configuration_options are just written there without beeing assigned to a mod, this is probably your problem.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...