Modding Help I need some help making a custom crafting station for my mod.

Discussion in 'Starbound Modding' started by Darkestra, Feb 2, 2014.

  1. Darkestra

    Darkestra Void-Bound Voyager

    Hey guys I could use some help making a custom crafting station for my mod. Would anyone be interested in helping me make one?
     
  2. Mechageno

    Mechageno Starship Captain

    Maybe e.e. What do you want it to be exactly? Details Ma lady details!
     
  3. The | Suit

    The | Suit Agent S. Forum Moderator

    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
     
  4. Darkestra

    Darkestra Void-Bound Voyager

    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.
     
  5. Mechageno

    Mechageno Starship Captain

    Oh ok, no problem. any ideas for how you want it to look?
     
  6. JamesOfCarson

    JamesOfCarson Void-Bound Voyager

Share This Page