You could use smart inserters to filter items out of the chest - would that not work?DOSorDIE wrote:Is it possible to make a Filter what I want to collect?
Its Ok when i must change it in the .lua ... but who and what? (make 2 or 3 as sample)
Thanks
[MOD 0.12.x] Item Collectors
Re: [MOD 0.11.x] Item Collectors
If you want to get ahold of me I'm almost always on Discord.
Re: [MOD 0.11.x] Item Collectors
No. I want that the Item Collectors collect only as example Iron and Wood and nothing else.Rseding91 wrote:You could use smart inserters to filter items out of the chest - would that not work?
Re: [MOD 0.11.x] Item Collectors
I (better say my friend) has manage to build in a filter
control.lua
We have change that section:
And it work perfect.
I hope its OK when i have release it as a Dytech Corpse Collector and have make a link to here
https://forums.factorio.com/forum/vie ... 493#p79493
Great work!
control.lua
We have change that section:
Code: Select all
if #items > 0 then
inventory = collector.getinventory(1)
for _,item in pairs(items) do
if not item.isitemonbelt() then
if item.stack.name == "biter-small-corpse" or
item.stack.name == "biter-medium-corpse" or
item.stack.name == "biter-big-corpse" or
item.stack.name == "biter-berserk-corpse" or
item.stack.name == "biter-elder-corpse" or
item.stack.name == "biter-king-corpse" or
item.stack.name == "biter-queen-corpse" or
item.stack.name == "spitter-small-corpse" or
item.stack.name == "spitter-medium-corpse" or
item.stack.name == "spitter-big-corpse" or
item.stack.name == "spitter-berserk-corpse" or
item.stack.name == "spitter-elder-corpse" or
item.stack.name == "spitter-king-corpse" or
item.stack.name == "spitter-queen-corpse" then
if inventory.caninsert(item.stack) then
inventory.insert(item.stack)
item.destroy()
break
end
end
end
end
end
I hope its OK when i have release it as a Dytech Corpse Collector and have make a link to here
https://forums.factorio.com/forum/vie ... 493#p79493
Great work!
Re: [MOD 0.11.x] Item Collectors
Excellent mod, any chance you will upgrade it to run in 0.12?
*****Update*****
i begged a friend of mine to help and we managed to get it working, here is a link to the unofficial update
https://forums.factorio.com/forum/vie ... 20&t=14062
Rseding91, please feel free to use the control file to officially update your mod if you wish
*****Update*****
i begged a friend of mine to help and we managed to get it working, here is a link to the unofficial update
https://forums.factorio.com/forum/vie ... 20&t=14062
Rseding91, please feel free to use the control file to officially update your mod if you wish
Re: [MOD 0.12.x] Item Collectors
Updated for 0.12 and full multi-surface + multi-force support.
If you want to get ahold of me I'm almost always on Discord.
Re: [MOD 0.12.x] Item Collectors
Did anyone try to update radius to about 50 and see how it behaves performance wise?
I'm assuming that items on belts are not a problem now after 0.12 moved them out of the ground.
I'm assuming that items on belts are not a problem now after 0.12 moved them out of the ground.
Re: [MOD 0.12.x] Item Collectors
Correct. It shouldn't be much of an impact unless you just slather them around like walls/lasersorzelek wrote:Did anyone try to update radius to about 50 and see how it behaves performance wise?
I'm assuming that items on belts are not a problem now after 0.12 moved them out of the ground.
If you want to get ahold of me I'm almost always on Discord.
Re: [MOD 0.12.x] Item Collectors
The BIG problem with your mod is that these item collector chests can't be blueprinted. Is there any idea how to fix it?
Re: [MOD 0.12.x] Item Collectors
Place a ghost version and make the blueprint of that.XyLe wrote:The BIG problem with your mod is that these item collector chests can't be blueprinted. Is there any idea how to fix it?
If you want to get ahold of me I'm almost always on Discord.
Re: [MOD 0.12.x] Item Collectors
Clever, but it would be still interesting to figure out why it can't be blueprinted normally. Especially now, that placing a ghost version forces personal robots fly and place it immediately before you can actually blueprint much. Of course there's always a work around. But such mods are here for more convenience in the gameplay, right?Rseding91 wrote:Place a ghost version and make the blueprint of that.XyLe wrote:The BIG problem with your mod is that these item collector chests can't be blueprinted. Is there any idea how to fix it?
Re: [MOD 0.12.x] Item Collectors
I already know why it doesn't work: Factorio won't blueprint an entity that has no "items to place this" and because of the mechanics I use to render the overlay only when holding the item (chests don't have an overlay render in the base game) I swap the placed entity with the real one when it's built.
The game sees the built one as having no item-to-place so it says "no, you can't use that in a blueprint".
The game sees the built one as having no item-to-place so it says "no, you can't use that in a blueprint".
If you want to get ahold of me I'm almost always on Discord.
Re: [MOD 0.12.x] Item Collectors
Hello
Is there a Possibility to get Item Collectors_1.1.5.zip Ver 1.1.5 somewhere ? as i am still on 0.12.10
My Best Regards
Szereka
Is there a Possibility to get Item Collectors_1.1.5.zip Ver 1.1.5 somewhere ? as i am still on 0.12.10
My Best Regards
Szereka
Re: [MOD 0.12.x] Item Collectors
No, I don't support versions before the latest experimental version and the latest stable version (if I made the mod when the latest stable version existed). You'll need to update your game to the latest version as of today: 0.12.19.Szereka wrote:Hello
Is there a Possibility to get Item Collectors_1.1.5.zip Ver 1.1.5 somewhere ? as i am still on 0.12.10
My Best Regards
Szereka
If you want to get ahold of me I'm almost always on Discord.
Re: [MOD 0.12.x] Item Collectors
From point of game perfomance (in multiplayer):
Is it better to use Item Collector or field of vanila belts to collect monster drops?
Is it better to use Item Collector or field of vanila belts to collect monster drops?
Re: [MOD 0.12.x] Item Collectors
Fields of belts. At least until 0.13.Aikonn wrote:From point of game perfomance (in multiplayer):
Is it better to use Item Collector or field of vanila belts to collect monster drops?
If you want to get ahold of me I'm almost always on Discord.
Re: [MOD 0.12.x] Item Collectors
What would change in 0.13?Rseding91 wrote:Fields of belts. At least until 0.13.Aikonn wrote:From point of game perfomance (in multiplayer):
Is it better to use Item Collector or field of vanila belts to collect monster drops?
Luajit is not on the list in last FFF - is it still on the list?
-
- Fast Inserter
- Posts: 192
- Joined: Sun Oct 05, 2014 6:12 am
- Contact:
Re: [MOD 0.12.x] Item Collectors
Probably new events. I have another collector at viewtopic.php?f=93&t=23074 that works different than this one but due to the design it uses less cpu time, plus no magical teleportation of the items, with a power draw. The different way it works may not be everyone's style, but if it works for you... I personally use both.orzelek wrote:What would change in 0.13?Rseding91 wrote:Fields of belts. At least until 0.13.Aikonn wrote:From point of game perfomance (in multiplayer):
Is it better to use Item Collector or field of vanila belts to collect monster drops?
Luajit is not on the list in last FFF - is it still on the list?