Modding Help Help with crafting stations

Discussion in 'Starbound Modding' started by B. Arty, Jan 14, 2016.

  1. B. Arty

    B. Arty Phantasmal Quasar

    Help guys.
    I've made a crafting, got everything right (The JSON validator confirmed it as valid) but somehow everytime i tested, the table is supposed to crafted in the wooden crafting table and it just doesnt show up the recipe. When I try to spawn it by using admin mode, the icon works well, there was no image of it (yes i double checked the lines before), and when I interactive with it, the game crashed. So what should I do?


    Also heres the code
    Code:
    {
      "objectName" : "ponponcraftingtable",
      "rarity" : "rare",
      "interactAction" : "OpenCraftingInterface",
      "interactData" : {
        "config" : "/interface/windowconfig/craftingtable.config",
        "filter" : [ "craftingtable" ]
      },
      "printable" : false,
      "category" : "crafting",
      "price" : 2500,
      "description" : "Specially made from PonPon Inc.",
      "shortdescription" : "PonPon Crafting Table^white;",
      "race" : "generic",
    
      "apexDescription" : "Must be one of those projects...",
      "avianDescription" : "The sciency is strong within this table.",
      "floranDescription" : " What a high tech desssk.",
      "glitchDescription" : "Interested. The design of this table reminds me of someone.",
      "humanDescription" : "Looks like a normal table to me.",
      "hylotlDescription" : "Such neat design.",
    
      "inventoryIcon" : "ponponcraftingtableicon.png",
      "orientations" : [
        {
          "dualImage" : "ponponcraftingtable.png:<color>",
          "imagePosition" : [-16, 0],
          "frames" : 1,
          "animationCycle" : 0.1,
    
          "spaceScan" : 0.1,
          "anchors" : [ "bottom" ],
          "collision" : "platform"
    
        }
      ]
    }
    
    and the it's frame file, thats all what it needs for a crafting station i guess.

    Code:
    {
    
      "frameGrid" : {
        "size" : [40, 20],
        "dimensions" : [1, 9],
        "names" : [
          [ "default" ],
        ]
      }
    }
     
  2. Shadewarp

    Shadewarp Pangalactic Porcupine

    That is the object in itself

    You need a window config separate as well, have you made that?
    Then you also need to make a recipe and have it implemented into the species file or modify the wooden crafting table to teach the recipe when picking it up.
     
    B. Arty and The | Suit like this.
  3. B. Arty

    B. Arty Phantasmal Quasar

    ... never though of that, oh well let me try
     
    Shadewarp likes this.
  4. B. Arty

    B. Arty Phantasmal Quasar

    No man, it still dont work, even with the interface file it still crashes, no recipe so far
    also look
    [​IMG]
     
  5. Amethystumn

    Amethystumn Pangalactic Porcupine

    From the picture it looks like you haven't written the name of the png image file correctly so the game can't find the picture to use.
     
  6. B. Arty

    B. Arty Phantasmal Quasar

    i triple checked, adn it didnt work, seriously check my code bubble above
     
  7. lazarus78

    lazarus78 The Waste of Time

    In your frames file, get rid of the coma on the line that says "default".
     

Share This Page