Page 1 of 1

[0.11.X]Big Stacks!

Posted: Mon Jun 15, 2015 6:10 am
by JohnRipley
Tired of stacks of 50? and 100?.. Well now you can choose the sizes yourself!

This Big Stacks mod changes all stacks to the default of 1000 items per stack! too much or too little? well this mod contains an easy way to change the size!
in the prototypes folder there's a file called stacksize, and inside a varible "Local stacksize = 1000" change at will.

Download
0.11.22http://www.mediafire.com/download/hcih9 ... _1.1.1.zip

Re: [0.11.X]Big Stacks!

Posted: Mon Jun 15, 2015 10:18 am
by Doublespin
IF you want to change nearly every stacksize then you can use this:

Code: Select all

local StackSize = 1000
for _,dat in pairs(data.raw) do
	for _,items in pairs(dat) do
		if items.stack_size and items.stack_size>1 then
			items.stack_size = StackSize
		end
	end
end
Save it as data-updates.lua and it should change every item that is added by mods. (if a mod change the stacksize of items with data-updates then you probably have to use data-final-fixes.lua)

Re: [0.11.X]Big Stacks!

Posted: Mon Jun 15, 2015 3:49 pm
by JohnRipley
Doublespin wrote:IF you want to change nearly every stacksize then you can use this:

Code: Select all

local StackSize = 1000
for _,dat in pairs(data.raw) do
	for _,items in pairs(dat) do
		if items.stack_size and items.stack_size>1 then
			items.stack_size = StackSize
		end
	end
end
Save it as data-updates.lua and it should change every item that is added by mods. (if a mod change the stacksize of items with data-updates then you probably have to use data-final-fixes.lua)
yeah.. that would be alot easier..

Re: [0.11.X]Big Stacks!

Posted: Mon Jun 15, 2015 3:51 pm
by Airat9000
I did not understand the essence of the work mode
He uvelichvaet amount of space the player and storage? from 100 to 1000?

if so it would be good to make the discovery of this technology that would not be all that easy__) and more interesting

Re: [0.11.X]Big Stacks!

Posted: Tue Jun 16, 2015 7:47 pm
by JohnRipley
Airat9000 wrote:I did not understand the essence of the work mode
He uvelichvaet amount of space the player and storage? from 100 to 1000?

if so it would be good to make the discovery of this technology that would not be all that easy__) and more interesting
No, all items can stack up to 1000 instead of 100 or 50

Re: [0.11.X]Big Stacks!

Posted: Thu Jul 16, 2015 1:55 am
by geech6
Best... Mod... EVER!!!

It's so simple and perfect. It might be the number of mods I have on my game right now, and probably because I overclocked my inserters, but my computer is screaming due to all of my bases coming to life to fill the inventories.

Like I said, 6 out of 5 stars!

Re: [0.11.X]Big Stacks!

Posted: Thu Jul 16, 2015 3:53 pm
by Wyrm

Code: Select all

local StackSize = 1000
for _,dat in pairs(data.raw) do
   for _,items in pairs(dat) do
      if items.stack_size and items.stack_size > 1 and items.stack_size < StackSize then
         items.stack_size = StackSize
      end
   end
end
Stack size of 1000 is currently larger than anything in the game, but you never know...

Re: [0.11.X]Big Stacks!

Posted: Sun Apr 17, 2016 8:53 am
by crazysob83
Is there a way to turn the extra furnace speeds and everything else like the added player hp off. Your mod description only mentions stacksizes but should probably also mention these other changes. Feels less like a QoL mod and more a cheat mod

Re: [0.11.X]Big Stacks!

Posted: Tue Sep 13, 2016 2:46 pm
by Binnes
You can just edit the lua files within. Comment out what you don't want activated with two hyphens "--".
Example

Re: [0.11.X]Big Stacks!

Posted: Mon Jan 23, 2017 10:19 pm
by steinio
Moving threads marks them as unread.
A little notice about what's happening would be nice.

Greeting steinio