KeiBorisov Posted May 17, 2023 Share Posted May 17, 2023 Umm, hello, I am not really familiar with DST modding, so I wanted to ask people a question: Can you give one item multiple crafting recipes? Like, for example using 6 rocks OR 8 grass to craft a placeholder item (Just for testing) and them being 2 different crafting recipes Thanks for the responses beforehand! Link to comment https://forums.kleientertainment.com/forums/topic/147836-multiple-recipes-for-one-item/ Share on other sites More sharing options...
Haruhi Kawaii Posted May 19, 2023 Share Posted May 19, 2023 On 5/17/2023 at 8:52 PM, KeiBorisov said: Umm, hello, I am not really familiar with DST modding, so I wanted to ask people a question: Can you give one item multiple crafting recipes? Like, for example using 6 rocks OR 8 grass to craft a placeholder item (Just for testing) and them being 2 different crafting recipes Thanks for the responses beforehand! In this forum thread you can see examples Spoiler AddRecipe2("awesome_beardhair", -- name { -- ingredients GLOBAL.Ingredient("cutgrass", 1), GLOBAL.Ingredient("twigs", 1), }, GLOBAL.TECH.SCIENCE_ONE, -- tech { -- config product = "beardhair", builder_tag = "bearded", numtogive = 3, }, { -- filters "WEAPONS", "RAIN", "SUMMER", } ) AddRecipe2("awesome_beardhair_2", -- name { -- ingredients GLOBAL.Ingredient("cutgrass", 1), GLOBAL.Ingredient("twigs", 1), }, GLOBAL.TECH.SCIENCE_ONE, -- tech { -- config product = "beardhair", builder_tag = "bearded", numtogive = 3, }, { -- filters "WEAPONS", "RAIN", "SUMMER", } ) Link to comment https://forums.kleientertainment.com/forums/topic/147836-multiple-recipes-for-one-item/#findComment-1635704 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