1. No one here was being like that some people have things going on in there life and cant help 24/7
     
  2. lol. OK!

    "Be the bigger man and walk away"
     
  3. A bad attitude round here will not get you very far so stop being a child it wont end well
     
  4. If anyone is having trouble installing this plugin use the Firefox FireFTP add-on. It is the best, I have tired others and could not get this plugin to work. So if you seem to be having the same problems as I have been use Firefox. Doesn't install any different but actually works.
     
  5. Use filezilla I find it works well
     
  6. I use the Windows Remote Desktop and simply copy-paste it over.
    That way I can use "reload *" in the rustserver console easier, without any thirdparty software or having to join the server.

    For other FTP-stuff I use WinSCP or, when webcoding, the notepad++ftp function.
    WinSCP i found more reliable and (for me!) userfriendly than Filezilla (using a filezilla server, though). When coding I want to open the files directly and, again, not have 2 softwares to navigate inbetween. Using notepad++ makes that easy, because you can simply connect to the ftp-server, doubleclick the file you want to edit and it opens up in the same program (notepad++).

    Also: Usually there are only three browsers used: Firefox, Opera and Chrome. Chrome seems to have replaced iE, because nearly everyone uses it now. Sadly, it spams your task manager with a process for each tab and plugin you use AND it is a google-product, which I do not really like. Firefox just eats RAM and then starts to seriously struggle with overeating when it reached 1.5GB or 2GB of RAM. Opera I did use for a while but do not anymore.
    iE users I do not count here, they are simply not worthy and even saying that is too much of attention towards those "folks".

    This is waaaay offTopic, though. :p
    And: My own personal opinion. No one is requested to share or subscribe to it, but I always appreciate it. <3
     
  7. Filezilla was for those server owners who don't have a dedicated box. When I use to own a box I would use the box upload option but that was years ago
     
  8. So, I got the mod to work but now Charcoal won't stack. I looked in the JSON file to check and see why. Is it supposed to be listed as "Coal :("
     
  9. Nope that "Coal :(" is something from the Xmas-Special like the socks you can hang up or the small to large presents people can open. Charcoal is charcoal and if you use the command "/stack charcoal 10000" it will stack - at least it does for me. If you add it to autocmd (another plugin that runs commands on server start - attention, they have stability off as default-command, do not forget to remove it.) most of the bugs of this plugin are worked around... it still seriously needs an update. :/
     
  10. Thanks, I found it in the Json and corrected it. I restarted my server to see if it's working and I'll keep you all posted if I find any more problems or if I find something I can fix myself.
     
  11. floor.ladder.hatch is added to the list of items that are unstackable:

    Code:
    - corn
    - pumpkins
    - floor.ladder.hatch
     
  12. Why can't I change the BP stacks?
     
  13. in the config file. "Blueprint": 1000.
     
  14. Hi, Guys
    How to set size stack for group?
     
  15. What is meant as "group"?
     
  16. A group of people, such as VIP players, administrators and more
     
  17. So you don't know how it technically works, right?
    The stacksize is set for every item as a global setting. When you move stuff, functions for/of item-containers (boxes(inventar/loot/...) check those sizes, to split it on movement and so on.
    Stacking is not usable for any VIP or Donaters Benefit. Why? You can't give a Box permissions ;) ...And lots of other misses...
     
  18. And maybe you can advise what the plug-ins for VIPs, what are some interesting features?

    Thanks in advance!
     
  19. ?? It has no custom Options or settings, or any rights ever to be used...
     
  20. HeyGuys,

    Today I was updating my config file for StackSizeController and I saw few items were settings take effect in game (Concrete Barricade, Shutter Metal Embrasure and few others) but not when you need to move them from a container to another.
    After digging into the code and the libs, I found an interesting property of ItemDefinition, the maxDraggable.
    For all of those items, if the stackable > maxDraggable, then you will have hard time to move them (have fun throwing a stack of 1k Metal Embrasure 10 by 10)...
    By default, almost all items have the maxDraggable to 0 (I think it mean "unlimited")
    Concrete Barricade have it to 3, Metal embrasure to 10 and few others have it set to a limit.

    So I did this in StackSizeController to remove all limits :

    item.maxDraggable = 0;
    item.stackable = (int)Config[item.shortname];

    The problem is, this changes don't take any effect in game. I don't know why but maybe someone already used this property and can tell me how to make it work as expected :)