Modding Help scifi crasftigtable dont work. help?

Discussion in 'Starbound Modding' started by zubarus, Aug 6, 2017.

  1. zubarus

    zubarus Star Wrangler

    i cant say more to this problem..


    starbound log:
    Code:
    [03:41:44.580] [Error] Application: exception thrown, shutting down: (ObjectException) Error loading object '/objects/scificraftingtable/scificraftingtable.object': (JsonException) Improper conversion to int from string
    and the file who habe the problem.. i hope oane can help.:

    Code:
    {
      "objectName" : "scificraftingtable",
      "rarity" : "Common",
      "objectType" : "interactable",
      "interactAction" : "OpenCraftingInterface",
      "interactData" : {
        "config" : "/interface/windowconfig/robotcraftingtable.config",
        "filter" : [ "scificraftingtable" ]
      },
      "printable" : false,
      "description" : "This table has arms! For precision!",
      "shortdescription" : "Scifi Crafting Table",
      "race" : "generic",
      "category" : "crafting",
      "price" : "200",
    
      "apexDescription" : "A fancy crafting table.",
      "avianDescription" : "A mechanical crafting table.",
      "floranDescription" : "Floran once get in fight with table like this.",
      "glitchDescription" : "Confused. This table is familiar.",
      "humanDescription" : "A robot table! The revolution begins!",
      "hylotlDescription" : "How strange. A robotic crafting table.",
    
      "inventoryIcon" : "scificraftingtableicon.png",
      "orientations" : [
        {
          "dualImage" : "scificraftingtable.png:<color>.<frame>",
    
          "imagePosition" : [-16, 0],
          "frames" : 22,
          "animationCycle" : 2.0,
    
          "spaceScan" : 0.1,
          "anchors" : [ "bottom" ]
    
        }
      ]
    }
    
     
  2. Ultimate sandvich

    Ultimate sandvich Scruffy Nerf-Herder

    "price": "200" should be "price": 200, you used a string when the game expected a number (int)
     
  3. zubarus

    zubarus Star Wrangler

    ok thx.

    know any one how i can add craftable Paintings?
     
  4. Ultimate sandvich

    Ultimate sandvich Scruffy Nerf-Herder

    Paintings are objects, so you'll need a .object file, your textures, a .recipe file and a player.config.patch file. There are enough tutorials around to help you with this, I recommend searching for "starbound modding e-book", it's really well explained (I'd send the link but I'm on my phone and don't have much time, if you can't find It let me know, I'll send it tomorrow)

    Sent from my SM-G800F using Tapatalk
     
  5. zubarus

    zubarus Star Wrangler

    ah thx again :)
    but.
    i have the paintings als object and png and recipe the thing is i want the paints are crafteable for 1 race and craftet with the inventorycraftingtable.
     
  6. zubarus

    zubarus Star Wrangler

    ok now i am on the game stand i can craft the scifi but.. i cant find it.. so i go test char with admin mode and i cant finde ist in crafting..?!
    waht is the problem in the recipe?
    (no erros or somthing)
    Code:
    {
        "input" : [
            { "item" : "money", "count" : 1000 }
        ],
        "output" : { "item" : "scificraftingtable", "count" : 1 },
        "groups" : [ "craftingtable", "railcraftingtable", "objects", "all" ]
    }
     
  7. slowcold

    slowcold Pangalactic Porcupine

    Hi.

    Does your character/race know the recipe - from either the species file or a species or onpickup patch? Asking because I messed that up and had to ask too.
     

Share This Page