Hi, i'd like to use lua to spawn an item, two options :
Either spawn it in water, or directly spawn it in an inserter's hand.
Is it possible ?
Thanks
Spawn item
Re: Spawn item
Wrong forum
https://forums.factorio.com/forum/viewforum.php?f=25
and yea it is, same as you can spawn any entity, with game.placeentity, the name is item-on-the-ground and the table should have another var, stack.
https://forums.factorio.com/forum/viewforum.php?f=25
and yea it is, same as you can spawn any entity, with game.placeentity, the name is item-on-the-ground and the table should have another var, stack.
Re: Spawn item
Oh yeah wrong forum, posted too fast
Anyway, i figured out myself, but thanks for the info
Know if I can spawn an item in an inserter's hand ? (And fail if the inserter is full / out of power) ?
Anyway, i figured out myself, but thanks for the info
Know if I can spawn an item in an inserter's hand ? (And fail if the inserter is full / out of power) ?
Re: Spawn item
I dont think you can spawn it in the inserter hand but you can spawn it for sure on the inserter pick up area.Nirahiel wrote:Oh yeah wrong forum, posted too fast
Anyway, i figured out myself, but thanks for the info
Know if I can spawn an item in an inserter's hand ? (And fail if the inserter is full / out of power) ?
Re: Spawn item
I know but if there is already some items / a belt, it could not work the way I want
Re: Spawn item
You can remove the item from the inserter hand by calling inserter.clearitemsinside().
But there is no way to put something to the arm using script, we might add it.
But there is no way to put something to the arm using script, we might add it.
Re: Spawn item
Oh yeah please add this, I'll need it for my mod !kovarex wrote:You can remove the item from the inserter hand by calling inserter.clearitemsinside().
But there is no way to put something to the arm using script, we might add it.
Re: Spawn item
Ok, added the interface for item in inserter hand for 0.7.1
https://forums.factorio.com/wiki/inde ... a/Inserter
https://forums.factorio.com/wiki/inde ... a/Inserter
Re: Spawn item
Yay kovarex, you rock