1. okay, there seems to be a bug? after dragging like 200k stones, theres only 5k and like 195k left in the main stack, so then i gotta drag that again, its a problem for my players atm, what's the go?
    [DOUBLEPOST=1435911381][/DOUBLEPOST]needs an update, new rust update.
    stacks not working.
     
  2. Hi AnExiledGod, just a heads up, the newest patch just broke the stacks for wood, stones, bandages (to name a few)
     
  3. My friend help me out, and everything work great. Thank for realy good plugin :)
     
  4. Alright, I'm working on my server, but I'll look into this ASAP.
    [DOUBLEPOST=1435942679][/DOUBLEPOST]Stack sizes are working for me. Could you delete your config and reset your values?
     
  5. by chance do you know what the shortname/friendly name for the new mine is? I want to do an Item.Giveplayer the BP
    I don't see it in the list if items.
    thanks!
     
  6. Is there no way to make changes in game with this? Like the old one? I can't even find a config file.

    Can you not write directions for people trying to figure this out without programming knowledge?
     
  7. There is no way to make changes in-game with this plugin right now.

    No programming knowledge is needed. Make sure your using the latest version and it should create the config.
     
  8. I have a suggestion. Is it possible to get Building Grade plugin? there was one a while ago, but nobody did an update on it & I loved it
     
  9. Not the right place for that, but what do you mean? The Automatic Build Grade? Or the ability to turn an entire building to a certain grade?
     
  10. okay, there seems to be a bug? after dragging like 200k stones, theres only 5k and like 195k left in the main stack, so then i gotta drag that again, its a problem for my players atm, what's the go?

    @AnExiledGod
    Pls respond.

    I've wood and all that set to 1,000,000 because of the gather rate.
     
  11. One question, the stacking works just fine, BUT when i do split it and try to re-stack it, it doesn't work?
     
  12. That's a bug in the Rust code. It's not my plugin, and there is no fix for it right now.
     
  13. The bgrade plugin IS being updated.
    [DOUBLEPOST=1436296150][/DOUBLEPOST]Is the config the same as ItemConfig if it's based off that? I ask because the ItemConfig plugin is kind of a pain. Great plugin but everytime there is any tweak to the game I spend tons of time setting ALL the items back to my stack values. Was hoping to see if this was just stack sizes or maybe if there were a var you could use (have the option) to set ALL the stack sizes the same?

    Thanks
     
  14. You could technically update lines 24 and 43 in the code https://github.com/AnExiledGod/Rust-Oxide-Plugins/blob/master/Published/StackSizeController.cs

    Change
    Code:
     Config[item.displayName.english] = item.stackable; 
    to
    Code:
     Config[item.displayName.english] = 65000; 
    And change
    Code:
     item.stackable = (int)Config[item.displayName.english]; 
    to
    Code:
     item.stackable = 65000; 
    Set 65,000 to whatever value you want. This will set it for all items.

    But be warned. This is not an advised method, it could potentially break the plugin, and it will be overwritten during the next update.

    Now, there are 2 things to keep in mind here.

    1. The plugin SHOULD update config files correctly. I can't guarantee this since I have no way of testing this properly until update day when they add new items (if they add new items)
    2. A way around this potentially breaking during the update is when you go to upgrade, copy your config file (make a backup just in case) then upload the new update or reload the plugin, a new config will be created with the current stack sizes already set.
    For number 2, let me try to explain this better. This plugin generates the config and grabs the stacksize from items already. So if you have every item set to stack to 65000, and you delete your config, reload the plugin WITHOUT restarting the server, it will pull your stack size values that were already set.

    I hope I explained that well, it's kinda hard to explain.

    I will however look into adding a command to change stack sizes in-game for individual or all items. Additionally, after this next update, if new items are added I will test to make sure the config updates correctly, and if it does not, have a fix out the same day.

    That being said, I am 95% sure that it will add new items on the go without causing any issues.
     
  15. Thanks!
     
  16. alright, thank you
     
  17. do you have to have the itemconfig plugin?
     
  18. NO, it is just based off another.
     
  19. Yep, this plugin is completely independent. :)
     
  20. You're awesome!

    This plugin works great for me, I finally was able to replace StackSizes. I really hope you plan to keep this updated.