TyrantXP 1 Report post Posted October 26, 2014 Hi there, I cant find anything about making a Custom Item Recipe i don't know how exactly do thisIm trying to do somthing but still crashing and i need also make a image of MY One custom ingredient show in the crafting tab too. Share this post Link to post Share on other sites
Mobbstar 14078 Report post Posted October 26, 2014 A custom item is like a placable, but without the last parameter (the placer). That means you need to make...... TECH.SOMETHING, "something_placer")to ....... TECH.SOMETHING) For the image, put your recipe as a variable, like so: local rec = Recipe("mything", ....) and after that put your texture name:rec.atlas = "images/myimage.xml" EDIT: That belongs into modmain.lua, I asume you have handled the GLOBAL.x stuff already. Share this post Link to post Share on other sites
TyrantXP 1 Report post Posted October 26, 2014 A custom item is like a placable, but without the last parameter (the placer). That means you need to make...... TECH.SOMETHING, "something_placer")to ....... TECH.SOMETHING) For the image, put your recipe as a variable, like so: local rec = Recipe("mything", ....) and after that put your texture name:rec.atlas = "images/myimage.xml" EDIT: That belongs into modmain.lua, I asume you have handled the GLOBAL.x stuff already. Allright got it working Share this post Link to post Share on other sites