Set Maximum Output of assembler?

Place to get help with not working mods / modding interface.
ravenbs
Long Handed Inserter
Long Handed Inserter
Posts: 61
Joined: Wed Jun 13, 2018 11:07 am
Contact:

Set Maximum Output of assembler?

Post by ravenbs »

Hello,

It seems the maximum possible output count of an assembler machine is 200.
If you set higher values in a recipe - it will be a max of 200
But I can not find, where this value is set nor how to increase it.

Anyone an idea?
Thank you.
Rseding91
Factorio Staff
Factorio Staff
Posts: 16014
Joined: Wed Jun 11, 2014 5:23 am
Contact:

Re: Set Maximum Output of assembler?

Post by Rseding91 »

There is no maximum output count of an assembling machine.

Are you sure the maximum stack size of the item isn't 200 that it's producing?
If you want to get ahold of me I'm almost always on Discord.
User avatar
eradicator
Smart Inserter
Smart Inserter
Posts: 5211
Joined: Tue Jul 12, 2016 9:03 am
Contact:

Re: Set Maximum Output of assembler?

Post by eradicator »

He's right. I did a quick test and the assembler only produces $stack_size even if the recipe should produce more. I guess output slots don't have the "overstacking" ability of input slots?

Code: Select all

data.raw.recipe['iron-gear-wheel'].normal.result_count = 1000
test.png
test.png (164.4 KiB) Viewed 2808 times
ravenbs
Long Handed Inserter
Long Handed Inserter
Posts: 61
Joined: Wed Jun 13, 2018 11:07 am
Contact:

Re: Set Maximum Output of assembler?

Post by ravenbs »

Maybe this is a bug? How to report it?
User avatar
bobingabout
Smart Inserter
Smart Inserter
Posts: 7352
Joined: Fri May 09, 2014 1:01 pm
Contact:

Re: Set Maximum Output of assembler?

Post by bobingabout »

ravenbs wrote:Maybe this is a bug? How to report it?
bug reporting subforum viewforum.php?f=7



So what I'm seeing out of this is... if the result count is higher than a single stack size, you only get a single stack's worth of output?
Creator of Bob's mods. Expanding your gameplay since version 0.9.8.
I also have a Patreon.
User avatar
darkfrei
Smart Inserter
Smart Inserter
Posts: 2905
Joined: Thu Nov 20, 2014 11:11 pm
Contact:

Re: Set Maximum Output of assembler?

Post by darkfrei »

It stack size is 200, but you are need 400, then:

Code: Select all

results =
{
  {
    name = "iron-gear-wheel",
    amount = 200
  },
  {
    name = "iron-gear-wheel",
    amount = 200
  }
}
},
The same for ingredients, if ingredients amount is more than 65535.
User avatar
bobingabout
Smart Inserter
Smart Inserter
Posts: 7352
Joined: Fri May 09, 2014 1:01 pm
Contact:

Re: Set Maximum Output of assembler?

Post by bobingabout »

darkfrei wrote:The same for ingredients, if ingredients amount is more than 65535.
Except inserters only fill the first instance of an item...
I've received looots of bug reports due to duplicate input ingredients (and most of them were actually caused by mods that mod my mods, not my mods themselves) and the issues caused by inserters not filling them.
Creator of Bob's mods. Expanding your gameplay since version 0.9.8.
I also have a Patreon.
User avatar
darkfrei
Smart Inserter
Smart Inserter
Posts: 2905
Joined: Thu Nov 20, 2014 11:11 pm
Contact:

Re: Set Maximum Output of assembler?

Post by darkfrei »

bobingabout wrote:
darkfrei wrote:The same for ingredients, if ingredients amount is more than 65535.
Except inserters only fill the first instance of an item...
I've received looots of bug reports due to duplicate input ingredients (and most of them were actually caused by mods that mod my mods, not my mods themselves) and the issues caused by inserters not filling them.
Then we are need new mod for those mods modification!
Post Reply

Return to “Modding help”