1. Your bulkcraft is set to 0 MrSmid..... Set it to 1 or 2 (0= disabled, 1= cupboard only, 2= anywhere)
     
  2. Deicide666ra updated LimeBench with a new update entry:

    1.0.9

     
  3. Hi Deicide666ra,

    I'm on the server UK Moose and it seems to be having some difficulty after using bulk craft which causes frequent crashes for some unknown reason. As a result, JohnRU has had to remove it from the server to stop the constant crashing and it's a great shame as it was mine and everyone elses' favourite plugin. Is there a solution to this problem? Because I know many people including myself would love it greatly if we could add it back again to the server.

    Thanks for creating such an awesome plugin,

    mango2mania
     
  4. what you on about we got bulkcraft working fine just disabled for c4 and gunpowder.
     
  5. The crashing issue was fixed last week, should be pretty solid now!
     
  6. Hi is it possible to ensure that the weapons are stacked basically if someone does 999 wooden spears for example and has instant craft they wont stack could you implement so they do to prevent that sort of spam/lag?
     
  7. I could but this would bypass your existing stacking limitations. Just allow them to stack with a stacksize mod or itemconfig and they'll do just that. The plugin uses the stackable var of the item to determine if you're going to overflow or not. The check is lazy, I just nake sure you don't craft nore than 30 stacks of whatever you're doing. If the result is more than 30 stacks I just skip bulkcraft and give a warning to the player.
     
  8. What plugin do you recommend Im using StackSizeController and obviously that isnt the case for the spears and some other aspects.
     
  9. Wouldn't know, I use a custom plugin for stacks on mine. ItemConfig can do it but its a bit of a pain to maintain.
     
  10. you should release this custom plugin. ;)
     
  11. Maybe, but then again there already are several stacks plugin, I'm sure one of them can do this. I have no intention of trying to compete with existing plugins, just add a request to them if they don't work as intended :)

    The stack sizes on my server are part of L.I.M.E. (Legacy Inspired Mod for Experimental), it's a custom and exclusive plugin I made for my server. It does a whole lot more than stack sizes, it's also a gather manager with crits, yields based on tree size/type, radiation controller, spawn kit handler, etc. Sorry, this one won't be released :)
     
  12. Hi can someone tell me how to make bulk-craft please? Ive been trying for 30mins but its just not working. Where do i edit to be more accurate? Plugins or config?
     
  13. Code:
    {
      "Authorizations": {
        "benchMultiplierAuthLevel": 0,
        "bulkCraftAuthLevel": 2,
        "craftingMultiplierAuthLevel": 0
      },
      "Blacklists": {
        "benchMultiplierBlacklist": [],
        "bulkCraftBlacklist": [],
        "craftingMultiplierBlacklist": []
      },
      "Crafting": {
        "benchMultiplier": 0.5,
        "bulkCraft": 2,
        "craftingMultiplier": 0.75,
        "gunpowderMultiplier": 0.4
      }
    }
    This is the config I run on mine, gives Bulkcraft to admin only (set "bulkCraftAuthLevel" to 0 to allow everyone to use it).
     
  14. Thank you, Do you think i have to restart the server? ive got the same settings as you but it doesnt work.
     
  15. The server no but make sure you reload the plugin itself by running oxide.reload LimeBench

    Note that this specific config grants bulkcraft to admins only (owner level).
     
  16. Is there a reason why Bulk Craft wouldn't work on Syringes and Highwalls?
     
  17. Works for me on my server. What's your config? I didn't install the latest hotfix though I think.
     
  18. You can do it in batched of 30 but any higher and it does not work.
    [DOUBLEPOST=1441490970][/DOUBLEPOST]
    Code:
    {
      "Authorizations": {
        "benchMultiplierAuthLevel": 0,
        "bulkCraftAuthLevel": 0,
        "craftingMultiplierAuthLevel": 0
      },
      "Blacklists": {
        "benchMultiplierBlacklist": [],
        "bulkCraftBlacklist": [],
        "craftingMultiplierBlacklist": []
      },
      "Crafting": {
        "benchMultiplier": 0.5,
        "bulkCraft": 1,
        "craftingMultiplier": 0,
        "gunpowderMultiplier": 0.4
      }
    }
     
  19. That is as intented as making more than 30 would overflow your inventory and could even crash the server if you make too many. The code checks the stack size for that item and makes sure that the total of stacks produced is less than 30.

    I could however add a setting to allow overstacking... But thats a bit hackish don't you think?
     
  20. We increased the stack sizes o most items above their usual limit, so for syringes and high walls its 999. But I can see your point.
    [DOUBLEPOST=1441565083,1441537141][/DOUBLEPOST]Would there be a way of reducing the time it takes to craft just C4, so include everything else into BulkCraft except C4?