TeamWizardry / TMT-Refraction

A light manipulation based mod for The Modding Trials
MIT License
3 stars 4 forks source link

Crafttweaker recipes need more explaining... #36

Closed jawsawn closed 7 years ago

jawsawn commented 7 years ago

Tried doing mods.refraction.AssemblyTable.addRecipe(name, , {,,,,} , "16", "32", "255", "255", "0", "0", "0", "0")

but no idea what "name" stands for and wonder what is the correct way to insert numbers and inputs/outputs

yrsegal commented 7 years ago

Name is just whatever you want, that should probably be internalized to something along the lines of "mtrecipe{hash of ingredients}" so that we don't force the scriptmaker to know what that means @murapix

jawsawn commented 7 years ago

For future ref: mods.refraction.AssemblyTable.addRecipe("name", , [,] , 16, 32, 255, 255, 0, 0, 0, 0); Also modtweaker was required to do this.