Hi,
you can do so by opening the console and executing this (slightly modified) version of the addon's code:
local items
local armor
items = {
{"power-armor-mk2", 1},
{"construction-robot", 50},
}
armor = {
{"fusion-reactor-equipment"},
{"fusion-reactor-equipment"},
{"personal-roboport-mk2-equipment"},
{"personal-roboport-mk2-equipment"},
{"fusion-reactor-equipment"},
{"fusion-reactor-equipment"},
{"personal-roboport-mk2-equipment"},
{"personal-roboport-mk2-equipment"},
{"battery-mk2-equipment"},
{"battery-mk2-equipment"},
{"energy-shield-mk2-equipment"},
{"energy-shield-mk2-equipment"},
{"energy-shield-mk2-equipment"},
{"energy-shield-mk2-equipment"},
}
local player = game.players[1]
for i, v in pairs(items) do
player.insert{name = v[1], count = v[2]}
end
local grid = player.get_inventory(defines.inventory.character_armor)[1].grid
for i, v in pairs(armor) do
grid.put({name = v[1]})
end
0) unequip your armor if you have any.
1) press ^ to open console.
2) type "/c " and then paste the above code behind it.
3) press enter, game says this will disable achievements.
4) press arrow up to get the command again and hit enter.
This will give you the armor and robots as per addon settings to player 1.