h4uja2 Posted May 5, 2016 Share Posted May 5, 2016 (edited) By default you can only see Science Tier 1 recipes even without being near Science Machine. I'm looking for a client_only mod that will allow me to view all recipes and requirements regardless of craft stations. Thanks in advance. Edited May 5, 2016 by h4uja2 Link to comment https://forums.kleientertainment.com/forums/topic/67035-mod-request-unlock-all-crafting-tabs/ Share on other sites More sharing options...
Muche Posted May 5, 2016 Share Posted May 5, 2016 I use Too Many Items mod for that (you have to be admin for it to work). Link to comment https://forums.kleientertainment.com/forums/topic/67035-mod-request-unlock-all-crafting-tabs/#findComment-767054 Share on other sites More sharing options...
kimpet Posted May 6, 2016 Share Posted May 6, 2016 Do it yourself go to Don't Starve Together folder location > data folder > scripts folder > find recipe.lua make a copy for backup then open it using notepad and find this code: for k,v in pairs(ingredients) do if table.contains(CHARACTER_INGREDIENT, v.type) then table.insert(self.character_ingredients, v) else table.insert(self.ingredients, v) end end change it like this: --[[for k,v in pairs(ingredients) do if table.contains(CHARACTER_INGREDIENT, v.type) then table.insert(self.character_ingredients, v) else table.insert(self.ingredients, v) end end]] next find this code: self.level = level or 0 change it to this code: self.level = {} -- level or 0 save it and your done. What this do is unlock all recipes without ingredients. Link to comment https://forums.kleientertainment.com/forums/topic/67035-mod-request-unlock-all-crafting-tabs/#findComment-767362 Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now