Navigate to lua/wos/advswl/config/crafting/sv_craftwos.lua
Find the following values:
"wOS.ALCS.Config.Crafting.CraftingDatabase.SaveFrequency" determines how often the data of inventories, spawn positions, etc are saved in SECONDS. Default set to 360
"wOS.ALCS.Config.Crafting.ItemSpawnFrequency" determines how often to try and respawn items, determined by SECONDS. Default is set to 0.1 as there is never a 100% chance of an item spawning
"wOS.ALCS.Config.Crafting.LootSpawnPercent" determines how many of the item spawn points you have set should be spawning items at once. Default set to 1, enabling 100% of all spawns
"wOS.ALCS.Config.Crafting.ItemDespawnTime" determines how much time after an item has been spawned should it despawn. Default set to 600
Sets data saving to 180 seconds (3 minutes), attempts at trying to spawn an item to 5 seconds, enables only 80% of all spawn locations, and sets the despawn time to 300 (5 minutes)
wOS.ALCS.Config.Crafting.CraftingDatabase.SaveFrequency = 180
wOS.ALCS.Config.Crafting.ItemSpawnFrequency = 5
wOS.ALCS.Config.Crafting.LootSpawnPercent = 0.8
wOS.ALCS.Config.Crafting.ItemDespawnTime = 300
wOS.ALCS.Config.Crafting.MaxInventorySlots = 80
Navigate to lua/wos/advswl/config/general/sh_serverwos.lua
Find the "wOS.ALCS.Config.EnableZhromExtension", and "wOS.ALCS.Config.EnableCloneAdventures"
This will enable both content packs
wOS.ALCS.Config.EnableZhromExtension = true
wOS.ALCS.Config.EnableCloneAdventures = true
How to configure MySQL for crafting data
Navigate to lua/wos/advswl/config/crafting/sv_craftwos.lua
First the value "wOS.ALCS.Config.Crafting.ShouldCraftingUseMySQL" and set it to true
Then should see the following:
wOS.ALCS.Config.Crafting.CraftingDatabase = wOS.ALCS.Config.Crafting.CraftingDatabase or {}
wOS.ALCS.Config.Crafting.CraftingDatabase.Host = "localhost"
wOS.ALCS.Config.Crafting.CraftingDatabase.Port = 3306
wOS.ALCS.Config.Crafting.CraftingDatabase.Username = "root"
wOS.ALCS.Config.Crafting.CraftingDatabase.Password = ""
wOS.ALCS.Config.Crafting.CraftingDatabase.Database = "wos-crafting"
wOS.ALCS.Config.Crafting.CraftingDatabase.Socket = ""