Modding Help How do you get my recipe to show in-game??? its not showing up in the crafting menu

Discussion in 'Starbound Modding' started by Caiisy, Jul 27, 2016.

  1. Caiisy

    Caiisy Void-Bound Voyager

    So, i made a mod for starbound, a pickaxe mod and i want to make it so the player can just press C with his empty hands and see the pickaxe in his crafting menu, like the torches and everything but it doesn't do that unless i do the /admin command
    what do i do to make it show up right away?
     
  2. Mackinz

    Mackinz The Waste of Time

    Patch player.config to add your pickaxe to the defaultBlueprints list.
     
  3. Caiisy

    Caiisy Void-Bound Voyager

    thanks
    --- Post updated ---
    Is not working :C
     
  4. Mackinz

    Mackinz The Waste of Time

    If you properly patched into player.config and your recipe file has the right category settings, then there should be no issue.
     
  5. Naddox

    Naddox Cosmic Narwhal

    @Caiisy can you please post the .recipe file and your player.config.patch file so we can see what it is you're doing.
     
  6. Caiisy

    Caiisy Void-Bound Voyager

    [
    {"op":"add",
    "path":"/defaultBlueprints/tier1/-",
    "value":{"item":"admin_pick"} }
    ]

    that is the player config patch^

    {
    "input" : [{"count" : 1, "name" : "money"}
    ],
    "output" : {
    "item" : "instant_pick",
    "count" : 1
    },
    "groups" : [ "plain", "all" ]
    }

    that is the recipe^
    --- Post updated ---
     
  7. Naddox

    Naddox Cosmic Narwhal

    your patch says the item is admin_pick but your recipe says instant_pick.
     
    Caiisy and Mackinz like this.
  8. Caiisy

    Caiisy Void-Bound Voyager

    o crap, lmao i didnt see that
     
  9. Andreal_Vox

    Andreal_Vox Void-Bound Voyager

    I have this same issue, my player.config has the items under defaultBlueprints tier1, and in game they wont show up unless I'm in /admin mode. I'm probably a total scrub, I'm simply editing player.config within my mod folder as I don't know how to patch it. Some of my recipes do show up without the need of /admin so I'm confused as to what I need to do. If anyone could help, thanks. If I need to make my own post for this I will, sorry if this was a problem posting here :D
     

Share This Page