Jump to content

Recommended Posts

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 by h4uja2

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.

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...