KitcheVadimas Posted December 20, 2015 Share Posted December 20, 2015 return{ ["workshop-356006343"] = { enabled = true }, --Nature's Still Wild["workshop-369228986"] = { enabled = true }, --Madeline non op["workshop-378160973"] = { enabled = true }, --Global positions["workshop-381565292"] = { enabled = true }, --Waiter["workshop-394470072"] = { enabled = true }, --Additional Set pieces["workshop-396026892"] = { enabled = true }, --Large Chests["workshop-396822875"] = { enabled = true }, --Spike Traps["workshop-405506326"] = { enabled = true }, --Dynamic Season Length["workshop-435988740"] = { enabled = true }, --Krampusnacht["workshop-436654027"] = { enabled = true }, --Beefalo Milk and cheese["workshop-437521942"] = { enabled = true }, --Party Dance["workshop-438827295"] = { enabled = true }, --Fashion["workshop-444235588"] = { enabled = true }, --Deluxe Fire Pits["workshop-445371564"] = { enabled = true }, --Default's Mod pack["workshop-453114504"] = { enabled = true }, --Wortox the demon king["workshop-465481756"] = { enabled = true }, --Fed the bunny["workshop-469134741"] = { enabled = true }, --Winnie["workshop-481031786"] = { enabled = true }, --Diggable Reeds["workshop-496249680"] = { enabled = true }, --Extra Equip Slots["workshop-506204512"] = { enabled = true }, --Fence Gates["workshop-507570226"] = { enabled = true }, --Snikety Tom["workshop-514078314"] = { enabled = true }, --Turfed["workshop-519266302"] = { enabled = true }, --Season Starting Items["workshop-370429117"] = { enabled = true }, --Unikitty["workshop-463718554"] = { enabled = true } configuration_options = {STARTINGITEMS = false, --false = off, true = Give the player some starting itemsSEASONSTARTINGITEMS = false, --false = off, true = Give the player some starting items that fit current seasonNIGHTSTARTINGITEMS = false, --false = off, true = Give the players some starting items (a torch) if he joins during the nightPVPSTARTINGITEMS = true, --false = off, true = Give the player some starting items if it is a pvp serverCAVESTARTINGITEMS = false, --false = off, true = Give the player some starting items if it is a cave serverREVEALMAP = 1, --0 = off, 1 = reveal the roads on the minimap, 2 = reveal allRENEWLIMITEDRESOURCES = 0, --0 = off, Number of days for average limited resource to regenerate (recommended between 6 and 72)DRAGONFLYBALANCE = true, --false = off, true = Balance the dragonfly health (and other stats)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)REVIVERCRAFTPENALTY = true, --true = off, false = No penalty for crafting the revival itemDRYINGSPEEDMULTIPLIER = 1.2, --1 = off, The speed multiplier for the Drying Rack (recommended between 1.5 and 4)FARMINGSPEEDMULTIPLIER = 1.2, --1 = off, The speed multiplier for Farms (recommended between 1.5 and 4)BEESSPEEDMULTIPLIER = 1.2, --1 = off, The speed multiplier for Bee Boxes (recommended 1.2, 1.5 or 2)KRAMPUSMULTIPLIER = 3, --1 = off, The multiplier for Krumpus to appear (recommended between 1.5 and 4)RESIZEFIREPITS = true, --false = off, true = Make firepits have a larger collision area AMOUNTOFCHESTERS = 6, --1 = semi-off, 2-32: 2-32 Eye Bones will be created during world generationCANHAUNT = 0, --2 = off, 0 = Can only haunt when it gives a possitive effect, 1 = Can also spawn bosses through haunting GHOSTSANITYDRAIN = false, --true = off, false = No sanity drain when other players are ghostsEMPTYINVENTORYDAYS = 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 joiningPREVENTSTEALINGDAYS = 0, --0 = off, 1-5 = Players cannot steal items within 1-5 days of joiningPREVENTDESTROYINGDAYS = 3, --0 = off, 1-5 = Players cannot destroy buildings within 1-5 days of joining, -1 = Players can never destroy buildingsPREVENTBURNING = 3, --0 = off, 1-5 = Players cannot burn objects/items within 1-5 days of joiningSPREADFIRE = 2, --2 = off, 0 = Fire does not spread, 1 = Fire spreads at halve range } }}Above is my entire Modoverrides.lua. For some reason, my server isn't enabling the mods. I don't know what's wrong with it; my friend doesn't know what's wrong with it. Also, how would I create configs for other mods? I copy/pasted from the mod maker for Fix Multiplayer. Additional set pieces especially needs working configs. Link to comment https://forums.kleientertainment.com/forums/topic/61054-switched-to-modoverrideslua-not-working/ Share on other sites More sharing options...
Gelatous Posted December 21, 2015 Share Posted December 21, 2015 Is your modoverrides.lua file in the same directory as your settings.ini file? You will need a modoverrides.lua in both your overworld and caves directory if you are hosting two worlds. As for the mod configuration, you can find a great deal about them if you go into each individual mod's modinfo.lua file and search for configuration_options Link to comment https://forums.kleientertainment.com/forums/topic/61054-switched-to-modoverrideslua-not-working/#findComment-699843 Share on other sites More sharing options...
Kam297 Posted December 21, 2015 Share Posted December 21, 2015 go to the directory modoverrides.lua is in and open your log.txt. up in the top 40ish lines it will might tell you that your server is having a problem reading your modoverrides.lua. can you confirm this and/or post your log?This error is most likely caused by incorrect... formatting I suppose the word is. I'll post my modoverrides so you can compare them side by side. so. In a table it's important to NOT put a comma after the last entry. It might seem trivial but a single comma at the end of a table will cause your modoverrides not to load. Also there was a problem with how your tables are set (really weird formatting so I cant realllyyy tell what's wrong, at first glance It seems like an extra bracket {}) up so compare them to mine and see if you can tell how they should be formatted correctly.Maybe also check this out if you're still having problems. http://dont-starve-game.wikia.com/wiki/Guides/Don’t_Starve_Together_Dedicated_Servers#Mods return{ ["workshop-356006343"] = { enabled = true }, --Nature's Still Wild["workshop-369228986"] = { enabled = true }, --Madeline non op["workshop-378160973"] = { enabled = true }, --Global positions["workshop-381565292"] = { enabled = true }, --Waiter["workshop-394470072"] = { enabled = true }, --Additional Set pieces["workshop-396026892"] = { enabled = true }, --Large Chests["workshop-396822875"] = { enabled = true }, --Spike Traps["workshop-405506326"] = { enabled = true }, --Dynamic Season Length["workshop-435988740"] = { enabled = true }, --Krampusnacht["workshop-436654027"] = { enabled = true }, --Beefalo Milk and cheese["workshop-437521942"] = { enabled = true }, --Party Dance["workshop-438827295"] = { enabled = true }, --Fashion["workshop-444235588"] = { enabled = true }, --Deluxe Fire Pits["workshop-445371564"] = { enabled = true }, --Default's Mod pack["workshop-453114504"] = { enabled = true }, --Wortox the demon king["workshop-465481756"] = { enabled = true }, --Fed the bunny["workshop-469134741"] = { enabled = true }, --Winnie["workshop-481031786"] = { enabled = true }, --Diggable Reeds["workshop-496249680"] = { enabled = true }, --Extra Equip Slots["workshop-506204512"] = { enabled = true }, --Fence Gates["workshop-507570226"] = { enabled = true }, --Snikety Tom["workshop-514078314"] = { enabled = true }, --Turfed["workshop-519266302"] = { enabled = true }, --Season Starting Items["workshop-370429117"] = { enabled = true }, --Unikitty["workshop-463718554"] = { enabled = true }-- ^^ [b][i]This bracket ends the table [/i][/b]["workshop-463718554"]-- [b][i]It, in this instance, should be removed as [/i][/b]configuration_options-- [i][b]is still part of this table!! We will need to put a comma in it's place.[/b][/i] configuration_options = {STARTINGITEMS = false, --false = off, true = Give the player some starting itemsSEASONSTARTINGITEMS = false, --false = off, true = Give the player some starting items that fit current seasonNIGHTSTARTINGITEMS = false, --false = off, true = Give the players some starting items (a torch) if he joins during the nightPVPSTARTINGITEMS = true, --false = off, true = Give the player some starting items if it is a pvp serverCAVESTARTINGITEMS = false, --false = off, true = Give the player some starting items if it is a cave serverREVEALMAP = 1, --0 = off, 1 = reveal the roads on the minimap, 2 = reveal allRENEWLIMITEDRESOURCES = 0, --0 = off, Number of days for average limited resource to regenerate (recommended between 6 and 72)DRAGONFLYBALANCE = true, --false = off, true = Balance the dragonfly health (and other stats)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)REVIVERCRAFTPENALTY = true, --true = off, false = No penalty for crafting the revival itemDRYINGSPEEDMULTIPLIER = 1.2, --1 = off, The speed multiplier for the Drying Rack (recommended between 1.5 and 4)FARMINGSPEEDMULTIPLIER = 1.2, --1 = off, The speed multiplier for Farms (recommended between 1.5 and 4)BEESSPEEDMULTIPLIER = 1.2, --1 = off, The speed multiplier for Bee Boxes (recommended 1.2, 1.5 or 2)KRAMPUSMULTIPLIER = 3, --1 = off, The multiplier for Krumpus to appear (recommended between 1.5 and 4)RESIZEFIREPITS = true, --false = off, true = Make firepits have a larger collision area AMOUNTOFCHESTERS = 6, --1 = semi-off, 2-32: 2-32 Eye Bones will be created during world generationCANHAUNT = 0, --2 = off, 0 = Can only haunt when it gives a possitive effect, 1 = Can also spawn bosses through haunting GHOSTSANITYDRAIN = false, --true = off, false = No sanity drain when other players are ghostsEMPTYINVENTORYDAYS = 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 joiningPREVENTSTEALINGDAYS = 0, --0 = off, 1-5 = Players cannot steal items within 1-5 days of joiningPREVENTDESTROYINGDAYS = 3, --0 = off, 1-5 = Players cannot destroy buildings within 1-5 days of joining, -1 = Players can never destroy buildingsPREVENTBURNING = 3, --0 = off, 1-5 = Players cannot burn objects/items within 1-5 days of joiningSPREADFIRE = 2, --2 = off, 0 = Fire does not spread, 1 = Fire spreads at halve range-- ^^ [b][i]There needs to not be a comma here as it is the end of the table [/i][/b]configuration_options } }}Okay so maybe im not posting my modoverrides.lua but heres a snippet...return { ["workshop-372539653"] = { --Take Your Time no placeholder enabled = true , configuration_options = { ["xspeed"]="21", --default 21 - "0" = disabled - Master Speed Control bewlow options only work if disabled ["dspeed"]="8", --default "8" - Timer (Minutes / Day) ["hspeed"]="8", --default "8" - Hunger ["fspeed"]="8", --default "8" - Fire duration ["rspeed"]="8", --default "8" - Regrowth Rate ["ispeed"]="8", --default "8" - Insulation Rate ["sspeed"]="8", --default "8" - Spoilage Rate ["sspeed"]="8", --default "8" - Spoilage Rate ["pspeed"]="8", --default "8" - Clothing perish Rate ["mspeed"]="8", --default "8" - Monster respawn Rate ["nspeed"]="8", --default "8" - Sanity drain Rate ["asfreq"]="1", --default "0" - AutoSave Frequency - "8 Minutes" = "0", "Frequent" = "1/8", "Often" = "1/3", "Daily" = "1", "Rarely" = "5", "Seasonal" = "20", "Annual" = "60" } }, ["workshop-564392010"] = { --World Resource Regeneration no placeholder enabled = true , configuration_options = { ["WorldResourceRegenerationSpeed"]=5, --default 5 - in days ["EnableDebug"]=0, --default 0 - 0 disabled, 1 enabled } }, ["workshop-353875384"] = { enabled = true }, --Abigail's Woe ["workshop-463740026"] = { enabled = true }, --Personal Chesters ["workshop-396253452"] = { enabled = true }, --More Realistic Honey ["workshop-501385076"] = { enabled = true } --Quick pick}Happy modding. Link to comment https://forums.kleientertainment.com/forums/topic/61054-switched-to-modoverrideslua-not-working/#findComment-699890 Share on other sites More sharing options...
KitcheVadimas Posted December 21, 2015 Author Share Posted December 21, 2015 Is your modoverrides.lua file in the same directory as your settings.ini file? You will need a modoverrides.lua in both your overworld and caves directory if you are hosting two worlds. As for the mod configuration, you can find a great deal about them if you go into each individual mod's modinfo.lua file and search for configuration_optionsThank you so much. I think I'm going to make a video guide on all the stupid little things that can completely wreck your dedicated server soon. I know many people would need it. Link to comment https://forums.kleientertainment.com/forums/topic/61054-switched-to-modoverrideslua-not-working/#findComment-700186 Share on other sites More sharing options...
KitcheVadimas Posted December 21, 2015 Author Share Posted December 21, 2015 So, I moved my mod overrides.luas to the proper folders, and they still aren't enabling. The log says "[00:00:09]: ERROR: Failed to load modoverrides.lua, " which is oh, so helpful. Something's wrong with my code. What, you may ask? I have no idea. I made as close as possible to the guide's example, and it's STILL not working.return { ["workshop-356006343"] = { enabled = true }, --Nature's Still Wild ["workshop-369228986"] = { enabled = true }, --Madeline non op ["workshop-378160973"] = { enabled = true, configuration_options = { SHOWPLAYERSOPTIONS = 2 SHOWPLAYERICONS = true FIREOPTIONS = 1 SHOWFIREICONS = true SHAREMINIMAPPROGRESS = true OVERRIDEMODE = false }, }, --Global positions ["workshop-381565292"] = { enabled = true }, --Waiter ["workshop-394470072"] = { enabled = true }, --Additional Set pieces ["workshop-396026892"] = { enabled = true }, --Large Chests ["workshop-396822875"] = { enabled = true }, --Spike Traps ["workshop-405506326"] = { enabled = true configuration_options = { spring.length.min = 10 spring.length.max = 20 summer.length.min = 8 summer.length.max = 12 autum.length.min = 10 autum.length.max = 20 winter.length.min = 15 winter.length.max = 30 }, }, --Dynamic Season Length ["workshop-435988740"] = { enabled = true }, --Krampusnacht ["workshop-436654027"] = { enabled = true }, --Beefalo Milk and cheese ["workshop-437521942"] = { enabled = true }, --Party Dance ["workshop-438827295"] = { enabled = true }, --Fashion ["workshop-444235588"] = { enabled = true }, --Deluxe Fire Pits ["workshop-445371564"] = { enabled = true }, --Default's Mod pack ["workshop-453114504"] = { enabled = true }, --Wortox the demon king ["workshop-465481756"] = { enabled = true }, --Fed the bunny ["workshop-469134741"] = { enabled = true }, --Winnie ["workshop-481031786"] = { enabled = true }, --Diggable Reeds ["workshop-496249680"] = { enabled = true }, --Extra Equip Slots ["workshop-506204512"] = { enabled = true }, --Fence Gates ["workshop-507570226"] = { enabled = true }, --Snikety Tom ["workshop-514078314"] = { enabled = true, configuration_options = { InsulatingTurfs = 1 InsulationDuration = 120 SanityTurfs = 0 RainProtectingTurfs = 0 SpeedyTurfs = 1 SpeedyTurfSpeed = 1.25 EnableGameTurfRecipes = 1 EnableTurfedTurfRecipes = 1 }, }, --Turfed ["workshop-519266302"] = { enabled = true, configuration_options = { is_season_items = 1 food_give = 1 num_goldnugget = 0 num_flint = 5 num_rocks = 0 num_log = 0 num_cutgrass = 5 num_twigs = 5 }, }, --Season Starting Items ["workshop-370429117"] = { enabled = true }, --Unikitty ["workshop-463718554"] = { enabled = true configuration_options = { STARTINGITEMS = false, --false = off, true = Give the player some starting items SEASONSTARTINGITEMS = false, --false = off, true = Give the player some starting items that fit current season NIGHTSTARTINGITEMS = false, --false = off, true = Give the players some starting items (a torch) if he joins during the night PVPSTARTINGITEMS = true, --false = off, true = Give the player some starting items if it is a pvp server CAVESTARTINGITEMS = false, --false = off, true = Give the player some starting items if it is a cave server REVEALMAP = 1, --0 = off, 1 = reveal the roads on the minimap, 2 = reveal all RENEWLIMITEDRESOURCES = 18, --0 = off, Number of days for average limited resource to regenerate (recommended between 6 and 72) DRAGONFLYBALANCE = true, --false = off, true = Balance the dragonfly health (and other stats) MAXMAXPLAYERS = 15, --6 = off, The maximum number of players that can join the server REVIVERCRAFTPENALTY = true, --true = off, false = No penalty for crafting the revival item DRYINGSPEEDMULTIPLIER = 1.2, --1 = off, The speed multiplier for the Drying Rack (recommended between 1.5 and 4) FARMINGSPEEDMULTIPLIER = 1.2, --1 = off, The speed multiplier for Farms (recommended between 1.5 and 4) BEESSPEEDMULTIPLIER = 1.2, --1 = off, The speed multiplier for Bee Boxes (recommended 1.2, 1.5 or 2) KRAMPUSMULTIPLIER = 2, --1 = off, The multiplier for Krumpus to appear (recommended between 1.5 and 4) RESIZEFIREPITS = true, --false = off, true = Make firepits have a larger collision area GHOSTSANITYDRAIN = false, --true = off, false = No sanity drain when other players are ghosts PREVENTSTEALINGDAYS = 0, --0 = off, 1-5 = Players cannot steal items within 1-5 days of joining PREVENTDESTROYINGDAYS = 3, --0 = off, 1-5 = Players cannot destroy buildings within 1-5 days of joining, -1 = Players can never destroy buildings PREVENTBURNING = 2, --0 = off, 1-5 = Players cannot burn objects/items within 1-5 days of joining SPREADFIRE = 2, --2 = off, 0 = Fire does not spread, 1 = Fire spreads at halve range } }} return { ["workshop-350811795"] = { enabled = true }, ["workshop-387028143"] = { enabled = true }, ["workshop-361336115"] = { enabled = true, configuration_options = { hunt_time = 6, ["String Phrase Option Name"] = "some value", } }, ["workshop-336882447"] = { enabled = true }} modoverrides.lua Link to comment https://forums.kleientertainment.com/forums/topic/61054-switched-to-modoverrideslua-not-working/#findComment-700230 Share on other sites More sharing options...
KitcheVadimas Posted December 21, 2015 Author Share Posted December 21, 2015 Holy mother of coding! I finally got a modoverrides.lua to work!!! I used Kam297's provided lua as a base, then copied in Fix multiplayer's Modoverrides.lua for configs. Only problem is that those are the only configs I got working. Now, where did I screw up on the other mod configs?return { ["workshop-356006343"] = { enabled = true }, --Nature's Still Wild ["workshop-369228986"] = { enabled = true }, --Madeline non op ["workshop-378160973"] = { enabled = true }, --Global positions ["workshop-381565292"] = { enabled = true }, --Waiter ["workshop-394470072"] = { enabled = true }, --Additional Set pieces ["workshop-396026892"] = { enabled = true }, --Large Chests ["workshop-396822875"] = { enabled = true }, --Spike Traps ["workshop-405506326"] = { enabled = true }, --Dynamic Season Length ["workshop-435988740"] = { enabled = true }, --Krampusnacht ["workshop-436654027"] = { enabled = true }, --Beefalo Milk and cheese ["workshop-437521942"] = { enabled = true }, --Party Dance ["workshop-438827295"] = { enabled = true }, --Fashion ["workshop-444235588"] = { enabled = true }, --Deluxe Fire Pits ["workshop-445371564"] = { enabled = true }, --Default's Mod pack ["workshop-453114504"] = { enabled = true }, --Wortox the demon king ["workshop-465481756"] = { enabled = true }, --Fed the bunny ["workshop-469134741"] = { enabled = true }, --Winnie ["workshop-481031786"] = { enabled = true }, --Diggable Reeds ["workshop-496249680"] = { enabled = true }, --Extra Equip Slots ["workshop-506204512"] = { enabled = true }, --Fence Gates ["workshop-507570226"] = { enabled = true }, --Snikety Tom ["workshop-514078314"] = { enabled = true }, --Turfed ["workshop-519266302"] = { enabled = true }, --Season Starting Items ["workshop-370429117"] = { enabled = true }, --Unikitty ["workshop-463718554"] = { enabled = true, configuration_options = { STARTINGITEMS = false, --false = off, true = Give the player some starting items SEASONSTARTINGITEMS = false, --false = off, true = Give the player some starting items that fit current season NIGHTSTARTINGITEMS = false, --false = off, true = Give the players some starting items (a torch) if he joins during the night PVPSTARTINGITEMS = true, --false = off, true = Give the player some starting items if it is a pvp server CAVESTARTINGITEMS = false, --false = off, true = Give the player some starting items if it is a cave server REVEALMAP = 0, --0 = off, 1 = reveal the roads on the minimap, 2 = reveal all RENEWLIMITEDRESOURCES = 18, --0 = off, Number of days for average limited resource to regenerate (recommended between 6 and 72) DRAGONFLYBALANCE = true, --false = off, true = Balance the dragonfly health (and other stats) 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) REVIVERCRAFTPENALTY = true, --true = off, false = No penalty for crafting the revival item DRYINGSPEEDMULTIPLIER = 1.2, --1 = off, The speed multiplier for the Drying Rack (recommended between 1.5 and 4) FARMINGSPEEDMULTIPLIER = 1.2, --1 = off, The speed multiplier for Farms (recommended between 1.5 and 4) BEESSPEEDMULTIPLIER = 1.5, --1 = off, The speed multiplier for Bee Boxes (recommended 1.2, 1.5 or 2) KRAMPUSMULTIPLIER = 2, --1 = off, The multiplier for Krumpus to appear (recommended between 1.5 and 4) RESIZEFIREPITS = true, --false = off, true = Make firepits have a larger collision area AMOUNTOFCHESTERS = 8, --1 = semi-off, 2-32: 2-32 Eye Bones will be created during world generation CANHAUNT = 0, --2 = off, 0 = Can only haunt when it gives a possitive effect, 1 = Can also spawn bosses through haunting GHOSTSANITYDRAIN = false, --true = off, false = No sanity drain when other players are ghosts 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 PREVENTSTEALINGDAYS = 0, --0 = off, 1-5 = Players cannot steal items within 1-5 days of joining PREVENTDESTROYINGDAYS = 3, --0 = off, 1-5 = Players cannot destroy buildings within 1-5 days of joining, -1 = Players can never destroy buildings PREVENTBURNING = 2, --0 = off, 1-5 = Players cannot burn objects/items within 1-5 days of joining SPREADFIRE = 2, --2 = off, 0 = Fire does not spread, 1 = Fire spreads at halve range } }} Link to comment https://forums.kleientertainment.com/forums/topic/61054-switched-to-modoverrideslua-not-working/#findComment-700314 Share on other sites More sharing options...
Kam297 Posted December 27, 2015 Share Posted December 27, 2015 @KitcheVadimas, I'm so glad to hear you got it working!! It took me like 2 days to get my modoverrides.lua set up so I made it a personal thing to help you out I was halfway through a long edited post of the first post I made but my browser crashed and I lost it oh well mostly what I was trying to post was this example pastebinhttp://pastebin.com/vvBB5ERdjust took me a while to get ahang of these forums.Well that link is the formatting I use, I feel like it's the least confusing it can get which is important because little little things will mess it up. Have a good one, merry late Christmas from a fellow survivor Edit: with the help of the chrome back arrow and the detriment of me being to lazy to make a pastebin account I found the paste where I highlighted (some of?) the small issues in your modoverrides.lua. It's the little stuff that gets you.http://pastebin.com/QCREY6DE Edit:Edit: I also just noticed from the post above you took the formatting to heart <3 happy surviving Link to comment https://forums.kleientertainment.com/forums/topic/61054-switched-to-modoverrideslua-not-working/#findComment-702496 Share on other sites More sharing options...
sirhcwarrior Posted December 29, 2015 Share Posted December 29, 2015 the formatting is a BEAR. i've been trying to configure Infinite Tent Uses and now Magic Pouch for quite awhile; i'll try something, find out it won't load again, realize i must be missing a "}" in there somewhere, and leave off, disgusted. i've gone through multiple times, and i'm about to try Magical Pouch again. i've given up on the Tent, for now. thanks for the sample lua links, and i think the video on how to modify the configuration table in a modoverrides.lua is an AWESOME idea. ~c Link to comment https://forums.kleientertainment.com/forums/topic/61054-switched-to-modoverrideslua-not-working/#findComment-703292 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.