1. Would be awesome, if there is a whitelist, or permission system. So others are able to craft it. And some don't.
     
  2. Does this plugin work? I have tried the .cs posted on page 19 and the one from the download page and neither appear to work:
    Page 19:

    (18:05:49) | [Oxide] 18:05 [Error] CraftingController plugin failed to compile!
    (18:05:49) | [Oxide] 18:05 [Error] CraftingController.cs(57,59): error CS0246: The type or namespace name `IInventoryItem' could not be found. Are you missing an assembly reference?

    Download Link:

    (18:02:42) | [Oxide] 6:02 PM [Warning] Ignored obsolete game extension reference 'Oxide.Ext.RustLegacy' in plugin 'CraftingController'
    (18:02:42) | [Oxide] 6:02 PM [Error] Assembly referenced by CraftingController plugin does not exist: Facepunch.ID.dll
    (18:02:42) | [Oxide] 6:02 PM [Error] Assembly referenced by CraftingController plugin does not exist: Facepunch.MeshBatch.dll
    (18:02:42) | [Oxide] 6:02 PM [Error] Assembly referenced by CraftingController plugin does not exist: Google.ProtocolBuffers.dll
    (18:02:42) | [Oxide] 6:02 PM [Debug] EnqueueCompilation called for an empty compilation
     
    Last edited by a moderator: Mar 23, 2016
  3. Wulf

    Wulf Community Admin

    This plugin is for Rust Legacy only, not Rust.
     
  4. This wasn't clear enough:

    Crafting Controller for Rust Legacy

    Sorry...
     
  5. Hello !

    Why Plugin Not Work ?

    Loook my config :
    ----------------------------------------

    {
    "Blueprints: Block List": [
    "Explosive Charge",
    "Explosives"
    "Camp Fire"
    ],
    "Crafts: Block List": [],
    "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"
    "Camp Fire"
    ]
    }
     
  6. Wulf

    Wulf Community Admin

    That isn't valid JSON, your config is wrong. Make sure to add a comma after each entry you make in the block list except for the latest. You can verify the format on a site such as www.jsonlint.com.
     
  7. Plz Look My Cod :

    Code:
    {
        "Blueprints: Block List": [
            "Explosive Charge",
            "Explosives"
            "Camp Fire",
        ],
        "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"
        ]
    }

    Why is this code wrong?
     
  8. Wulf

    Wulf Community Admin

    Remove the comma after "Camp Fire", add a comma after "Explosives".