Guest User

Not working modoverrides.lua

a guest
Dec 20th, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.61 KB | None | 0 0
  1. return
  2.  
  3. {
  4.  
  5.  
  6.  
  7. ["workshop-356006343"] = { enabled = true },  --Nature's Still Wild
  8.  
  9. ["workshop-369228986"] = { enabled = true }, --Madeline non op
  10.  
  11. ["workshop-378160973"] = { enabled = true }, --Global positions
  12.  
  13. ["workshop-381565292"] = { enabled = true }, --Waiter
  14.  
  15. ["workshop-394470072"] = { enabled = true }, --Additional Set pieces
  16.  
  17. ["workshop-396026892"] = { enabled = true }, --Large Chests
  18.  
  19. ["workshop-396822875"] = { enabled = true }, --Spike Traps
  20.  
  21. ["workshop-405506326"] = { enabled = true }, --Dynamic Season Length
  22.  
  23. ["workshop-435988740"] = { enabled = true }, --Krampusnacht
  24.  
  25. ["workshop-436654027"] = { enabled = true }, --Beefalo Milk and cheese
  26.  
  27. ["workshop-437521942"] = { enabled = true }, --Party Dance
  28.  
  29. ["workshop-438827295"] = { enabled = true }, --Fashion
  30.  
  31. ["workshop-444235588"] = { enabled = true }, --Deluxe Fire Pits
  32.  
  33. ["workshop-445371564"] = { enabled = true }, --Default's Mod pack
  34.  
  35. ["workshop-453114504"] = { enabled = true }, --Wortox the demon king
  36.  
  37. ["workshop-465481756"] = { enabled = true }, --Fed the bunny
  38.  
  39. ["workshop-469134741"] = { enabled = true }, --Winnie
  40.  
  41. ["workshop-481031786"] = { enabled = true }, --Diggable Reeds
  42.  
  43. ["workshop-496249680"] = { enabled = true }, --Extra Equip Slots
  44.  
  45. ["workshop-506204512"] = { enabled = true }, --Fence Gates
  46.  
  47. ["workshop-507570226"] = { enabled = true }, --Snikety Tom
  48.  
  49. ["workshop-514078314"] = { enabled = true }, --Turfed
  50.  
  51. ["workshop-519266302"] = { enabled = true }, --Season Starting Items
  52.  
  53. ["workshop-370429117"] = { enabled = true }, --Unikitty
  54.  
  55. ["workshop-463718554"] = { enabled = true }
  56. --                                        ^^ ​This bracket ends the table workshop-463718554"]
  57. --                                        It, in this instance, should be removed as configuration_options
  58. --                                        is still part of this table!! We will need to put a comma in it's place.
  59.         configuration_options =
  60.  
  61.         {
  62.  
  63. STARTINGITEMS = false, --false = off, true = Give the player some starting items
  64.  
  65. SEASONSTARTINGITEMS = false, --false = off, true = Give the player some starting items that fit current season
  66.  
  67. NIGHTSTARTINGITEMS = false, --false = off, true = Give the players some starting items (a torch) if he joins during the night
  68.  
  69. PVPSTARTINGITEMS = true, --false = off, true = Give the player some starting items if it is a pvp server
  70.  
  71. CAVESTARTINGITEMS = false, --false = off, true = Give the player some starting items if it is a cave server
  72.  
  73. REVEALMAP = 1, --0 = off, 1 = reveal the roads on the minimap, 2 = reveal all
  74.  
  75. RENEWLIMITEDRESOURCES = 0, --0 = off, Number of days for average limited resource to regenerate (recommended between 6 and 72)
  76.  
  77. DRAGONFLYBALANCE = true, --false = off, true = Balance the dragonfly health (and other stats)
  78.  
  79. MAXMAXPLAYERS = 32, --6 = off, The maximum number of players that can join the server (not really needed for dedicated servers, as you can already override this)
  80.  
  81. REVIVERCRAFTPENALTY = true, --true = off, false = No penalty for crafting the revival item
  82.  
  83. DRYINGSPEEDMULTIPLIER = 1.2, --1 = off, The speed multiplier for the Drying Rack (recommended between 1.5 and 4)
  84.  
  85. FARMINGSPEEDMULTIPLIER = 1.2, --1 = off, The speed multiplier for Farms (recommended between 1.5 and 4)
  86.  
  87. BEESSPEEDMULTIPLIER = 1.2, --1 = off, The speed multiplier for Bee Boxes (recommended 1.2, 1.5 or 2)
  88.  
  89. KRAMPUSMULTIPLIER = 3, --1 = off, The multiplier for Krumpus to appear (recommended between 1.5 and 4)
  90.  
  91. RESIZEFIREPITS = true, --false = off, true = Make firepits have a larger collision area
  92.  
  93.             AMOUNTOFCHESTERS = 6, --1 = semi-off, 2-32: 2-32 Eye Bones will be created during world generation
  94.  
  95. CANHAUNT = 0, --2 = off, 0 = Can only haunt when it gives a possitive effect, 1 = Can also spawn bosses through haunting
  96.  
  97. GHOSTSANITYDRAIN = false, --true = off, false = No sanity drain when other players are ghosts
  98.  
  99. EMPTYINVENTORYDAYS = 5, --0 = off, -1 = Only empty inventory when player is kicked/banned, 1-5 = Player empties inventory when leaving the game within 1-5 days of joining
  100.  
  101. PREVENTSTEALINGDAYS = 0, --0 = off, 1-5 = Players cannot steal items within 1-5 days of joining
  102.  
  103. PREVENTDESTROYINGDAYS = 3, --0 = off, 1-5 = Players cannot destroy buildings within 1-5 days of joining, -1 = Players can never destroy buildings
  104.  
  105. PREVENTBURNING = 3, --0 = off, 1-5 = Players cannot burn objects/items within 1-5 days of joining
  106.  
  107. SPREADFIRE = 2, --2 = off, 0 = Fire does not spread, 1 = Fire spreads at halve range
  108. --            ^^ There needs to not be a comma here as it is the end of the table configuration_options
  109.         }
  110.  
  111.     }
  112. }
Advertisement
Add Comment
Please, Sign In to add comment