I have create a mod to start with bots and bots technology
My mod
Code: Select all
script.on_event(defines.events.on_player_created, function(event)
local player = game.players[event.player_index]
player.insert{name="power-armor", count=1}
player.insert{name="personal-roboport-equipment", count=2}
player.insert{name="fusion-reactor-equipment", count=1}
player.insert{name="exoskeleton-equipment", count = 1}
player.insert{name="construction-robot", count = 20}
player.insert{name="solar-panel", count = 1}
player.insert{name="science-pack-1", count = 8}
player.insert{name="lab", count = 1}
player.insert{name="substation", count = 1}
player.insert{name="battery-equipment", count = 1}
end)
But I want to start with equipment into armor and the technology unlock
If you can help me.
Thanks you for your time.