1. The plugin has no provision for that right now. I guess it could be added but I wasn't aiming at making a full crafting controller with this. It was meant to just be a Legacy workbench reimplementation, but I added global crafting modifiers in it as well. There are other plugins that control the speed and craftability of items, although I don't know if they would be compatable.

    Worse case there's ItemConfig that allows you to alter blueprint times.
     
  2. Hey, can you help me?
    When I am near a cupboard and I try to craft something it doesn't bulkcraft but it insta-crafts.
    [DOUBLEPOST=1442434273][/DOUBLEPOST]
    I want to have bulkcraft.
    File:
    Code:
    {
      "Authorizations": {
        "benchMultiplierAuthLevel": 0,
        "bulkCraftAuthLevel": 0,
        "craftingMultiplierAuthLevel": 0
      },
      "Blacklists": {
        "benchMultiplierBlacklist": [],
        "bulkCraftBlacklist": [],
        "craftingMultiplierBlacklist": []
      },
      "Crafting": {
        "benchMultiplier": 0.0,
        "bulkCraft": 9000,
        "craftingMultiplier": 0.0,
        "gunpowderMultiplier": 0.0
      }
    }
     
  3. You need to change the Bulcraft value to either 1 or 2. Think 1 is tool cab and 2 is no tool cab needed
    [DOUBLEPOST=1442434981][/DOUBLEPOST]
    Oh didn't realise you started your own server lol
    [DOUBLEPOST=1442435395][/DOUBLEPOST]
    No Problem, I don't want to move High Stone walls just make it a very long process to make them.
     
  4. Exactly that ^

    0= Bulkcraft is disabled
    1= Bulkcraft is enabled but only works inside tool cupboard authorized ranged (any cupboard, doesn't need to be the main one)
    2= Bulkcraft works everywhere

    In any and all cases bulkCraftAuthLevel is checked vs the player's authlevel, if the authlevel of the user is not at least the value set in the config, Bulkcraft will be disabled for that user (ignoring the Bulkcraft setting).
     
  5. Decide666ra, been getting some crazy time warning for Lime Bench in the console. At the time of them there seems to be a slight lag spike.
    Not sure if this a coincidence or something wrong with the plugin.
     
  6. Sup mate, been running it with no prob on my end. I know there are the new pumpkins that had no mats or craft time and they could be used to flood, making a pseudo ddos.. This might pop in limebench... But its not a limebench issue per say..
     
  7. Deicide666ra updated LimeBench with a new update entry:

    1.1.0

     
  8. BulkCraft no longer seems to work on the recent update. No errors from what I can see.
     
  9. thanks for the report i will look into it later tonight
     
  10. No problem, insta craft seems to be working and I've checked and players have priv's after the recent update.
     
  11. Just for the record, did you toy with the permissions? The new version uses permissions for Bulk craft... you can get them to the "player" group to allow everyone to use it.

    Code:
    To grant them to all players:
    oxide.grant group player limeBenchBulk
    oxide.grant group player limeBenchBulkNoCup
     
  12. yeah I gave players the permission.
    [DOUBLEPOST=1446778199][/DOUBLEPOST]It was working with the recent LimeBench update and permissions. But since the update tonight only Instacraft seems to work.
     
  13. So I tested this.. and it's working fine on my end. Make sure you have your permissions and groups right, I don't think the plugin is the issue.
     
  14. FTM

    FTM

    I'm getting this error.

    Also, when I enable permissions for the "player" group, it disables instant crafting regardless of the settings in the config file.
     

    Attached Files:

    Last edited by a moderator: Nov 6, 2015
  15. Yeah we arent able to bulk craft either, keeps saying to try a smaller amount
     
  16. Alright yeah I got that problem here too, gonna try and fix.
     
  17. Deicide666ra updated LimeBench with a new update entry:

    1.1.1

     
  18. FTM

    FTM

    Ok, I can't figure it out. How can I enable instant craft + bulk craft on everything except for gunpowder?
     
  19. Put gunpowder in all 3 blacklists like this:

    Code:
    {
      "Authorizations": {
        "benchMultiplierAuthLevel": 0,
        "craftingMultiplierAuthLevel": 0
      },
      "Blacklists": {
        "benchMultiplierBlacklist": ["gunpowder"],
        "bulkCraftBlacklist": ["gunpowder"],
        "craftingMultiplierBlacklist": ["gunpowder"]
      },
      "Crafting": {
        "benchMultiplier": 0.3,
        "craftingMultiplier": 0.5,
        "gunpowderMultiplier": 1.0
      }
    }
     
  20. FTM

    FTM

    I swear I did that, but copy and pasting yours did the trick . . . Thanks a lot man, appreciated.