No one here was being like that some people have things going on in there life and cant help 24/7
Stack Size Controller [Moved]
Discussion in 'Plugin Support' started by AnExiledGod, Jun 29, 2015.
-
"Be the bigger man and walk away" -
-
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.
-
Use filezilla I find it works well
-
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.
And: My own personal opinion. No one is requested to share or subscribe to it, but I always appreciate it. <3 -
-
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
"
-
" 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. :/
-
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.
-
floor.ladder.hatch is added to the list of items that are unstackable:
Code:- corn - pumpkins - floor.ladder.hatch
-
Why can't I change the BP stacks?
-
-
Hi, Guys
How to set size stack for group? -
-
-
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...
-
Thanks in advance! -
-
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