1. this is how my txt file looks like.. and players are still able to craft it..
    Running oxide 1.18

    http://prntscr.com/65g9gi
    Does it means that plugin is not working? Right?
     
  2. Do you have 1.18 version?
     
  3. Wulf

    Wulf Community Admin

    Last edited: Apr 15, 2015
  4. :/ i tried that
     

    Attached Files:

  5. Wulf

    Wulf Community Admin

  6. hello guys i need help for this..
    i need remove sleeping bags and beds in my server..
    i have oxide 1.18 i search for this and i find only crafting controller but crafting controller work it only for oxide 2.0?
     
  7. tnx reneb :) but i dont know how work this plugin.. :/ you can help me?
     
  8. Code:
    {
      "Blueprints: Block List": [],
      "Crafts: Block List": [
         "Sleeping Bag",
        "Bed"
      ],
      "Messages: Block Blueprint": "This blueprint has been disabled.",
      "Messages: Block Craft": "Crafting this item has been blocked.",
      "Messages: Block Research": "Researching this item has been blocked.",
      "Researching: Block List": []
    }
    Put that in your configuration
     
  9. that config is for Oxide 2.0 not 1.18
     
  10. My bad, copied and pasted the wrong one!
    [DOUBLEPOST=1429102559][/DOUBLEPOST]
    Code:
    {
      "blockresearchmessage":"Researching this item has been blocked.",
      "blockcraftingmessage":"Crafting this item has been blocked.",
      "blockblueprintmessage":"This blueprint has been disabled.",
      "BlockedResearching":[],
      "BlockedCrafting":["Sleeping Bag", "Bed"],
      "BlockedBlueprints":[]
    }
     
  11. i use jedis table tool and work it perfect now.. :) tnx for all guys.. realy tnx..
     
  12. This plug in is not stopping the research or crafting of Explosive charge or Explosive. i am running oxide 2.0 and i have valid json and i even tried the txt files but nothing works
     
  13. show us your config
     
  14. Code:
    {
      "Blueprints: Block List": {
      "Explosive Charge": true,
      "Explosives": true
      },
      "Crafts: Block List": {
      "Explosive Charge": true,
      "Explosives": true
      },
      "Messages: Block Blueprint": "This blueprint has been disabled.",
      "Messages: Block Craft": "Crafting this item has been blocked.",
      "Messages: Block Research": "Researching this item has been blocked.",
      "Researching: Block List": {
      "Explosive Charge": true,
      "Explosives": true
      }
    }
    that is my config i have it in the config folder and it is a valid json i checked at the json lint website. but everytime i upload and/or edit the json when i restart server the file reverts back to the blank initial file
     
  15. Wulf

    Wulf Community Admin

    That isn't the right format, despite being valid JSON.
    Code:
    {
        "Blueprints: Block List": [
            "Explosive Charge",
            "Explosives"
        ],
        "Crafts: Block List": [
            "Explosive Charge",
            "Explosives"
        ],
        "Messages: Block Blueprint": "This blueprint has been disabled.",
        "Messages: Block Craft": "Crafting this item has been blocked.",
        "Messages: Block Research": "Researching this item has been blocked.",
        "Researching: Block List": [
            "Explosive Charge",
            "Explosives"
        ]
    }
    For those using the latest Oxide snapshot, use the below version with the unnecessary imports removed.
     

    Attached Files: