[complete]the inpossible recipe
[complete]the inpossible recipe
more than one output from a recipe, without using the chemical plant. is it possible?
			
			
													
					Last edited by Nobody on Mon Apr 13, 2015 3:36 am, edited 1 time in total.
									
			
									I have no idea what I am doing
						Re: [request]the inpossible recipe
figured it out.
fluid-recipe.lua (it MUST be fluid-recipe.lua) or at least it keeps telling me
recipe-category.lua
and a line from entity.lua
			
			
									
									fluid-recipe.lua (it MUST be fluid-recipe.lua) or at least it keeps telling me
Code: Select all
{
    type = "recipe",
    name = "nothing",
    category = "nothing-here",
    enabled = "true",
    energy_required = 5,
    ingredients =
    {
      {type="item", name="raw-wood", amount=1}
    },
    results=
    {
      {type="item", name="nothing", amount=1},
      {type="item", name="nothing-2", amount=1},
    },
    icon = "__base2__/graphics/icons/nothing.png",
    subgroup = "nothing",
    order = "a[nothing-here]-a[nothing-v2]"
  }
Code: Select all
{
    type = "recipe-category",
    name = "nothing-here"
  }
Code: Select all
crafting_categories = {"crafting","nothing-here"}
I have no idea what I am doing
						