Hey guys I could use some help making a custom crafting station for my mod. Would anyone be interested in helping me make one?
Just unpack your assets and go here [Assetunpacked]\objects\generic\woodencraftingtable1 You will find the code for the crafting table inside. The filter Code: "craftingtable", "plain" is the most important part of the crafting table It tells the game "which reciepes" to show. So say you want to make only darkmagic reciepes to show then you put darkmagic in the filter. Then you make a reciepe Code: Assetunpacked\recipes Lets take Chair for example Code: { "input" : [ { "item" : "ironbar", "count" : 2 } ], "output" : { "item" : "tier1chair", "count" : 1 }, "groups" : [ "craftingtable", "furniture", "objects", "all" ] } You will see "groups" these are the "filters" which will show that reciepe. so in groups we will want to add "darkmagic" Now you you also need to remember to put the iten in player.config but there are more then enough tutorials telling you how to do the other steps. The steps provided is just specific for crafting table
Just a place to put all of my recipes, a custom crafting table suchs as "Violets Station" or something of the sort, I'm not very good at making things that aren't already there in the files xD. So pretty much i need a crafting area seperate from the basic crafting tables.
Try out this guide- http://community.playstarbound.com/...crafting-station-create-custom-recipes.37902/