Fast Start 2


Gives the player a balanced fast-start kit on first join. Includes personal bots, power armor, exoskeletons, red belts, electric miners, blue assemblers, and a radar scan of the starting area. Designed for Space Exploration runs but works in vanilla too. All features and quantities are configurable.

Tweaks
a month ago
2.0
1.07K
Cheats

b spill_item_stack called with wrong arguments

24 days ago
(updated 24 days ago)

control.lua:139

            player.surface.spill_item_stack(
                player.position,
                { name = item.name, count = item.count - inserted }
            )

should be:

            player.surface.spill_item_stack{
                position = player.position, 
                stack = {name = item.name, count = item.count - inserted}
            }

Ref: https://lua-api.factorio.com/2.0.75/classes/LuaSurface.html#spill_item_stack breaking change from 1.1

New response