So since the twilight forest its disable i was thinking if it would be possible to add the following tree to the market or if there can be a crafting recipe for them This are the Sapling plus a block Canopy Tree Sapling ID: 1230:1 Twilight Mangrove Sapling ID: 1230:2 Darkwood Sapling 1230:3 Robust Twilight Oak Sapling ID 1230:4 Smoking Block ID: 1228 Hope it is possible since they really look nice for decoration Below are some crafting recipe for what i have now Spoiler: Canopy Tree Sapling 2 Oak Saplings and 2 Birch Saplings Spoiler: Twilight Mangrove Sapling 2 Spruce Sapling and 2 Birch Saplings Spoiler: Darkwood Sapling 2 Ink Sank and 2 Spruce Saplings Spoiler: Smoking Block 4 Buckets of lava , 4 Stone and 1 Flint and Steel Spoiler: Robust Twilight Oak Saplint 2 Jungle Saplings and 2 Jungle Wood Blocks
You forgot flaming block, the fireflies, the special saplings:tree of time, tree of transformation, miner's tree, sorting tree ( I think that's all). A sickly twilight oak is the same as a regular oak sapling. No sense in adding that to the market. But the rest I would like to see either craftable or buyable.
Cheshirelill if you an add the ID of those items and blocks i can add it to the list Btw Cheshirelill if by flaming block you mean the one that spits fire i already have it on the list
FYI for custom recipes it is the unlocalised item names we would need not IDs, if you go to NEI options you can dump a list of all item names for the modpack to a .csv file This is the list for Crundee for example So the darkwood sapling that you listed instead of being ID "1230:3" it would be "TwilightForest:tile.TFSapling:3" Also here's a guide for how to write a custom recipe for minetweaker so you can prepare the custom recipes yourself if you like and then if your request for custom recipes is accepted then and admin can just copy your code over straight away Tutorial:Basic Recipes - MineTweaker 3
Hope i am doing it right Code: //#MARKER ADD SHAPED recipes.addShaped(<TwilightForest:tile.TFFireJet>, [[<ore:stone>, <minecraft:lava_bucket>, <ore:stone>], [<minecraft:lava_bucket>.giveBack(<minecraft:bucket>), <minecraft:flint_and_steel>, <minecraft:lava_bucket>.giveBack(<minecraft:bucket>)], [<ore:stone>, <minecraft:lava_bucket>.giveBack(<minecraft:bucket>), <ore:stone>]]); Code: //#MARKER ADD SHAPED recipes.addShaped(<TwilightForest:tile.TFSapling:1>, [[<ore:ferretCheapPlants>, <ore:ferretCheapPlants>], [<ore:ferretCheapPlants>, <ore:ferretCheapPlants>]]); Code: //#MARKER ADD SHAPED recipes.addShaped(<TwilightForest:tile.TFSapling:3>, [[<ore:dyeBlack>, <ore:ferretCheapPlants>], [<ore:ferretCheapPlants>, <ore:dyeBlack>]]); Code: //#MARKER ADD SHAPED recipes.addShaped(<TwilightForest:tile.TFSapling:2>, [[<ore:ferretCheapPlants>, <ore:ferretCheapPlants>], [<ore:ferretCheapPlants>, <ore:ferretCheapPlants>]]); Code: //#MARKER ADD SHAPED recipes.addShaped(<TwilightForest:tile.TFSapling:4>, [[<ore:logWood>, <ore:ferretCheapPlants>], [<ore:ferretCheapPlants>, <ore:logWood>]]);
I'm aware of that but I find dumping it easier cause then I can copy and paste the item names instead of having to type them out