aDevilMayCry Posted January 17, 2019 Share Posted January 17, 2019 Hello I've been trying to make a new crafting recipe for nightmare fuel for only my modded character and have been hitting dead ends, I would appreciate it if someone would help thanks. Link to comment https://forums.kleientertainment.com/forums/topic/101886-create-new-recipe/ Share on other sites More sharing options...
MidrealmDM Posted February 15, 2019 Share Posted February 15, 2019 (edited) You should be able to figure it out from looking at other character files that have custom items like wikckerbottom and wigfrid This might work (you will have to change the required ingredients) local function custom_init(inst) local nightmarefuel_recipe = Recipe("nightmarefuel", {Ingredient("twigs", 2), Ingredient("flint", 2), Ingredient("goldnugget", 2)}, RECIPETABS.MAGIC, {SCIENCE = 0, MAGIC = 0, ANCIENT = 0}, nil, nil, nil, nil, true) nightmarefuel_recipe.sortkey = 1 end return MakePlayerCharacter("<charactername>", prefabs, assets, custom_init) Edited February 15, 2019 by MidrealmDM Link to comment https://forums.kleientertainment.com/forums/topic/101886-create-new-recipe/#findComment-1155368 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