I got another question. Do you no if its possible to make a crafting/ building of a machine by having little parts that you physcally have to place in the general right place for it to work kinda like that mod mini blocks but for it to form multiblock structures for example having a generator but instead of the normall crafting you have to craft all the parts such as radiator piston engine block and a base wich will signafy were to start building and place them above/on the base and when your down or if you did it right it forms to look like a engine.
If it is possible do you think its a good idea or bad.
What my idea is to have stuff look realistic and be slightly complicated becuase in my opinun everything is to easy in minecraft.
It is totally possible. You would need to do some checking of the surrounding blocks, but it should be pretty easy. I know that
@jordsta95 did something similar for furnaces and ore processors
Yes, it is actually really easy to do it. But to make it look nice is a different question. If you want an ugly, but "simple", way to do it, then look at:
Furnace -
https://github.com/jordsta95/JordnE...in/java/com/jordsta/stuff/blocks/smelter.java For this the block needs to be placed infront of the side which has the furnace texture (i.e. the one that is different) and then right clicked, and it will spawn the item 2 blocks above (I did this because 1 block above was awkward sometimes)
Ore doubler -
https://github.com/jordsta95/JordnE...in/java/com/jordsta/stuff/blocks/doubler.java This takes the ore, and "purifies" it (I called it purified ore, so that I could keep it as a block, so that it worked with the smelter)
For both of these ignore the if(y-1) thing, that is just checking that they have a powered cable below. The cable mechanic is very crude and is just there so that there is some form of "power" although, it's not advised to do what I do with it...
And if you wanted to do some sort of crafting, you can do something like this -
https://github.com/jordsta95/JordnE...a/com/jordsta/stuff/blocks/blockTransmog.java which crafts the item assuming the blocks are all on the correct face (each face of the block has a different colour)